-
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
Apr 8, 2024
1 parent
096b605
commit eb2fa4d
Showing
23 changed files
with
1,168 additions
and
92 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": "ControlCatalog", | ||
"description": "This is the initial SDK release for AWS Control Catalog, a central catalog for AWS managed controls. This release includes 3 new APIs - ListDomains, ListObjectives, and ListCommonControls - that vend high-level data to categorize controls across the AWS platform." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Mgn", | ||
"description": "Added USE_SOURCE as default option to LaunchConfigurationTemplate bootMode parameter." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "NetworkMonitor", | ||
"description": "Updated the allowed monitorName length for CloudWatch Network Monitor." | ||
} | ||
] |
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,228 @@ | ||
{ | ||
"version": "2.0", | ||
"metadata": { | ||
"apiVersion": "2018-05-10", | ||
"endpointPrefix": "controlcatalog", | ||
"jsonVersion": "1.1", | ||
"protocol": "rest-json", | ||
"serviceFullName": "AWS Control Catalog", | ||
"serviceId": "ControlCatalog", | ||
"signatureVersion": "v4", | ||
"signingName": "controlcatalog", | ||
"uid": "controlcatalog-2018-05-10" | ||
}, | ||
"operations": { | ||
"ListCommonControls": { | ||
"http": { | ||
"requestUri": "/common-controls", | ||
"responseCode": 200 | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"CommonControlFilter": { | ||
"type": "structure", | ||
"members": { | ||
"Objectives": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"members": { | ||
"Arn": {} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"MaxResults": { | ||
"location": "querystring", | ||
"locationName": "maxResults", | ||
"type": "integer" | ||
}, | ||
"NextToken": { | ||
"location": "querystring", | ||
"locationName": "nextToken" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"required": [ | ||
"CommonControls" | ||
], | ||
"members": { | ||
"CommonControls": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"required": [ | ||
"Arn", | ||
"CreateTime", | ||
"Description", | ||
"Domain", | ||
"LastUpdateTime", | ||
"Name", | ||
"Objective" | ||
], | ||
"members": { | ||
"Arn": {}, | ||
"CreateTime": { | ||
"type": "timestamp" | ||
}, | ||
"Description": {}, | ||
"Domain": { | ||
"shape": "Se" | ||
}, | ||
"LastUpdateTime": { | ||
"type": "timestamp" | ||
}, | ||
"Name": {}, | ||
"Objective": { | ||
"type": "structure", | ||
"members": { | ||
"Arn": {}, | ||
"Name": {} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"NextToken": {} | ||
} | ||
} | ||
}, | ||
"ListDomains": { | ||
"http": { | ||
"requestUri": "/domains", | ||
"responseCode": 200 | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"MaxResults": { | ||
"location": "querystring", | ||
"locationName": "maxResults", | ||
"type": "integer" | ||
}, | ||
"NextToken": { | ||
"location": "querystring", | ||
"locationName": "nextToken" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"required": [ | ||
"Domains" | ||
], | ||
"members": { | ||
"Domains": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"required": [ | ||
"Arn", | ||
"CreateTime", | ||
"Description", | ||
"LastUpdateTime", | ||
"Name" | ||
], | ||
"members": { | ||
"Arn": {}, | ||
"CreateTime": { | ||
"type": "timestamp" | ||
}, | ||
"Description": {}, | ||
"LastUpdateTime": { | ||
"type": "timestamp" | ||
}, | ||
"Name": {} | ||
} | ||
} | ||
}, | ||
"NextToken": {} | ||
} | ||
} | ||
}, | ||
"ListObjectives": { | ||
"http": { | ||
"requestUri": "/objectives", | ||
"responseCode": 200 | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"MaxResults": { | ||
"location": "querystring", | ||
"locationName": "maxResults", | ||
"type": "integer" | ||
}, | ||
"NextToken": { | ||
"location": "querystring", | ||
"locationName": "nextToken" | ||
}, | ||
"ObjectiveFilter": { | ||
"type": "structure", | ||
"members": { | ||
"Domains": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"members": { | ||
"Arn": {} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"required": [ | ||
"Objectives" | ||
], | ||
"members": { | ||
"NextToken": {}, | ||
"Objectives": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"required": [ | ||
"Arn", | ||
"CreateTime", | ||
"Description", | ||
"Domain", | ||
"LastUpdateTime", | ||
"Name" | ||
], | ||
"members": { | ||
"Arn": {}, | ||
"CreateTime": { | ||
"type": "timestamp" | ||
}, | ||
"Description": {}, | ||
"Domain": { | ||
"shape": "Se" | ||
}, | ||
"LastUpdateTime": { | ||
"type": "timestamp" | ||
}, | ||
"Name": {} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"shapes": { | ||
"Se": { | ||
"type": "structure", | ||
"members": { | ||
"Arn": {}, | ||
"Name": {} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.