-
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
Jan 16, 2017
1 parent
ad0ab1f
commit be97613
Showing
32 changed files
with
2,214 additions
and
708 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,12 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "CUR", | ||
"description": "The AWS Cost and Usage Report Service API allows you to enable and disable the Cost & Usage report, as well as modify the report name, the data granularity, and the delivery preferences." | ||
}, | ||
{ | ||
"type": "bugfix", | ||
"category": "DynamoDB.DocumentClient", | ||
"description": "Allows objects created using Object.create(null) to be properly serialized by the DDB document client." | ||
} | ||
] |
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
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,102 @@ | ||
{ | ||
"version": "2.0", | ||
"metadata": { | ||
"apiVersion": "2017-01-06", | ||
"endpointPrefix": "cur", | ||
"jsonVersion": "1.1", | ||
"protocol": "json", | ||
"serviceFullName": "AWS Cost and Usage Report Service", | ||
"signatureVersion": "v4", | ||
"signingName": "cur", | ||
"targetPrefix": "AWSOrigamiServiceGatewayService", | ||
"uid": "cur-2017-01-06" | ||
}, | ||
"operations": { | ||
"DeleteReportDefinition": { | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"ReportName": {} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"ResponseMessage": {} | ||
} | ||
} | ||
}, | ||
"DescribeReportDefinitions": { | ||
"input": { | ||
"type": "structure", | ||
"members": { | ||
"MaxResults": { | ||
"type": "integer" | ||
}, | ||
"NextToken": {} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"ReportDefinitions": { | ||
"type": "list", | ||
"member": { | ||
"shape": "Sa" | ||
} | ||
}, | ||
"NextToken": {} | ||
} | ||
} | ||
}, | ||
"PutReportDefinition": { | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"ReportDefinition" | ||
], | ||
"members": { | ||
"ReportDefinition": { | ||
"shape": "Sa" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": {} | ||
} | ||
} | ||
}, | ||
"shapes": { | ||
"Sa": { | ||
"type": "structure", | ||
"required": [ | ||
"ReportName", | ||
"TimeUnit", | ||
"Format", | ||
"Compression", | ||
"AdditionalSchemaElements", | ||
"S3Bucket", | ||
"S3Prefix", | ||
"S3Region" | ||
], | ||
"members": { | ||
"ReportName": {}, | ||
"TimeUnit": {}, | ||
"Format": {}, | ||
"Compression": {}, | ||
"AdditionalSchemaElements": { | ||
"type": "list", | ||
"member": {} | ||
}, | ||
"S3Bucket": {}, | ||
"S3Prefix": {}, | ||
"S3Region": {}, | ||
"AdditionalArtifacts": { | ||
"type": "list", | ||
"member": {} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.