Skip to content

Commit e2b776f

Browse files
author
awstools
committed
docs(client-codedeploy): CodeDeploy now supports In-place and Blue/Green EC2 deployments with multiple Classic Load Balancers and multiple Target Groups.
1 parent f49a521 commit e2b776f

36 files changed

+200
-186
lines changed

clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export interface BatchGetApplicationRevisionsCommandOutput
128128
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
129129
*
130130
* @throws {@link ApplicationDoesNotExistException} (client fault)
131-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
131+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
132132
*
133133
* @throws {@link ApplicationNameRequiredException} (client fault)
134134
* <p>The minimum number of required application names was not specified.</p>

clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export interface BatchGetApplicationsCommandOutput extends BatchGetApplicationsO
7474
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
7575
*
7676
* @throws {@link ApplicationDoesNotExistException} (client fault)
77-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
77+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
7878
*
7979
* @throws {@link ApplicationNameRequiredException} (client fault)
8080
* <p>The minimum number of required application names was not specified.</p>

clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export interface BatchGetDeploymentGroupsCommandOutput extends BatchGetDeploymen
230230
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
231231
*
232232
* @throws {@link ApplicationDoesNotExistException} (client fault)
233-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
233+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
234234
*
235235
* @throws {@link ApplicationNameRequiredException} (client fault)
236236
* <p>The minimum number of required application names was not specified.</p>
@@ -239,8 +239,7 @@ export interface BatchGetDeploymentGroupsCommandOutput extends BatchGetDeploymen
239239
* <p>The maximum number of names or IDs allowed for this request (100) was exceeded.</p>
240240
*
241241
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
242-
* <p>The deployment configuration does not exist with the IAM user or
243-
* Amazon Web Services account.</p>
242+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
244243
*
245244
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
246245
* <p>The deployment group name was not specified.</p>

clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ export interface BatchGetDeploymentInstancesCommandOutput extends BatchGetDeploy
100100
* <p>The maximum number of names or IDs allowed for this request (100) was exceeded.</p>
101101
*
102102
* @throws {@link DeploymentDoesNotExistException} (client fault)
103-
* <p>The deployment with the IAM user or Amazon Web Services account does not
104-
* exist.</p>
103+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
105104
*
106105
* @throws {@link DeploymentIdRequiredException} (client fault)
107106
* <p>At least one deployment ID must be specified.</p>

clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,7 @@ export interface BatchGetDeploymentTargetsCommandOutput extends BatchGetDeployme
202202
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
203203
*
204204
* @throws {@link DeploymentDoesNotExistException} (client fault)
205-
* <p>The deployment with the IAM user or Amazon Web Services account does not
206-
* exist.</p>
205+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
207206
*
208207
* @throws {@link DeploymentIdRequiredException} (client fault)
209208
* <p>At least one deployment ID must be specified.</p>

clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ export interface ContinueDeploymentCommandOutput extends __MetadataBearer {}
6868
* <p>The deployment is already complete.</p>
6969
*
7070
* @throws {@link DeploymentDoesNotExistException} (client fault)
71-
* <p>The deployment with the IAM user or Amazon Web Services account does not
72-
* exist.</p>
71+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
7372
*
7473
* @throws {@link DeploymentIdRequiredException} (client fault)
7574
* <p>At least one deployment ID must be specified.</p>

clients/client-codedeploy/src/commands/CreateApplicationCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationOutput,
6969
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
7070
*
7171
* @throws {@link ApplicationAlreadyExistsException} (client fault)
72-
* <p>An application with the specified name with the IAM user or Amazon Web Services account already exists.</p>
72+
* <p>An application with the specified name with the user or Amazon Web Services account
73+
* already exists.</p>
7374
*
7475
* @throws {@link ApplicationLimitExceededException} (client fault)
7576
* <p>More applications were attempted to be created than are allowed.</p>

clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,17 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _
131131
* <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
132132
*
133133
* @throws {@link ApplicationDoesNotExistException} (client fault)
134-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
134+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
135135
*
136136
* @throws {@link ApplicationNameRequiredException} (client fault)
137137
* <p>The minimum number of required application names was not specified.</p>
138138
*
139139
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
140-
* <p>The deployment configuration does not exist with the IAM user or
141-
* Amazon Web Services account.</p>
140+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
142141
*
143142
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
144-
* <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
143+
* <p>The named deployment group with the user or Amazon Web Services account does not
144+
* exist.</p>
145145
*
146146
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
147147
* <p>The deployment group name was not specified.</p>
@@ -242,7 +242,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _
242242
* <code>true</code> or <code>false</code> is expected.</p>
243243
*
244244
* @throws {@link RevisionDoesNotExistException} (client fault)
245-
* <p>The named revision does not exist with the IAM user or Amazon Web Services account.</p>
245+
* <p>The named revision does not exist with the user or Amazon Web Services account.</p>
246246
*
247247
* @throws {@link RevisionRequiredException} (client fault)
248248
* <p>The revision ID was not specified.</p>

clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ export interface CreateDeploymentConfigCommandOutput extends CreateDeploymentCon
7878
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
7979
*
8080
* @throws {@link DeploymentConfigAlreadyExistsException} (client fault)
81-
* <p>A deployment configuration with the specified name with the IAM user or
82-
* Amazon Web Services account already exists.</p>
81+
* <p>A deployment configuration with the specified name with the user or Amazon Web Services account already exists.</p>
8382
*
8483
* @throws {@link DeploymentConfigLimitExceededException} (client fault)
8584
* <p>The deployment configurations limit was exceeded.</p>

clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,17 +192,17 @@ export interface CreateDeploymentGroupCommandOutput extends CreateDeploymentGrou
192192
* <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
193193
*
194194
* @throws {@link ApplicationDoesNotExistException} (client fault)
195-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
195+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
196196
*
197197
* @throws {@link ApplicationNameRequiredException} (client fault)
198198
* <p>The minimum number of required application names was not specified.</p>
199199
*
200200
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
201-
* <p>The deployment configuration does not exist with the IAM user or
202-
* Amazon Web Services account.</p>
201+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
203202
*
204203
* @throws {@link DeploymentGroupAlreadyExistsException} (client fault)
205-
* <p>A deployment group with the specified name with the IAM user or Amazon Web Services account already exists.</p>
204+
* <p>A deployment group with the specified name with the user or Amazon Web Services account
205+
* already exists.</p>
206206
*
207207
* @throws {@link DeploymentGroupLimitExceededException} (client fault)
208208
* <p> The deployment groups limit was exceeded.</p>

clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,14 @@ export interface DeleteResourcesByExternalIdCommandOutput extends DeleteResource
3737

3838
/**
3939
* @public
40-
* <p>Deletes resources linked to an external ID.</p>
40+
* <p>Deletes resources linked to an external ID. This action only applies if you have
41+
* configured blue/green deployments through CloudFormation. </p>
42+
* <note>
43+
* <p>It is not necessary to call this action directly. CloudFormation calls it
44+
* on your behalf when it needs to delete stack resources. This action is offered
45+
* publicly in case you need to delete resources to comply with General Data Protection
46+
* Regulation (GDPR) requirements.</p>
47+
* </note>
4148
* @example
4249
* Use a bare-bones client and the command you need to make an API call.
4350
* ```javascript

clients/client-codedeploy/src/commands/GetApplicationCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
6969
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
7070
*
7171
* @throws {@link ApplicationDoesNotExistException} (client fault)
72-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
72+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
7373
*
7474
* @throws {@link ApplicationNameRequiredException} (client fault)
7575
* <p>The minimum number of required application names was not specified.</p>

clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export interface GetApplicationRevisionCommandOutput extends GetApplicationRevis
115115
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
116116
*
117117
* @throws {@link ApplicationDoesNotExistException} (client fault)
118-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
118+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
119119
*
120120
* @throws {@link ApplicationNameRequiredException} (client fault)
121121
* <p>The minimum number of required application names was not specified.</p>
@@ -127,7 +127,7 @@ export interface GetApplicationRevisionCommandOutput extends GetApplicationRevis
127127
* <p>The revision was specified in an invalid format.</p>
128128
*
129129
* @throws {@link RevisionDoesNotExistException} (client fault)
130-
* <p>The named revision does not exist with the IAM user or Amazon Web Services account.</p>
130+
* <p>The named revision does not exist with the user or Amazon Web Services account.</p>
131131
*
132132
* @throws {@link RevisionRequiredException} (client fault)
133133
* <p>The revision ID was not specified.</p>

clients/client-codedeploy/src/commands/GetDeploymentCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad
242242
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
243243
*
244244
* @throws {@link DeploymentDoesNotExistException} (client fault)
245-
* <p>The deployment with the IAM user or Amazon Web Services account does not
246-
* exist.</p>
245+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
247246
*
248247
* @throws {@link DeploymentIdRequiredException} (client fault)
249248
* <p>At least one deployment ID must be specified.</p>

clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ export interface GetDeploymentConfigCommandOutput extends GetDeploymentConfigOut
8282
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
8383
*
8484
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
85-
* <p>The deployment configuration does not exist with the IAM user or
86-
* Amazon Web Services account.</p>
85+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
8786
*
8887
* @throws {@link DeploymentConfigNameRequiredException} (client fault)
8988
* <p>The deployment configuration name was not specified.</p>

clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,17 +225,17 @@ export interface GetDeploymentGroupCommandOutput extends GetDeploymentGroupOutpu
225225
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
226226
*
227227
* @throws {@link ApplicationDoesNotExistException} (client fault)
228-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
228+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
229229
*
230230
* @throws {@link ApplicationNameRequiredException} (client fault)
231231
* <p>The minimum number of required application names was not specified.</p>
232232
*
233233
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
234-
* <p>The deployment configuration does not exist with the IAM user or
235-
* Amazon Web Services account.</p>
234+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
236235
*
237236
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
238-
* <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
237+
* <p>The named deployment group with the user or Amazon Web Services account does not
238+
* exist.</p>
239239
*
240240
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
241241
* <p>The deployment group name was not specified.</p>

clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ export interface GetDeploymentInstanceCommandOutput extends GetDeploymentInstanc
8585
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
8686
*
8787
* @throws {@link DeploymentDoesNotExistException} (client fault)
88-
* <p>The deployment with the IAM user or Amazon Web Services account does not
89-
* exist.</p>
88+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
9089
*
9190
* @throws {@link DeploymentIdRequiredException} (client fault)
9291
* <p>At least one deployment ID must be specified.</p>

clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ export interface GetDeploymentTargetCommandOutput extends GetDeploymentTargetOut
172172
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
173173
*
174174
* @throws {@link DeploymentDoesNotExistException} (client fault)
175-
* <p>The deployment with the IAM user or Amazon Web Services account does not
176-
* exist.</p>
175+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
177176
*
178177
* @throws {@link DeploymentIdRequiredException} (client fault)
179178
* <p>At least one deployment ID must be specified.</p>

clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export interface ListApplicationRevisionsCommandOutput extends ListApplicationRe
9292
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
9393
*
9494
* @throws {@link ApplicationDoesNotExistException} (client fault)
95-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
95+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
9696
*
9797
* @throws {@link ApplicationNameRequiredException} (client fault)
9898
* <p>The minimum number of required application names was not specified.</p>

clients/client-codedeploy/src/commands/ListApplicationsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
3737

3838
/**
3939
* @public
40-
* <p>Lists the applications registered with the IAM user or Amazon Web Services account.</p>
40+
* <p>Lists the applications registered with the user or Amazon Web Services account.</p>
4141
* @example
4242
* Use a bare-bones client and the command you need to make an API call.
4343
* ```javascript

clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface ListDeploymentConfigsCommandOutput extends ListDeploymentConfig
3737

3838
/**
3939
* @public
40-
* <p>Lists the deployment configurations with the IAM user or Amazon Web Services account.</p>
40+
* <p>Lists the deployment configurations with the user or Amazon Web Services account.</p>
4141
* @example
4242
* Use a bare-bones client and the command you need to make an API call.
4343
* ```javascript

clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
3737

3838
/**
3939
* @public
40-
* <p>Lists the deployment groups for an application registered with the IAM
40+
* <p>Lists the deployment groups for an application registered with the Amazon Web Services
4141
* user or Amazon Web Services account.</p>
4242
* @example
4343
* Use a bare-bones client and the command you need to make an API call.
@@ -68,7 +68,7 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
6868
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
6969
*
7070
* @throws {@link ApplicationDoesNotExistException} (client fault)
71-
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
71+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
7272
*
7373
* @throws {@link ApplicationNameRequiredException} (client fault)
7474
* <p>The minimum number of required application names was not specified.</p>

clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
4545
* exception if it is used with a compute platform other than EC2/On-premises or
4646
* Lambda. </p>
4747
* </note>
48-
* <p> Lists the instance for a deployment associated with the IAM user or
49-
* Amazon Web Services account. </p>
48+
* <p> Lists the instance for a deployment associated with the user or Amazon Web Services account. </p>
5049
* @example
5150
* Use a bare-bones client and the command you need to make an API call.
5251
* ```javascript
@@ -81,8 +80,7 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
8180
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
8281
*
8382
* @throws {@link DeploymentDoesNotExistException} (client fault)
84-
* <p>The deployment with the IAM user or Amazon Web Services account does not
85-
* exist.</p>
83+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
8684
*
8785
* @throws {@link DeploymentIdRequiredException} (client fault)
8886
* <p>At least one deployment ID must be specified.</p>

clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ export interface ListDeploymentTargetsCommandOutput extends ListDeploymentTarget
7171
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
7272
*
7373
* @throws {@link DeploymentDoesNotExistException} (client fault)
74-
* <p>The deployment with the IAM user or Amazon Web Services account does not
75-
* exist.</p>
74+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
7675
*
7776
* @throws {@link DeploymentIdRequiredException} (client fault)
7877
* <p>At least one deployment ID must be specified.</p>

0 commit comments

Comments
 (0)