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.43.42 #4366

Merged
merged 1 commit into from Apr 19, 2022
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,25 @@
Release v1.43.42 (2022-04-19)
===

### Service Client Updates
* `service/autoscaling`: Updates service API and documentation
* EC2 Auto Scaling now adds default instance warm-up times for all scaling activities, health check replacements, and other replacement events in the Auto Scaling instance lifecycle.
* `service/kendra`: Updates service API and documentation
* Amazon Kendra now provides a data source connector for Quip. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-quip.html
* `service/kms`: Updates service API, documentation, and examples
* Adds support for KMS keys and APIs that generate and verify HMAC codes
* `service/personalize`: Updates service API and documentation
* `service/polly`: Updates service API
* Amazon Polly adds new Austrian German voice - Hannah. Hannah is available as Neural voice only.
* `service/redshift`: Updates service API and documentation
* Introduces new fields for LogDestinationType and LogExports on EnableLogging requests and Enable/Disable/DescribeLogging responses. Customers can now select CloudWatch Logs as a destination for their Audit Logs.
* `service/ssm`: Updates service API and documentation
* Added offset support for specifying the number of days to wait after the date and time specified by a CRON expression when creating SSM association.
* `service/textract`: Updates service API and documentation
* `service/transfer`: Updates service documentation
* This release contains corrected HomeDirectoryMappings examples for several API functions: CreateAccess, UpdateAccess, CreateUser, and UpdateUser,.
* `service/worklink`: Updates service API

Release v1.43.41 (2022-04-15)
===

Expand Down
37 changes: 37 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.43.41"
const SDKVersion = "1.43.42"
10 changes: 7 additions & 3 deletions models/apis/autoscaling/2011-01-01/api-2.json
Expand Up @@ -1133,7 +1133,8 @@
"WarmPoolConfiguration":{"shape":"WarmPoolConfiguration"},
"WarmPoolSize":{"shape":"WarmPoolSize"},
"Context":{"shape":"Context"},
"DesiredCapacityType":{"shape":"XmlStringMaxLen255"}
"DesiredCapacityType":{"shape":"XmlStringMaxLen255"},
"DefaultInstanceWarmup":{"shape":"DefaultInstanceWarmup"}
}
},
"AutoScalingGroupDesiredCapacity":{"type":"integer"},
Expand Down Expand Up @@ -1409,7 +1410,8 @@
"ServiceLinkedRoleARN":{"shape":"ResourceName"},
"MaxInstanceLifetime":{"shape":"MaxInstanceLifetime"},
"Context":{"shape":"Context"},
"DesiredCapacityType":{"shape":"XmlStringMaxLen255"}
"DesiredCapacityType":{"shape":"XmlStringMaxLen255"},
"DefaultInstanceWarmup":{"shape":"DefaultInstanceWarmup"}
}
},
"CreateLaunchConfigurationType":{
Expand Down Expand Up @@ -1459,6 +1461,7 @@
"Unit":{"shape":"MetricUnit"}
}
},
"DefaultInstanceWarmup":{"type":"integer"},
"DeleteAutoScalingGroupType":{
"type":"structure",
"required":["AutoScalingGroupName"],
Expand Down Expand Up @@ -3251,7 +3254,8 @@
"MaxInstanceLifetime":{"shape":"MaxInstanceLifetime"},
"CapacityRebalance":{"shape":"CapacityRebalanceEnabled"},
"Context":{"shape":"Context"},
"DesiredCapacityType":{"shape":"XmlStringMaxLen255"}
"DesiredCapacityType":{"shape":"XmlStringMaxLen255"},
"DefaultInstanceWarmup":{"shape":"DefaultInstanceWarmup"}
}
},
"VCpuCountRequest":{
Expand Down
44 changes: 26 additions & 18 deletions models/apis/autoscaling/2011-01-01/docs-2.json

Large diffs are not rendered by default.

42 changes: 40 additions & 2 deletions models/apis/kendra/2019-02-03/api-2.json
Expand Up @@ -1701,7 +1701,8 @@
"WorkDocsConfiguration":{"shape":"WorkDocsConfiguration"},
"FsxConfiguration":{"shape":"FsxConfiguration"},
"SlackConfiguration":{"shape":"SlackConfiguration"},
"BoxConfiguration":{"shape":"BoxConfiguration"}
"BoxConfiguration":{"shape":"BoxConfiguration"},
"QuipConfiguration":{"shape":"QuipConfiguration"}
}
},
"DataSourceDateFieldFormat":{
Expand Down Expand Up @@ -1875,7 +1876,8 @@
"WORKDOCS",
"FSX",
"SLACK",
"BOX"
"BOX",
"QUIP"
]
},
"DataSourceVpcConfiguration":{
Expand Down Expand Up @@ -2465,6 +2467,12 @@
"S3Prefix":{"shape":"S3ObjectKey"}
}
},
"Domain":{
"type":"string",
"max":63,
"min":1,
"pattern":"^(?!-)[A-Za-z0-9-].*(?<!-)$"
},
"Duration":{
"type":"string",
"max":10,
Expand Down Expand Up @@ -2754,6 +2762,15 @@
"min":11,
"pattern":"^(fs-[0-9a-f]{8,})$"
},
"FolderId":{
"type":"string",
"max":500,
"min":1
},
"FolderIdList":{
"type":"list",
"member":{"shape":"FolderId"}
},
"FsxConfiguration":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -3742,6 +3759,27 @@
"max":1000,
"min":1
},
"QuipConfiguration":{
"type":"structure",
"required":[
"Domain",
"SecretArn"
],
"members":{
"Domain":{"shape":"Domain"},
"SecretArn":{"shape":"SecretArn"},
"CrawlFileComments":{"shape":"Boolean"},
"CrawlChatRooms":{"shape":"Boolean"},
"CrawlAttachments":{"shape":"Boolean"},
"FolderIds":{"shape":"FolderIdList"},
"ThreadFieldMappings":{"shape":"DataSourceToIndexFieldMappingList"},
"MessageFieldMappings":{"shape":"DataSourceToIndexFieldMappingList"},
"AttachmentFieldMappings":{"shape":"DataSourceToIndexFieldMappingList"},
"InclusionPatterns":{"shape":"DataSourceInclusionsExclusionsStrings"},
"ExclusionPatterns":{"shape":"DataSourceInclusionsExclusionsStrings"},
"VpcConfiguration":{"shape":"DataSourceVpcConfiguration"}
}
},
"ReadAccessType":{
"type":"string",
"enum":[
Expand Down