forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awssdkgo
committed
Apr 16, 2019
1 parent
9ff54e8
commit cf58d16
Showing
28 changed files
with
2,247 additions
and
493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
### SDK Features | ||
|
||
### SDK Enhancements | ||
* `example/service/dynamodb`: Add custom unmarshaller error example for TransactWriteItems ([#2548](https://github.com/aws/aws-sdk-go/pull/2548)) | ||
* Adds an example for building and using a custom unmarshaller to unmarshal TransactionCancelledExceptions from the error response of TransactWriteItems operation. | ||
|
||
### SDK Bugs |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,7 +188,7 @@ | |
"AdminCreateUserUnusedAccountValidityDaysType": { | ||
"base": null, | ||
"refs": { | ||
"AdminCreateUserConfigType$UnusedAccountValidityDays": "<p>The user account expiration limit, in days, after which the account is no longer usable. To reset the account after that time limit, you must call <code>AdminCreateUser</code> again, specifying <code>\"RESEND\"</code> for the <code>MessageAction</code> parameter. The default value for this parameter is 7.</p>" | ||
"AdminCreateUserConfigType$UnusedAccountValidityDays": "<p>The user account expiration limit, in days, after which the account is no longer usable. To reset the account after that time limit, you must call <code>AdminCreateUser</code> again, specifying <code>\"RESEND\"</code> for the <code>MessageAction</code> parameter. The default value for this parameter is 7. </p> <note> <p>If you set a value for <code>TemporaryPasswordValidityDays</code> in <code>PasswordPolicy</code>, that value will be used and <code>UnusedAccountValidityDays</code> will be deprecated for that user pool. </p> </note>" | ||
} | ||
}, | ||
"AdminDeleteUserAttributesRequest": { | ||
|
@@ -449,7 +449,7 @@ | |
"CreateGroupRequest$RoleArn": "<p>The role ARN for the group.</p>", | ||
"CreateUserImportJobRequest$CloudWatchLogsRoleArn": "<p>The role ARN for the Amazon CloudWatch Logging role for the user import job.</p>", | ||
"CustomDomainConfigType$CertificateArn": "<p>The Amazon Resource Name (ARN) of an AWS Certificate Manager SSL certificate. You use this certificate for the subdomain of your custom domain.</p>", | ||
"EmailConfigurationType$SourceArn": "<p>The Amazon Resource Name (ARN) of the email source.</p>", | ||
"EmailConfigurationType$SourceArn": "<p>The Amazon Resource Name (ARN) of a verified email address in Amazon SES. This email address is used in one of the following ways, depending on the value that you specify for the <code>EmailSendingAccount</code> parameter:</p> <ul> <li> <p>If you specify <code>COGNITO_DEFAULT</code>, Amazon Cognito uses this address as the custom FROM address when it emails your users by using its built-in email account.</p> </li> <li> <p>If you specify <code>DEVELOPER</code>, Amazon Cognito emails your users with this address by calling Amazon SES on your behalf.</p> </li> </ul>", | ||
"GroupType$RoleArn": "<p>The role ARN for the group.</p>", | ||
"LambdaConfigType$PreSignUp": "<p>A pre-registration AWS Lambda trigger.</p>", | ||
"LambdaConfigType$CustomMessage": "<p>A custom Message AWS Lambda trigger.</p>", | ||
|
@@ -1253,6 +1253,12 @@ | |
"NotifyEmailType$Subject": "<p>The subject.</p>" | ||
} | ||
}, | ||
"EmailSendingAccountType": { | ||
"base": null, | ||
"refs": { | ||
"EmailConfigurationType$EmailSendingAccount": "<p>Specifies whether Amazon Cognito emails your users by using its built-in email functionality or your Amazon SES email configuration. Specify one of the following values:</p> <dl> <dt>COGNITO_DEFAULT</dt> <dd> <p>When Amazon Cognito emails your users, it uses its built-in email functionality. When you use the default option, Amazon Cognito allows only a limited number of emails each day for your user pool. For typical production environments, the default email limit is below the required delivery volume. To achieve a higher delivery volume, specify DEVELOPER to use your Amazon SES email configuration.</p> <p>To look up the email delivery limit for the default option, see <a href=\"https://docs.aws.amazon.com/cognito/latest/developerguide/limits.html\">Limits in Amazon Cognito</a> in the <i>Amazon Cognito Developer Guide</i>.</p> <p>The default FROM address is [email protected]. To customize the FROM address, provide the ARN of an Amazon SES verified email address for the <code>SourceArn</code> parameter.</p> </dd> <dt>DEVELOPER</dt> <dd> <p>When Amazon Cognito emails your users, it uses your Amazon SES configuration. Amazon Cognito calls Amazon SES on your behalf to send email from your verified email address. When you use this option, the email delivery limits are the same limits that apply to your Amazon SES verified email address in your AWS account.</p> <p>If you use this option, you must provide the ARN of an Amazon SES verified email address for the <code>SourceArn</code> parameter.</p> <p>Before Amazon Cognito can email your users, it requires additional permissions to call Amazon SES on your behalf. When you update your user pool with this option, Amazon Cognito creates a <i>service-linked role</i>, which is a type of IAM role, in your AWS account. This role contains the permissions that allow Amazon Cognito to access Amazon SES and send email messages with your address. For more information about the service-linked role that Amazon Cognito creates, see <a href=\"https://docs.aws.amazon.com/cognito/latest/developerguide/using-service-linked-roles.html\">Using Service-Linked Roles for Amazon Cognito</a> in the <i>Amazon Cognito Developer Guide</i>.</p> </dd> </dl>" | ||
} | ||
}, | ||
"EmailVerificationMessageByLinkType": { | ||
"base": null, | ||
"refs": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,52 @@ | ||
{ | ||
"pagination": { | ||
"AdminListGroupsForUser": { | ||
"input_token": "NextToken", | ||
"limit_key": "Limit", | ||
"output_token": "NextToken", | ||
"result_key": "Groups" | ||
}, | ||
"AdminListUserAuthEvents": { | ||
"input_token": "NextToken", | ||
"limit_key": "MaxResults", | ||
"output_token": "NextToken", | ||
"result_key": "AuthEvents" | ||
}, | ||
"ListGroups": { | ||
"input_token": "NextToken", | ||
"limit_key": "Limit", | ||
"output_token": "NextToken", | ||
"result_key": "Groups" | ||
}, | ||
"ListIdentityProviders": { | ||
"input_token": "NextToken", | ||
"limit_key": "MaxResults", | ||
"output_token": "NextToken", | ||
"result_key": "Providers" | ||
}, | ||
"ListResourceServers": { | ||
"input_token": "NextToken", | ||
"limit_key": "MaxResults", | ||
"output_token": "NextToken", | ||
"result_key": "ResourceServers" | ||
}, | ||
"ListUserPoolClients": { | ||
"input_token": "NextToken", | ||
"limit_key": "MaxResults", | ||
"output_token": "NextToken", | ||
"result_key": "UserPoolClients" | ||
}, | ||
"ListUserPools": { | ||
"input_token": "NextToken", | ||
"limit_key": "MaxResults", | ||
"output_token": "NextToken", | ||
"result_key": "UserPools" | ||
}, | ||
"ListUsersInGroup": { | ||
"input_token": "NextToken", | ||
"limit_key": "Limit", | ||
"output_token": "NextToken", | ||
"result_key": "Users" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.