-
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
May 17, 2021
1 parent
8e86039
commit 49f5f4b
Showing
37 changed files
with
5,541 additions
and
1,268 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,27 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "ApplicationCostProfiler", | ||
"description": "APIs for AWS Application Cost Profiler." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "CORS", | ||
"description": "Set the CORS support flag for Athena to Athena client" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "IotDeviceAdvisor", | ||
"description": "AWS IoT Core Device Advisor is fully managed test capability for IoT devices. Device manufacturers can use Device Advisor to test their IoT devices for reliable and secure connectivity with AWS IoT." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "MediaConnect", | ||
"description": "MediaConnect now supports JPEG XS for AWS Cloud Digital Interface (AWS CDI) uncompressed workflows, allowing you to establish a bridge between your on-premises live video network and the AWS Cloud." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Neptune", | ||
"description": "Neptune support for CopyTagsToSnapshots" | ||
} | ||
] |
This file was deleted.
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 |
---|---|---|
@@ -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,243 @@ | ||
{ | ||
"version": "2.0", | ||
"metadata": { | ||
"apiVersion": "2020-09-10", | ||
"endpointPrefix": "application-cost-profiler", | ||
"jsonVersion": "1.1", | ||
"protocol": "rest-json", | ||
"serviceFullName": "AWS Application Cost Profiler", | ||
"serviceId": "ApplicationCostProfiler", | ||
"signatureVersion": "v4", | ||
"signingName": "application-cost-profiler", | ||
"uid": "AWSApplicationCostProfiler-2020-09-10" | ||
}, | ||
"operations": { | ||
"DeleteReportDefinition": { | ||
"http": { | ||
"method": "DELETE", | ||
"requestUri": "/reportDefinition/{reportId}" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"reportId" | ||
], | ||
"members": { | ||
"reportId": { | ||
"location": "uri", | ||
"locationName": "reportId" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"reportId": {} | ||
} | ||
} | ||
}, | ||
"GetReportDefinition": { | ||
"http": { | ||
"method": "GET", | ||
"requestUri": "/reportDefinition/{reportId}" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"reportId" | ||
], | ||
"members": { | ||
"reportId": { | ||
"location": "uri", | ||
"locationName": "reportId" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"required": [ | ||
"reportId", | ||
"reportDescription", | ||
"reportFrequency", | ||
"format", | ||
"destinationS3Location", | ||
"createdAt", | ||
"lastUpdated" | ||
], | ||
"members": { | ||
"reportId": {}, | ||
"reportDescription": {}, | ||
"reportFrequency": {}, | ||
"format": {}, | ||
"destinationS3Location": { | ||
"shape": "S9" | ||
}, | ||
"createdAt": { | ||
"type": "timestamp" | ||
}, | ||
"lastUpdated": { | ||
"type": "timestamp" | ||
} | ||
} | ||
} | ||
}, | ||
"ImportApplicationUsage": { | ||
"http": { | ||
"requestUri": "/importApplicationUsage" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"sourceS3Location" | ||
], | ||
"members": { | ||
"sourceS3Location": { | ||
"type": "structure", | ||
"required": [ | ||
"bucket", | ||
"key" | ||
], | ||
"members": { | ||
"bucket": {}, | ||
"key": {}, | ||
"region": {} | ||
} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"required": [ | ||
"importId" | ||
], | ||
"members": { | ||
"importId": {} | ||
} | ||
} | ||
}, | ||
"ListReportDefinitions": { | ||
"http": { | ||
"method": "GET", | ||
"requestUri": "/reportDefinition" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"nextToken": { | ||
"location": "querystring", | ||
"locationName": "nextToken" | ||
}, | ||
"maxResults": { | ||
"location": "querystring", | ||
"locationName": "maxResults", | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"reportDefinitions": { | ||
"type": "list", | ||
"member": { | ||
"type": "structure", | ||
"members": { | ||
"reportId": {}, | ||
"reportDescription": {}, | ||
"reportFrequency": {}, | ||
"format": {}, | ||
"destinationS3Location": { | ||
"shape": "S9" | ||
}, | ||
"createdAt": { | ||
"type": "timestamp" | ||
}, | ||
"lastUpdatedAt": { | ||
"type": "timestamp" | ||
} | ||
} | ||
} | ||
}, | ||
"nextToken": {} | ||
} | ||
} | ||
}, | ||
"PutReportDefinition": { | ||
"http": { | ||
"requestUri": "/reportDefinition" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"reportId", | ||
"reportDescription", | ||
"reportFrequency", | ||
"format", | ||
"destinationS3Location" | ||
], | ||
"members": { | ||
"reportId": {}, | ||
"reportDescription": {}, | ||
"reportFrequency": {}, | ||
"format": {}, | ||
"destinationS3Location": { | ||
"shape": "S9" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"reportId": {} | ||
} | ||
} | ||
}, | ||
"UpdateReportDefinition": { | ||
"http": { | ||
"method": "PUT", | ||
"requestUri": "/reportDefinition/{reportId}" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"reportId", | ||
"reportDescription", | ||
"reportFrequency", | ||
"format", | ||
"destinationS3Location" | ||
], | ||
"members": { | ||
"reportId": { | ||
"location": "uri", | ||
"locationName": "reportId" | ||
}, | ||
"reportDescription": {}, | ||
"reportFrequency": {}, | ||
"format": {}, | ||
"destinationS3Location": { | ||
"shape": "S9" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"reportId": {} | ||
} | ||
} | ||
} | ||
}, | ||
"shapes": { | ||
"S9": { | ||
"type": "structure", | ||
"required": [ | ||
"bucket", | ||
"prefix" | ||
], | ||
"members": { | ||
"bucket": {}, | ||
"prefix": {} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.