-
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
Feb 26, 2019
1 parent
cb451b3
commit 7729619
Showing
27 changed files
with
1,544 additions
and
681 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": "CUR", | ||
"description": "Adding support for Athena and new report preferences to the Cost and Usage Report API." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "MediaConvert", | ||
"description": "AWS Elemental MediaConvert SDK has added several features including support for: auto-rotation or user-specified rotation of 0, 90, 180, or 270 degrees; multiple output groups with DRM; ESAM XML documents to specify ad insertion points; Offline Apple HLS FairPlay content protection. " | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Pinpoint", | ||
"description": "This release adds support for the Amazon Resource Groups Tagging API to Amazon Pinpoint, which means that you can now add and manage tags for Amazon Pinpoint projects (apps), campaigns, and segments. A tag is a label that you optionally define and associate with Amazon Pinpoint resource. Tags can help you categorize and manage these types of resources in different ways, such as by purpose, owner, environment, or other criteria. For example, you can use tags to apply policies or automation, or to identify resources that are subject to certain compliance requirements. A project, campaign, or segment can have as many as 50 tags. For more information about using and managing tags in Amazon Pinpoint, see the Amazon Pinpoint Developer Guide at https://docs.aws.amazon.com/pinpoint/latest/developerguide/welcome.html. For more information about the Amazon Resource Group Tagging API, see the Amazon Resource Group Tagging API Reference at https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/Welcome.html." | ||
} | ||
] |
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": "1.0", | ||
"examples": { | ||
"DeleteReportDefinition": [ | ||
{ | ||
"input": { | ||
"ReportName": "ExampleReport" | ||
}, | ||
"comments": { | ||
"input": { | ||
}, | ||
"output": { | ||
} | ||
}, | ||
"description": "The following example deletes the AWS Cost and Usage report named ExampleReport.", | ||
"id": "to-delete-a-report", | ||
"title": "To delete the AWS Cost and Usage report named ExampleReport." | ||
} | ||
], | ||
"DescribeReportDefinitions": [ | ||
{ | ||
"input": { | ||
"MaxResults": 5 | ||
}, | ||
"output": { | ||
"ReportDefinitions": [ | ||
{ | ||
"AdditionalArtifacts": [ | ||
"QUICKSIGHT" | ||
], | ||
"AdditionalSchemaElements": [ | ||
"RESOURCES" | ||
], | ||
"Compression": "GZIP", | ||
"Format": "textORcsv", | ||
"ReportName": "ExampleReport", | ||
"S3Bucket": "example-s3-bucket", | ||
"S3Prefix": "exampleprefix", | ||
"S3Region": "us-east-1", | ||
"TimeUnit": "HOURLY" | ||
}, | ||
{ | ||
"AdditionalArtifacts": [ | ||
"QUICKSIGHT" | ||
], | ||
"AdditionalSchemaElements": [ | ||
"RESOURCES" | ||
], | ||
"Compression": "GZIP", | ||
"Format": "textORcsv", | ||
"ReportName": "ExampleReport2", | ||
"S3Bucket": "example-s3-bucket", | ||
"S3Prefix": "exampleprefix", | ||
"S3Region": "us-east-1", | ||
"TimeUnit": "HOURLY" | ||
} | ||
] | ||
}, | ||
"comments": { | ||
"input": { | ||
}, | ||
"output": { | ||
} | ||
}, | ||
"description": "The following example lists the AWS Cost and Usage reports for the account.", | ||
"id": "to-retrieve-report-definitions", | ||
"title": "To list the AWS Cost and Usage reports for the account." | ||
} | ||
], | ||
"PutReportDefinition": [ | ||
{ | ||
"input": { | ||
"ReportDefinition": { | ||
"AdditionalArtifacts": [ | ||
"REDSHIFT", | ||
"QUICKSIGHT" | ||
], | ||
"AdditionalSchemaElements": [ | ||
"RESOURCES" | ||
], | ||
"Compression": "ZIP", | ||
"Format": "textORcsv", | ||
"ReportName": "ExampleReport", | ||
"S3Bucket": "example-s3-bucket", | ||
"S3Prefix": "exampleprefix", | ||
"S3Region": "us-east-1", | ||
"TimeUnit": "DAILY" | ||
} | ||
}, | ||
"comments": { | ||
"input": { | ||
}, | ||
"output": { | ||
} | ||
}, | ||
"description": "The following example creates a AWS Cost and Usage report named ExampleReport.", | ||
"id": "to-create-a-report-definitions", | ||
"title": "To create a report named ExampleReport." | ||
} | ||
] | ||
} | ||
} |
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
Oops, something went wrong.