Skip to content

Commit

Permalink
Updates SDK to v2.562.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 1, 2019
1 parent 8123593 commit 6da8218
Show file tree
Hide file tree
Showing 19 changed files with 3,906 additions and 770 deletions.
17 changes: 17 additions & 0 deletions .changes/2.562.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "CloudTrail",
"description": "This release adds two new APIs, GetTrail and ListTrails, and support for adding tags when you create a trail by using a new TagsList parameter on CreateTrail operations."
},
{
"type": "feature",
"category": "DMS",
"description": "This release contains task timeline attributes in replication task statistics. This release also adds a note to the documentation for the CdcStartPosition task request parameter. This note describes how to enable the use of native CDC start points for a PostgreSQL source by setting the new slotName extra connection attribute on the source endpoint to the name of an existing logical replication slot."
},
{
"type": "feature",
"category": "Pinpoint",
"description": "This release of the Amazon Pinpoint API introduces support for using and managing journeys, and querying analytics data for journeys."
}
]
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.561.0-->
<!--LATEST=2.562.0-->
<!--ENTRYINSERT-->

## 2.562.0
* feature: CloudTrail: This release adds two new APIs, GetTrail and ListTrails, and support for adding tags when you create a trail by using a new TagsList parameter on CreateTrail operations.
* feature: DMS: This release contains task timeline attributes in replication task statistics. This release also adds a note to the documentation for the CdcStartPosition task request parameter. This note describes how to enable the use of native CDC start points for a PostgreSQL source by setting the new slotName extra connection attribute on the source endpoint to the name of an existing logical replication slot.
* feature: Pinpoint: This release of the Amazon Pinpoint API introduces support for using and managing journeys, and querying analytics data for journeys.

## 2.561.0
* feature: Amplify: This release of AWS Amplify Console introduces support for Web Previews. This feature allows user to create ephemeral branch deployments from pull request submissions made to a connected repository. A pull-request preview deploys every pull request made to your Git repository to a unique preview URL.
* feature: S3: S3 Inventory now supports a new field 'IntelligentTieringAccessTier' that reports the access tier (frequent or infrequent) of objects stored in Intelligent-Tiering storage class.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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.561.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.562.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
112 changes: 82 additions & 30 deletions apis/cloudtrail-2013-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
"KmsKeyId": {},
"IsOrganizationTrail": {
"type": "boolean"
},
"TagsList": {
"shape": "S3"
}
}
},
Expand Down Expand Up @@ -126,36 +129,7 @@
"trailList": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Name": {},
"S3BucketName": {},
"S3KeyPrefix": {},
"SnsTopicName": {
"deprecated": true
},
"SnsTopicARN": {},
"IncludeGlobalServiceEvents": {
"type": "boolean"
},
"IsMultiRegionTrail": {
"type": "boolean"
},
"HomeRegion": {},
"TrailARN": {},
"LogFileValidationEnabled": {
"type": "boolean"
},
"CloudWatchLogsLogGroupArn": {},
"CloudWatchLogsRoleArn": {},
"KmsKeyId": {},
"HasCustomEventSelectors": {
"type": "boolean"
},
"IsOrganizationTrail": {
"type": "boolean"
}
}
"shape": "Sf"
}
}
}
Expand Down Expand Up @@ -183,6 +157,26 @@
},
"idempotent": true
},
"GetTrail": {
"input": {
"type": "structure",
"required": [
"Name"
],
"members": {
"Name": {}
}
},
"output": {
"type": "structure",
"members": {
"Trail": {
"shape": "Sf"
}
}
},
"idempotent": true
},
"GetTrailStatus": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -304,6 +298,32 @@
},
"idempotent": true
},
"ListTrails": {
"input": {
"type": "structure",
"members": {
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"Trails": {
"type": "list",
"member": {
"type": "structure",
"members": {
"TrailARN": {},
"Name": {},
"HomeRegion": {}
}
}
},
"NextToken": {}
}
},
"idempotent": true
},
"LookupEvents": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -519,6 +539,38 @@
}
}
},
"Sf": {
"type": "structure",
"members": {
"Name": {},
"S3BucketName": {},
"S3KeyPrefix": {},
"SnsTopicName": {
"deprecated": true
},
"SnsTopicARN": {},
"IncludeGlobalServiceEvents": {
"type": "boolean"
},
"IsMultiRegionTrail": {
"type": "boolean"
},
"HomeRegion": {},
"TrailARN": {},
"LogFileValidationEnabled": {
"type": "boolean"
},
"CloudWatchLogsLogGroupArn": {},
"CloudWatchLogsRoleArn": {},
"KmsKeyId": {},
"HasCustomEventSelectors": {
"type": "boolean"
},
"IsOrganizationTrail": {
"type": "boolean"
}
}
},
"Si": {
"type": "list",
"member": {
Expand Down
Loading

0 comments on commit 6da8218

Please sign in to comment.