Skip to content

Commit

Permalink
Release v1.40.33 (2021-08-30) (#4081)
Browse files Browse the repository at this point in the history
Release v1.40.33 (2021-08-30)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
  * AWS CloudFormation allows you to iteratively develop your applications when failures are encountered without rolling back successfully provisioned resources. By specifying stack failure options, you can troubleshoot resources in a CREATE_FAILED or UPDATE_FAILED status.
* `service/codebuild`: Updates service documentation
  * Documentation updates for CodeBuild
* `service/firehose`: Updates service API and documentation
  * This release adds the Dynamic Partitioning feature to Kinesis Data Firehose service for S3 destinations.
* `service/kms`: Updates service API, documentation, and examples
  * This release has changes to KMS nomenclature to remove the word master from both the "Customer master key" and "CMK" abbreviation and replace those naming conventions with "KMS key".
  • Loading branch information
aws-sdk-go-automation committed Aug 30, 2021
1 parent 0caab5a commit a3f35ed
Show file tree
Hide file tree
Showing 18 changed files with 3,356 additions and 2,585 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.40.33 (2021-08-30)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* AWS CloudFormation allows you to iteratively develop your applications when failures are encountered without rolling back successfully provisioned resources. By specifying stack failure options, you can troubleshoot resources in a CREATE_FAILED or UPDATE_FAILED status.
* `service/codebuild`: Updates service documentation
* Documentation updates for CodeBuild
* `service/firehose`: Updates service API and documentation
* This release adds the Dynamic Partitioning feature to Kinesis Data Firehose service for S3 destinations.
* `service/kms`: Updates service API, documentation, and examples
* This release has changes to KMS nomenclature to remove the word master from both the "Customer master key" and "CMK" abbreviation and replace those naming conventions with "KMS key".

Release v1.40.32 (2021-08-27)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.40.32"
const SDKVersion = "1.40.33"
43 changes: 41 additions & 2 deletions models/apis/cloudformation/2010-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,21 @@
],
"idempotent":true
},
"RollbackStack":{
"name":"RollbackStack",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"RollbackStackInput"},
"output":{
"shape":"RollbackStackOutput",
"resultWrapper":"RollbackStackResult"
},
"errors":[
{"shape":"TokenAlreadyExistsException"}
]
},
"SetStackPolicy":{
"name":"SetStackPolicy",
"http":{
Expand Down Expand Up @@ -1901,7 +1916,8 @@
"members":{
"ChangeSetName":{"shape":"ChangeSetNameOrId"},
"StackName":{"shape":"StackNameOrId"},
"ClientRequestToken":{"shape":"ClientRequestToken"}
"ClientRequestToken":{"shape":"ClientRequestToken"},
"DisableRollback":{"shape":"DisableRollback"}
}
},
"ExecuteChangeSetOutput":{
Expand Down Expand Up @@ -2880,7 +2896,13 @@
"IMPORT_IN_PROGRESS",
"IMPORT_ROLLBACK_IN_PROGRESS",
"IMPORT_ROLLBACK_FAILED",
"IMPORT_ROLLBACK_COMPLETE"
"IMPORT_ROLLBACK_COMPLETE",
"UPDATE_ROLLBACK_IN_PROGRESS",
"UPDATE_ROLLBACK_COMPLETE",
"UPDATE_ROLLBACK_FAILED",
"ROLLBACK_IN_PROGRESS",
"ROLLBACK_COMPLETE",
"ROLLBACK_FAILED"
]
},
"ResourceStatusReason":{"type":"string"},
Expand Down Expand Up @@ -2952,6 +2974,21 @@
"MonitoringTimeInMinutes":{"shape":"MonitoringTimeInMinutes"}
}
},
"RollbackStackInput":{
"type":"structure",
"required":["StackName"],
"members":{
"StackName":{"shape":"StackNameOrId"},
"RoleARN":{"shape":"RoleARN"},
"ClientRequestToken":{"shape":"ClientRequestToken"}
}
},
"RollbackStackOutput":{
"type":"structure",
"members":{
"StackId":{"shape":"StackId"}
}
},
"RollbackTrigger":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -3605,6 +3642,7 @@
"UPDATE_IN_PROGRESS",
"UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
"UPDATE_COMPLETE",
"UPDATE_FAILED",
"UPDATE_ROLLBACK_IN_PROGRESS",
"UPDATE_ROLLBACK_FAILED",
"UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
Expand Down Expand Up @@ -3990,6 +4028,7 @@
"StackPolicyURL":{"shape":"StackPolicyURL"},
"NotificationARNs":{"shape":"NotificationARNs"},
"Tags":{"shape":"Tags"},
"DisableRollback":{"shape":"DisableRollback"},
"ClientRequestToken":{"shape":"ClientRequestToken"}
}
},
Expand Down
155 changes: 86 additions & 69 deletions models/apis/cloudformation/2010-05-15/docs-2.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions models/apis/codebuild/2016-10-06/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
"BuildPhaseType": {
"base": null,
"refs": {
"BuildPhase$phaseType": "<p>The name of the build phase. Valid values include:</p> <ul> <li> <p> <code>BUILD</code>: Core build activities typically occur in this build phase.</p> </li> <li> <p> <code>COMPLETED</code>: The build has been completed.</p> </li> <li> <p> <code>DOWNLOAD_SOURCE</code>: Source code is being downloaded in this build phase.</p> </li> <li> <p> <code>FINALIZING</code>: The build process is completing in this build phase.</p> </li> <li> <p> <code>INSTALL</code>: Installation activities typically occur in this build phase.</p> </li> <li> <p> <code>POST_BUILD</code>: Post-build activities typically occur in this build phase.</p> </li> <li> <p> <code>PRE_BUILD</code>: Pre-build activities typically occur in this build phase.</p> </li> <li> <p> <code>PROVISIONING</code>: The build environment is being set up.</p> </li> <li> <p> <code>QUEUED</code>: The build has been submitted and is queued behind other submitted builds.</p> </li> <li> <p> <code>SUBMITTED</code>: The build has been submitted.</p> </li> <li> <p> <code>UPLOAD_ARTIFACTS</code>: Build output artifacts are being uploaded to the output location.</p> </li> </ul>"
"BuildPhase$phaseType": "<p>The name of the build phase. Valid values include:</p> <dl> <dt>BUILD</dt> <dd> <p>Core build activities typically occur in this build phase.</p> </dd> <dt>COMPLETED</dt> <dd> <p>The build has been completed.</p> </dd> <dt>DOWNLOAD_SOURCE</dt> <dd> <p>Source code is being downloaded in this build phase.</p> </dd> <dt>FINALIZING</dt> <dd> <p>The build process is completing in this build phase.</p> </dd> <dt>INSTALL</dt> <dd> <p>Installation activities typically occur in this build phase.</p> </dd> <dt>POST_BUILD</dt> <dd> <p>Post-build activities typically occur in this build phase.</p> </dd> <dt>PRE_BUILD</dt> <dd> <p>Pre-build activities typically occur in this build phase.</p> </dd> <dt>PROVISIONING</dt> <dd> <p>The build environment is being set up.</p> </dd> <dt>QUEUED</dt> <dd> <p>The build has been submitted and is queued behind other submitted builds.</p> </dd> <dt>SUBMITTED</dt> <dd> <p>The build has been submitted.</p> </dd> <dt>UPLOAD_ARTIFACTS</dt> <dd> <p>Build output artifacts are being uploaded to the output location.</p> </dd> </dl>"
}
},
"BuildPhases": {
Expand Down Expand Up @@ -1516,8 +1516,8 @@
"Build$buildStatus": "<p>The current status of the build. Valid values include:</p> <ul> <li> <p> <code>FAILED</code>: The build failed.</p> </li> <li> <p> <code>FAULT</code>: The build faulted.</p> </li> <li> <p> <code>IN_PROGRESS</code>: The build is still in progress.</p> </li> <li> <p> <code>STOPPED</code>: The build stopped.</p> </li> <li> <p> <code>SUCCEEDED</code>: The build succeeded.</p> </li> <li> <p> <code>TIMED_OUT</code>: The build timed out.</p> </li> </ul>",
"BuildBatch$buildBatchStatus": "<p>The status of the batch build.</p>",
"BuildBatchFilter$status": "<p>The status of the batch builds to retrieve. Only batch builds that have this status will be retrieved.</p>",
"BuildBatchPhase$phaseStatus": "<p>The current status of the batch build phase. Valid values include:</p> <dl> <dt>FAILED</dt> <dd> <p>The build phase failed.</p> </dd> <dt>FAULT</dt> <dd> <p>The build phase faulted.</p> </dd> <dt>IN_PROGRESS</dt> <dd> <p>The build phase is still in progress.</p> </dd> <dt>QUEUED</dt> <dd> <p>The build has been submitted and is queued behind other submitted builds.</p> </dd> <dt>STOPPED</dt> <dd> <p>The build phase stopped.</p> </dd> <dt>SUCCEEDED</dt> <dd> <p>The build phase succeeded.</p> </dd> <dt>TIMED_OUT</dt> <dd> <p>The build phase timed out.</p> </dd> </dl>",
"BuildPhase$phaseStatus": "<p>The current status of the build phase. Valid values include:</p> <dl> <dt>FAILED</dt> <dd> <p>The build phase failed.</p> </dd> <dt>FAULT</dt> <dd> <p>The build phase faulted.</p> </dd> <dt>IN_PROGRESS</dt> <dd> <p>The build phase is still in progress.</p> </dd> <dt>QUEUED</dt> <dd> <p>The build has been submitted and is queued behind other submitted builds.</p> </dd> <dt>STOPPED</dt> <dd> <p>The build phase stopped.</p> </dd> <dt>SUCCEEDED</dt> <dd> <p>The build phase succeeded.</p> </dd> <dt>TIMED_OUT</dt> <dd> <p>The build phase timed out.</p> </dd> </dl>",
"BuildBatchPhase$phaseStatus": "<p>The current status of the batch build phase. Valid values include:</p> <dl> <dt>FAILED</dt> <dd> <p>The build phase failed.</p> </dd> <dt>FAULT</dt> <dd> <p>The build phase faulted.</p> </dd> <dt>IN_PROGRESS</dt> <dd> <p>The build phase is still in progress.</p> </dd> <dt>STOPPED</dt> <dd> <p>The build phase stopped.</p> </dd> <dt>SUCCEEDED</dt> <dd> <p>The build phase succeeded.</p> </dd> <dt>TIMED_OUT</dt> <dd> <p>The build phase timed out.</p> </dd> </dl>",
"BuildPhase$phaseStatus": "<p>The current status of the build phase. Valid values include:</p> <dl> <dt>FAILED</dt> <dd> <p>The build phase failed.</p> </dd> <dt>FAULT</dt> <dd> <p>The build phase faulted.</p> </dd> <dt>IN_PROGRESS</dt> <dd> <p>The build phase is still in progress.</p> </dd> <dt>STOPPED</dt> <dd> <p>The build phase stopped.</p> </dd> <dt>SUCCEEDED</dt> <dd> <p>The build phase succeeded.</p> </dd> <dt>TIMED_OUT</dt> <dd> <p>The build phase timed out.</p> </dd> </dl>",
"BuildSummary$buildStatus": "<p>The status of the build group.</p> <dl> <dt>FAILED</dt> <dd> <p>The build group failed.</p> </dd> <dt>FAULT</dt> <dd> <p>The build group faulted.</p> </dd> <dt>IN_PROGRESS</dt> <dd> <p>The build group is still in progress.</p> </dd> <dt>STOPPED</dt> <dd> <p>The build group stopped.</p> </dd> <dt>SUCCEEDED</dt> <dd> <p>The build group succeeded.</p> </dd> <dt>TIMED_OUT</dt> <dd> <p>The build group timed out.</p> </dd> </dl>"
}
},
Expand Down
44 changes: 37 additions & 7 deletions models/apis/firehose/2015-08-04/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
"type":"string",
"max":512,
"min":1,
"pattern":"jdbc:(redshift|postgresql):https://((?!-)[A-Za-z0-9-]{1,63}(?<!-)\\.)+redshift\\.([a-zA-Z0-9\\.]+):\\d{1,5}/[a-zA-Z0-9_$]+"
"pattern":"jdbc:(redshift|postgresql):https://((?!-)[A-Za-z0-9-]{1,63}(?<!-)\\.)+redshift\\.([a-zA-Z0-9\\.]+):\\d{1,5}/[a-zA-Z0-9_$-]+"
},
"ColumnToJsonKeyMappings":{
"type":"map",
Expand Down Expand Up @@ -496,6 +496,13 @@
"min":1,
"pattern":"[a-zA-Z0-9-]+"
},
"DynamicPartitioningConfiguration":{
"type":"structure",
"members":{
"RetryOptions":{"shape":"RetryOptions"},
"Enabled":{"shape":"BooleanObject"}
}
},
"ElasticsearchBufferingHints":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -655,7 +662,8 @@
"ProcessingConfiguration":{"shape":"ProcessingConfiguration"},
"S3BackupMode":{"shape":"S3BackupMode"},
"S3BackupConfiguration":{"shape":"S3DestinationConfiguration"},
"DataFormatConversionConfiguration":{"shape":"DataFormatConversionConfiguration"}
"DataFormatConversionConfiguration":{"shape":"DataFormatConversionConfiguration"},
"DynamicPartitioningConfiguration":{"shape":"DynamicPartitioningConfiguration"}
}
},
"ExtendedS3DestinationDescription":{
Expand All @@ -679,7 +687,8 @@
"ProcessingConfiguration":{"shape":"ProcessingConfiguration"},
"S3BackupMode":{"shape":"S3BackupMode"},
"S3BackupDescription":{"shape":"S3DestinationDescription"},
"DataFormatConversionConfiguration":{"shape":"DataFormatConversionConfiguration"}
"DataFormatConversionConfiguration":{"shape":"DataFormatConversionConfiguration"},
"DynamicPartitioningConfiguration":{"shape":"DynamicPartitioningConfiguration"}
}
},
"ExtendedS3DestinationUpdate":{
Expand All @@ -696,7 +705,8 @@
"ProcessingConfiguration":{"shape":"ProcessingConfiguration"},
"S3BackupMode":{"shape":"S3BackupMode"},
"S3BackupUpdate":{"shape":"S3DestinationUpdate"},
"DataFormatConversionConfiguration":{"shape":"DataFormatConversionConfiguration"}
"DataFormatConversionConfiguration":{"shape":"DataFormatConversionConfiguration"},
"DynamicPartitioningConfiguration":{"shape":"DynamicPartitioningConfiguration"}
}
},
"FailureDescription":{
Expand Down Expand Up @@ -1196,20 +1206,29 @@
"enum":[
"LambdaArn",
"NumberOfRetries",
"MetadataExtractionQuery",
"JsonParsingEngine",
"RoleArn",
"BufferSizeInMBs",
"BufferIntervalInSeconds"
"BufferIntervalInSeconds",
"SubRecordType",
"Delimiter"
]
},
"ProcessorParameterValue":{
"type":"string",
"max":512,
"max":5120,
"min":1,
"pattern":"^(?!\\s*$).+"
},
"ProcessorType":{
"type":"string",
"enum":["Lambda"]
"enum":[
"RecordDeAggregation",
"Lambda",
"MetadataExtraction",
"AppendDelimiterToRecord"
]
},
"Proportion":{
"type":"double",
Expand Down Expand Up @@ -1383,6 +1402,17 @@
},
"exception":true
},
"RetryDurationInSeconds":{
"type":"integer",
"max":7200,
"min":0
},
"RetryOptions":{
"type":"structure",
"members":{
"DurationInSeconds":{"shape":"RetryDurationInSeconds"}
}
},
"RoleARN":{
"type":"string",
"max":512,
Expand Down
Loading

0 comments on commit a3f35ed

Please sign in to comment.