-
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
Jun 21, 2018
1 parent
001a9b6
commit 8f886b7
Showing
26 changed files
with
1,149 additions
and
33 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,17 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "Macie", | ||
"description": "Amazon Macie is a security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. With this release, we are launching the following Macie HTTPS API operations: AssociateMemberAccount, AssociateS3Resources, DisassociateMemberAccount, DisassociateS3Resources, ListMemberAccounts, ListS3Resources, and UpdateS3Resources. With these API operations you can issue HTTPS requests directly to the service." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Neptune", | ||
"description": "Deprecates the PubliclyAccessible parameter that is not supported by Amazon Neptune." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "SSM", | ||
"description": "Adds Amazon Linux 2 support to Patch Manager" | ||
} | ||
] |
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,222 @@ | ||
{ | ||
"version": "2.0", | ||
"metadata": { | ||
"apiVersion": "2017-12-19", | ||
"endpointPrefix": "macie", | ||
"jsonVersion": "1.1", | ||
"protocol": "json", | ||
"serviceFullName": "Amazon Macie", | ||
"serviceId": "Macie", | ||
"signatureVersion": "v4", | ||
"targetPrefix": "MacieService", | ||
"uid": "macie-2017-12-19" | ||
}, | ||
"operations": { | ||
"AssociateMemberAccount": { | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"memberAccountId" | ||
], | ||
"members": { | ||
"memberAccountId": {} | ||
} | ||
} | ||
}, | ||
"AssociateS3Resources": { | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"s3Resources" | ||
], | ||
"members": { | ||
"memberAccountId": {}, | ||
"s3Resources": { | ||
"shape": "S4" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"failedS3Resources": { | ||
"shape": "Sc" | ||
} | ||
} | ||
} | ||
}, | ||
"DisassociateMemberAccount": { | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"memberAccountId" | ||
], | ||
"members": { | ||
"memberAccountId": {} | ||
} | ||
} | ||
}, | ||
"DisassociateS3Resources": { | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"associatedS3Resources" | ||
], | ||
"members": { | ||
"memberAccountId": {}, | ||
"associatedS3Resources": { | ||
"type": "list", | ||
"member": { | ||
"shape": "Se" | ||
} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"failedS3Resources": { | ||
"shape": "Sc" | ||
} | ||
} | ||
} | ||
}, | ||
"ListMemberAccounts": { | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"nextToken": {}, | ||
"maxResults": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"memberAccounts": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"members": { | ||
"accountId": {} | ||
} | ||
} | ||
}, | ||
"nextToken": {} | ||
} | ||
} | ||
}, | ||
"ListS3Resources": { | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"memberAccountId": {}, | ||
"nextToken": {}, | ||
"maxResults": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"s3Resources": { | ||
"shape": "S4" | ||
}, | ||
"nextToken": {} | ||
} | ||
} | ||
}, | ||
"UpdateS3Resources": { | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"s3ResourcesUpdate" | ||
], | ||
"members": { | ||
"memberAccountId": {}, | ||
"s3ResourcesUpdate": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"required": [ | ||
"bucketName", | ||
"classificationTypeUpdate" | ||
], | ||
"members": { | ||
"bucketName": {}, | ||
"prefix": {}, | ||
"classificationTypeUpdate": { | ||
"type": "structure", | ||
"members": { | ||
"oneTime": {}, | ||
"continuous": {} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"failedS3Resources": { | ||
"shape": "Sc" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"shapes": { | ||
"S4": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"required": [ | ||
"bucketName", | ||
"classificationType" | ||
], | ||
"members": { | ||
"bucketName": {}, | ||
"prefix": {}, | ||
"classificationType": { | ||
"type": "structure", | ||
"required": [ | ||
"oneTime", | ||
"continuous" | ||
], | ||
"members": { | ||
"oneTime": {}, | ||
"continuous": {} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"Sc": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"members": { | ||
"failedItem": { | ||
"shape": "Se" | ||
}, | ||
"errorCode": {}, | ||
"errorMessage": {} | ||
} | ||
} | ||
}, | ||
"Se": { | ||
"type": "structure", | ||
"required": [ | ||
"bucketName" | ||
], | ||
"members": { | ||
"bucketName": {}, | ||
"prefix": {} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.