Skip to content

Commit

Permalink
Updates SDK to v2.411.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Feb 26, 2019
1 parent cb451b3 commit 7729619
Show file tree
Hide file tree
Showing 27 changed files with 1,544 additions and 681 deletions.
17 changes: 17 additions & 0 deletions .changes/2.411.0.json
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."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.410.0-->
<!--LATEST=2.411.0-->
<!--ENTRYINSERT-->

## 2.411.0
* feature: CUR: Adding support for Athena and new report preferences to the Cost and Usage Report API.
* feature: MediaConvert: 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.
* feature: Pinpoint: 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.

## 2.410.0
* feature: AutoScaling: Added support for passing an empty SpotMaxPrice parameter to remove a value previously set when updating an Amazon EC2 Auto Scaling group.
* feature: CostExplorer: Added metrics to normalized units.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.410.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.411.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
102 changes: 102 additions & 0 deletions apis/cur-2017-01-06.examples.json
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."
}
]
}
}
6 changes: 5 additions & 1 deletion apis/cur-2017-01-06.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@
"AdditionalArtifacts": {
"type": "list",
"member": {}
}
},
"RefreshClosedReports": {
"type": "boolean"
},
"ReportVersioning": {}
}
}
}
Expand Down
Loading

0 comments on commit 7729619

Please sign in to comment.