Skip to content

Commit

Permalink
Release v1.43.20 (2022-03-16) (#4317)
Browse files Browse the repository at this point in the history
Release v1.43.20 (2022-03-16)
===

### Service Client Updates
* `service/acm-pca`: Updates service API and documentation
* `service/amplifybackend`: Updates service API and documentation
* `service/billingconductor`: Adds new service
* `service/s3outposts`: Updates service API, documentation, and paginators
* `service/ssm-incidents`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Mar 16, 2022
1 parent 254f0c0 commit 4b1994d
Show file tree
Hide file tree
Showing 30 changed files with 14,671 additions and 373 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.43.20 (2022-03-16)
===

### Service Client Updates
* `service/acm-pca`: Updates service API and documentation
* `service/amplifybackend`: Updates service API and documentation
* `service/billingconductor`: Adds new service
* `service/s3outposts`: Updates service API, documentation, and paginators
* `service/ssm-incidents`: Updates service API and documentation

Release v1.43.19 (2022-03-15)
===

Expand Down
17 changes: 17 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
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.43.19"
const SDKVersion = "1.43.20"
55 changes: 53 additions & 2 deletions models/apis/acm-pca/2017-08-22/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,8 @@
"GivenName":{"shape":"String16"},
"Initials":{"shape":"String5"},
"Pseudonym":{"shape":"String128"},
"GenerationQualifier":{"shape":"String3"}
"GenerationQualifier":{"shape":"String3"},
"CustomAttributes":{"shape":"CustomAttributeList"}
}
},
"AWSPolicy":{
Expand Down Expand Up @@ -486,6 +487,12 @@
"FAILED"
]
},
"Base64String1To4096":{
"type":"string",
"max":4096,
"min":1,
"pattern":"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$"
},
"Boolean":{"type":"boolean"},
"CertificateAuthorities":{
"type":"list",
Expand Down Expand Up @@ -666,6 +673,44 @@
"SubjectInformationAccess":{"shape":"AccessDescriptionList"}
}
},
"CustomAttribute":{
"type":"structure",
"required":[
"ObjectIdentifier",
"Value"
],
"members":{
"ObjectIdentifier":{"shape":"CustomObjectIdentifier"},
"Value":{"shape":"String1To256"}
}
},
"CustomAttributeList":{
"type":"list",
"member":{"shape":"CustomAttribute"},
"max":30,
"min":1
},
"CustomExtension":{
"type":"structure",
"required":[
"ObjectIdentifier",
"Value"
],
"members":{
"ObjectIdentifier":{"shape":"CustomObjectIdentifier"},
"Value":{"shape":"Base64String1To4096"},
"Critical":{
"shape":"Boolean",
"box":true
}
}
},
"CustomExtensionList":{
"type":"list",
"member":{"shape":"CustomExtension"},
"max":20,
"min":1
},
"CustomObjectIdentifier":{
"type":"string",
"max":64,
Expand Down Expand Up @@ -773,7 +818,8 @@
"CertificatePolicies":{"shape":"CertificatePolicyList"},
"ExtendedKeyUsage":{"shape":"ExtendedKeyUsageList"},
"KeyUsage":{"shape":"KeyUsage"},
"SubjectAlternativeNames":{"shape":"GeneralNameList"}
"SubjectAlternativeNames":{"shape":"GeneralNameList"},
"CustomExtensions":{"shape":"CustomExtensionList"}
}
},
"FailureReason":{
Expand Down Expand Up @@ -1293,6 +1339,11 @@
"max":16,
"min":0
},
"String1To256":{
"type":"string",
"max":256,
"min":1
},
"String253":{
"type":"string",
"max":253,
Expand Down
151 changes: 95 additions & 56 deletions models/apis/acm-pca/2017-08-22/docs-2.json

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions models/apis/amplifybackend/2020-08-11/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1457,10 +1457,32 @@
"UserPoolName" : {
"shape" : "__string",
"locationName" : "userPoolName"
},
"VerificationMessage" : {
"shape" : "CreateBackendAuthVerificationMessageConfig",
"locationName" : "verificationMessage"
}
},
"required" : [ "RequiredSignUpAttributes", "SignInMethod", "UserPoolName" ]
},
"CreateBackendAuthVerificationMessageConfig" : {
"type" : "structure",
"members" : {
"DeliveryMethod" : {
"shape" : "DeliveryMethod",
"locationName" : "deliveryMethod"
},
"EmailSettings" : {
"shape" : "EmailSettings",
"locationName" : "emailSettings"
},
"SmsSettings" : {
"shape" : "SmsSettings",
"locationName" : "smsSettings"
}
},
"required" : [ "DeliveryMethod" ]
},
"CreateBackendConfigReqObj" : {
"type" : "structure",
"members" : {
Expand Down Expand Up @@ -3421,9 +3443,31 @@
"PasswordPolicy" : {
"shape" : "UpdateBackendAuthPasswordPolicyConfig",
"locationName" : "passwordPolicy"
},
"VerificationMessage" : {
"shape" : "UpdateBackendAuthVerificationMessageConfig",
"locationName" : "verificationMessage"
}
}
},
"UpdateBackendAuthVerificationMessageConfig" : {
"type" : "structure",
"members" : {
"DeliveryMethod" : {
"shape" : "DeliveryMethod",
"locationName" : "deliveryMethod"
},
"EmailSettings" : {
"shape" : "EmailSettings",
"locationName" : "emailSettings"
},
"SmsSettings" : {
"shape" : "SmsSettings",
"locationName" : "smsSettings"
}
},
"required" : [ "DeliveryMethod" ]
},
"UpdateBackendConfigReqObj" : {
"type" : "structure",
"members" : {
Expand Down
52 changes: 35 additions & 17 deletions models/apis/amplifybackend/2020-08-11/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@
"refs" : { }
},
"CreateBackendAuthForgotPasswordConfig" : {
"base" : "<p>Describes the forgot password policy for authenticating into the Amplify app.</p>",
"base" : "<p><b>(DEPRECATED)</b> Describes the forgot password policy for authenticating into the Amplify app.</p>",
"refs" : {
"CreateBackendAuthUserPoolConfig$ForgotPassword" : "<p>Describes the forgotten password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.</p>"
"CreateBackendAuthUserPoolConfig$ForgotPassword" : "<p><b>(DEPRECATED)</b> Describes the forgotten password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.</p>"
}
},
"CreateBackendAuthIdentityPoolConfig" : {
Expand Down Expand Up @@ -192,6 +192,12 @@
"CreateBackendAuthResourceConfig$UserPoolConfigs" : "<p>Describes authentication configuration for the Amazon Cognito user pool, provisioned as a part of your auth resource in the Amplify project.</p>"
}
},
"CreateBackendAuthVerificationMessageConfig" : {
"base" : "<p>Creates an email or SMS verification message for the auth resource configured for your Amplify project.</p>",
"refs" : {
"CreateBackendAuthUserPoolConfig$VerificationMessage" : "<p>Describes the email or SMS verification message for your Amazon Cognito user pool, configured as a part of your Amplify project.</p>"
}
},
"CreateBackendConfigReqObj" : {
"base" : "<p>The request object for this operation.</p>",
"refs" : { }
Expand Down Expand Up @@ -231,17 +237,21 @@
"refs" : { }
},
"DeliveryMethod" : {
"base" : null,
"base" : "<p>The type of verification message to send.</p>",
"refs" : {
"CreateBackendAuthForgotPasswordConfig$DeliveryMethod" : "<p>Describes which mode to use (either SMS or email) to deliver messages to app users who want to recover their password.</p>",
"UpdateBackendAuthForgotPasswordConfig$DeliveryMethod" : "<p>Describes which mode to use (either SMS or email) to deliver messages to app users that want to recover their password.</p>"
"CreateBackendAuthForgotPasswordConfig$DeliveryMethod" : "<p><b>(DEPRECATED)</b> Describes which mode to use (either SMS or email) to deliver messages to app users who want to recover their password.</p>",
"CreateBackendAuthVerificationMessageConfig$DeliveryMethod" : "<p>The type of verification message to send.</p>",
"UpdateBackendAuthForgotPasswordConfig$DeliveryMethod" : "<p><b>(DEPRECATED)</b> Describes which mode to use (either SMS or email) to deliver messages to app users that want to recover their password.</p>",
"UpdateBackendAuthVerificationMessageConfig$DeliveryMethod" : "<p>The type of verification message to send.</p>"
}
},
"EmailSettings" : {
"base" : null,
"base" : "<p>The settings for the email message.</p>",
"refs" : {
"CreateBackendAuthForgotPasswordConfig$EmailSettings" : "<p>The configuration for the email sent when an app user forgets their password.</p>",
"UpdateBackendAuthForgotPasswordConfig$EmailSettings" : "<p>The configuration for the email sent when an app user forgets their password.</p>"
"CreateBackendAuthForgotPasswordConfig$EmailSettings" : "<p><b>(DEPRECATED)</b> The configuration for the email sent when an app user forgets their password.</p>",
"CreateBackendAuthVerificationMessageConfig$EmailSettings" : "<p>The settings for the email message.</p>",
"UpdateBackendAuthForgotPasswordConfig$EmailSettings" : "<p><b>(DEPRECATED)</b> The configuration for the email sent when an app user forgets their password.</p>",
"UpdateBackendAuthVerificationMessageConfig$EmailSettings" : "<p>The settings for the email message.</p>"
}
},
"GatewayTimeoutException" : {
Expand Down Expand Up @@ -382,7 +392,7 @@
"ResourceConfig" : {
"base" : null,
"refs" : {
"CreateBackendReqObj$ResourceConfig" : "<p>The resource configuration for creating backend storage.</p>"
"CreateBackendReqObj$ResourceConfig" : "<p>The resource configuration for creating a backend.</p>"
}
},
"S3BucketInfo" : {
Expand Down Expand Up @@ -422,10 +432,12 @@
}
},
"SmsSettings" : {
"base" : null,
"base" : "<p>The settings for the SMS message.</p>",
"refs" : {
"CreateBackendAuthForgotPasswordConfig$SmsSettings" : "<p>The configuration for the SMS message sent when an app user forgets their password.</p>",
"UpdateBackendAuthForgotPasswordConfig$SmsSettings" : "<p>The configuration for the SMS message sent when an Amplify app user forgets their password.</p>"
"CreateBackendAuthForgotPasswordConfig$SmsSettings" : "<p><b>(DEPRECATED)</b> The configuration for the SMS message sent when an app user forgets their password.</p>",
"CreateBackendAuthVerificationMessageConfig$SmsSettings" : "<p>The settings for the SMS message.</p>",
"UpdateBackendAuthForgotPasswordConfig$SmsSettings" : "<p><b>(DEPRECATED)</b> The configuration for the SMS message sent when an Amplify app user forgets their password.</p>",
"UpdateBackendAuthVerificationMessageConfig$SmsSettings" : "<p>The settings for the SMS message.</p>"
}
},
"SocialProviderSettings" : {
Expand All @@ -446,9 +458,9 @@
"refs" : { }
},
"UpdateBackendAuthForgotPasswordConfig" : {
"base" : "<p>Describes the forgot password policy for authenticating into the Amplify app.</p>",
"base" : "<p><b>(DEPRECATED)</b> Describes the forgot password policy for authenticating into the Amplify app.</p>",
"refs" : {
"UpdateBackendAuthUserPoolConfig$ForgotPassword" : "<p>Describes the forgot password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.</p>"
"UpdateBackendAuthUserPoolConfig$ForgotPassword" : "<p><b>(DEPRECATED)</b> Describes the forgot password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.</p>"
}
},
"UpdateBackendAuthIdentityPoolConfig" : {
Expand Down Expand Up @@ -491,6 +503,12 @@
"UpdateBackendAuthResourceConfig$UserPoolConfigs" : "<p>Describes the authentication configuration for the Amazon Cognito user pool, provisioned as a part of your auth resource in the Amplify project.</p>"
}
},
"UpdateBackendAuthVerificationMessageConfig" : {
"base" : "<p>Updates the configuration of the email or SMS message for the auth resource configured for your Amplify project.</p>",
"refs" : {
"UpdateBackendAuthUserPoolConfig$VerificationMessage" : "<p>Describes the email or SMS verification message for your Amazon Cognito user pool, configured as a part of your Amplify project.</p>"
}
},
"UpdateBackendConfigReqObj" : {
"base" : "<p>The request object for this operation.</p>",
"refs" : { }
Expand Down Expand Up @@ -730,8 +748,8 @@
"DeleteBackendRespObj$JobId" : "<p>The ID for the job.</p>",
"DeleteBackendRespObj$Operation" : "<p>The name of the operation.</p>",
"DeleteBackendRespObj$Status" : "<p>The current status of the request.</p>",
"EmailSettings$EmailMessage" : "<p>The body of the email.</p>",
"EmailSettings$EmailSubject" : "<p>The subject of the email.</p>",
"EmailSettings$EmailMessage" : "<p>The contents of the email message.</p>",
"EmailSettings$EmailSubject" : "<p>The contents of the subject line of the email message.</p>",
"GetBackendAPICodegenRespObj$Models" : "<p>Stringified JSON of the datastore model.</p>",
"GetBackendAPIRespObj$AppId" : "<p>The app ID.</p>",
"GetBackendAPIRespObj$BackendEnvironmentName" : "<p>The name of the backend environment.</p>",
Expand Down Expand Up @@ -790,7 +808,7 @@
"S3BucketInfo$CreationDate" : "<p>The creation date of the S3 bucket.</p>",
"S3BucketInfo$Name" : "<p>The name of the S3 bucket.</p>",
"Settings$SmsMessage" : "<p>The body of the SMS message.</p>",
"SmsSettings$SmsMessage" : "<p>The body of the SMS message.</p>",
"SmsSettings$SmsMessage" : "<p>The contents of the SMS message.</p>",
"UpdateBackendAuthOAuthConfig$DomainPrefix" : "<p>The Amazon Cognito domain prefix used to create a hosted UI for authentication.</p>",
"UpdateBackendAuthReqObj$ResourceName" : "<p>The name of this resource.</p>",
"UpdateBackendStorageReqObj$ResourceName" : "<p>The name of the storage resource.</p>",
Expand Down
Loading

0 comments on commit 4b1994d

Please sign in to comment.