Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.42.8 #4181

Merged
merged 1 commit into from Nov 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,23 @@
Release v1.42.8 (2021-11-18)
===

### Service Client Updates
* `service/appconfig`: Updates service API, documentation, and examples
* `service/auditmanager`: Updates service API, documentation, and paginators
* `service/chime`: Updates service API and documentation
* Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
* `service/chime-sdk-meetings`: Updates service API and documentation
* `service/databrew`: Updates service API, documentation, and paginators
* `service/forecast`: Updates service API and documentation
* `service/ivs`: Updates service API, documentation, and paginators
* `service/kafka`: Updates service API and documentation
* `service/lambda`: Updates service API and documentation
* Added support for CLIENT_CERTIFICATE_TLS_AUTH and SERVER_ROOT_CA_CERTIFICATE as SourceAccessType for MSK and Kafka event source mappings.
* `service/models.lex.v2`: Updates service API and documentation
* `service/monitoring`: Updates service API and documentation
* CloudWatch Anomaly Detection now supports anomaly detectors that use metric math as input.
* `service/redshift-data`: Updates service API and documentation

Release v1.42.7 (2021-11-17)
===

Expand Down
43 changes: 43 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.42.7"
const SDKVersion = "1.42.8"
54 changes: 49 additions & 5 deletions models/apis/appconfig/2019-10-09/api-2.json
Expand Up @@ -529,14 +529,27 @@
"min":20,
"pattern":"arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1})?:(\\d{12})?:[a-zA-Z0-9-_/:.]+"
},
"BadRequestDetails":{
"type":"structure",
"members":{
"InvalidConfiguration":{"shape":"InvalidConfigurationDetailList"}
},
"union":true
},
"BadRequestException":{
"type":"structure",
"members":{
"Message":{"shape":"String"}
"Message":{"shape":"String"},
"Reason":{"shape":"BadRequestReason"},
"Details":{"shape":"BadRequestDetails"}
},
"error":{"httpStatusCode":400},
"exception":true
},
"BadRequestReason":{
"type":"string",
"enum":["InvalidConfiguration"]
},
"Blob":{
"type":"blob",
"sensitive":true
Expand Down Expand Up @@ -571,7 +584,8 @@
"Description":{"shape":"Description"},
"LocationUri":{"shape":"Uri"},
"RetrievalRoleArn":{"shape":"RoleArn"},
"Validators":{"shape":"ValidatorList"}
"Validators":{"shape":"ValidatorList"},
"Type":{"shape":"ConfigurationProfileType"}
}
},
"ConfigurationProfileSummary":{
Expand All @@ -581,13 +595,18 @@
"Id":{"shape":"Id"},
"Name":{"shape":"Name"},
"LocationUri":{"shape":"Uri"},
"ValidatorTypes":{"shape":"ValidatorTypeList"}
"ValidatorTypes":{"shape":"ValidatorTypeList"},
"Type":{"shape":"ConfigurationProfileType"}
}
},
"ConfigurationProfileSummaryList":{
"type":"list",
"member":{"shape":"ConfigurationProfileSummary"}
},
"ConfigurationProfileType":{
"type":"string",
"pattern":"^[a-zA-Z\\.]+"
},
"ConfigurationProfiles":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -630,7 +649,8 @@
"LocationUri":{"shape":"Uri"},
"RetrievalRoleArn":{"shape":"RoleArn"},
"Validators":{"shape":"ValidatorList"},
"Tags":{"shape":"TagMap"}
"Tags":{"shape":"TagMap"},
"Type":{"shape":"ConfigurationProfileType"}
}
},
"CreateDeploymentStrategyRequest":{
Expand Down Expand Up @@ -1176,6 +1196,19 @@
"exception":true,
"fault":true
},
"InvalidConfigurationDetail":{
"type":"structure",
"members":{
"Constraint":{"shape":"String"},
"Location":{"shape":"String"},
"Reason":{"shape":"String"},
"Type":{"shape":"String"}
}
},
"InvalidConfigurationDetailList":{
"type":"list",
"member":{"shape":"InvalidConfigurationDetail"}
},
"Iso8601DateTime":{
"type":"timestamp",
"timestampFormat":"iso8601"
Expand Down Expand Up @@ -1215,6 +1248,11 @@
"shape":"NextToken",
"location":"querystring",
"locationName":"next_token"
},
"Type":{
"shape":"ConfigurationProfileType",
"location":"querystring",
"locationName":"type"
}
}
},
Expand Down Expand Up @@ -1339,8 +1377,9 @@
},
"Monitor":{
"type":"structure",
"required":["AlarmArn"],
"members":{
"AlarmArn":{"shape":"Arn"},
"AlarmArn":{"shape":"StringWithLengthBetween1And2048"},
"AlarmRoleArn":{"shape":"RoleArn"}
}
},
Expand Down Expand Up @@ -1472,6 +1511,11 @@
"min":0,
"sensitive":true
},
"StringWithLengthBetween1And2048":{
"type":"string",
"max":2048,
"min":1
},
"StringWithLengthBetween1And255":{
"type":"string",
"max":255,
Expand Down