You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make note of the application name, which can be used with other operations such as [GetApplication](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_GetApplication.html), [UpdateApplication](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_UpdateApplication.html) and [DeleteApplication](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_DeleteApplication.html).
You can list all application using [ListApplications](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_ListApplications.html).
57
+
58
+
{{< command >}}
59
+
$ awslocal deploy list-applications
60
+
<disable-copy>
61
+
{
62
+
"applications": [
63
+
"hello"
64
+
]
65
+
}
66
+
</disable-copy>
67
+
{{< /command >}}
68
+
69
+
{{< command >}}
70
+
<disable-copy>
71
+
</disable-copy>
72
+
{{< /command >}}
73
+
74
+
### Deployment configuration
75
+
76
+
A deployment configuration consists of rules for deployment along with success and failure criteria.
77
+
78
+
Create a deployment configuration using [CreateDeploymentConfig](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_CreateDeploymentConfig.html):
[ListDeploymentConfigs](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_ListDeploymentConfigs.html) can be used to list all available configs:
93
+
94
+
{{< command >}}
95
+
$ awslocal deploy list-deployment-configs
96
+
<disable-copy>
97
+
{
98
+
"deploymentConfigsList": [
99
+
"hello-conf"
100
+
]
101
+
}
102
+
</disable-copy>
103
+
{{< /command >}}
104
+
105
+
Use [GetDeploymentConfig](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_GetDeploymentConfig.html) and [DeleteDeploymentConfig](https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_DeleteDeploymentConfig.html) to manage deployment configurations.
0 commit comments