-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
awstools
committed
Sep 30, 2021
1 parent
7efca93
commit a42ad57
Showing
43 changed files
with
4,667 additions
and
402 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "Account", | ||
"description": "This release of the Account Management API enables customers to manage the alternate contacts for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/accounts-welcome.html" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "CloudControl", | ||
"description": "Initial release of the SDK for AWS Cloud Control API" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "DataExchange", | ||
"description": "This release enables subscribers to set up automatic exports of newly published revisions using the new EventAction API." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Macie2", | ||
"description": "Amazon S3 bucket metadata now indicates whether an error or a bucket's permissions settings prevented Amazon Macie from retrieving data about the bucket or the bucket's objects." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "NetworkFirewall", | ||
"description": "This release adds support for strict ordering for stateful rule groups. Using strict ordering, stateful rules are evaluated in the exact order in which you provide them." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "WorkMail", | ||
"description": "This release adds support for mobile device access overrides management in Amazon WorkMail." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "WorkSpaces", | ||
"description": "Added CreateUpdatedWorkspaceImage API to update WorkSpace images with latest software and drivers. Updated DescribeWorkspaceImages API to display if there are updates available for WorkSpace images." | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"version": "1.0", | ||
"examples": { | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,123 @@ | ||
{ | ||
"version": "2.0", | ||
"metadata": { | ||
"apiVersion": "2021-02-01", | ||
"endpointPrefix": "account", | ||
"jsonVersion": "1.1", | ||
"protocol": "rest-json", | ||
"serviceFullName": "AWS Account", | ||
"serviceId": "Account", | ||
"signatureVersion": "v4", | ||
"signingName": "account", | ||
"uid": "account-2021-02-01" | ||
}, | ||
"operations": { | ||
"DeleteAlternateContact": { | ||
"http": { | ||
"requestUri": "/deleteAlternateContact", | ||
"responseCode": 200 | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"AlternateContactType" | ||
], | ||
"members": { | ||
"AccountId": {}, | ||
"AlternateContactType": {} | ||
} | ||
}, | ||
"idempotent": true | ||
}, | ||
"GetAlternateContact": { | ||
"http": { | ||
"requestUri": "/getAlternateContact", | ||
"responseCode": 200 | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"AlternateContactType" | ||
], | ||
"members": { | ||
"AccountId": {}, | ||
"AlternateContactType": {} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"AlternateContact": { | ||
"type": "structure", | ||
"members": { | ||
"AlternateContactType": {}, | ||
"EmailAddress": { | ||
"shape": "S7" | ||
}, | ||
"Name": { | ||
"shape": "S8" | ||
}, | ||
"PhoneNumber": { | ||
"shape": "S9" | ||
}, | ||
"Title": { | ||
"shape": "Sa" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"PutAlternateContact": { | ||
"http": { | ||
"requestUri": "/putAlternateContact", | ||
"responseCode": 200 | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"AlternateContactType", | ||
"EmailAddress", | ||
"Name", | ||
"PhoneNumber", | ||
"Title" | ||
], | ||
"members": { | ||
"AccountId": {}, | ||
"AlternateContactType": {}, | ||
"EmailAddress": { | ||
"shape": "S7" | ||
}, | ||
"Name": { | ||
"shape": "S8" | ||
}, | ||
"PhoneNumber": { | ||
"shape": "S9" | ||
}, | ||
"Title": { | ||
"shape": "Sa" | ||
} | ||
} | ||
}, | ||
"idempotent": true | ||
} | ||
}, | ||
"shapes": { | ||
"S7": { | ||
"type": "string", | ||
"sensitive": true | ||
}, | ||
"S8": { | ||
"type": "string", | ||
"sensitive": true | ||
}, | ||
"S9": { | ||
"type": "string", | ||
"sensitive": true | ||
}, | ||
"Sa": { | ||
"type": "string", | ||
"sensitive": true | ||
} | ||
} | ||
} |
Oops, something went wrong.