Skip to content

Commit

Permalink
Updates SDK to v2.736.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 18, 2020
1 parent e7fe765 commit 784f93b
Show file tree
Hide file tree
Showing 34 changed files with 5,757 additions and 631 deletions.
27 changes: 27 additions & 0 deletions .changes/2.736.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "CognitoIdentityServiceProvider",
"description": "Adding the option to use a service linked role to publish events to Pinpoint."
},
{
"type": "feature",
"category": "DataSync",
"description": "DataSync support for filters as input arguments to the ListTasks and ListLocations API calls."
},
{
"type": "feature",
"category": "IdentityStore",
"description": "AWS Single Sign-On (SSO) Identity Store service provides an interface to retrieve all of your users and groups. It enables entitlement management per user or group for AWS SSO and other IDPs."
},
{
"type": "feature",
"category": "SESV2",
"description": "This release includes new APIs to allow customers to add or remove email addresses from their account-level suppression list in bulk."
},
{
"type": "feature",
"category": "SecurityHub",
"description": "New details for DynamoDB tables, Elastic IP addresses, IAM policies and users, RDS DB clusters and snapshots, and Secrets Manager secrets. Added details for AWS KMS keys and RDS DB instances."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.735.0-->
<!--LATEST=2.736.0-->
<!--ENTRYINSERT-->

## 2.736.0
* feature: CognitoIdentityServiceProvider: Adding the option to use a service linked role to publish events to Pinpoint.
* feature: DataSync: DataSync support for filters as input arguments to the ListTasks and ListLocations API calls.
* feature: IdentityStore: AWS Single Sign-On (SSO) Identity Store service provides an interface to retrieve all of your users and groups. It enables entitlement management per user or group for AWS SSO and other IDPs.
* feature: SESV2: This release includes new APIs to allow customers to add or remove email addresses from their account-level suppression list in bulk.
* feature: SecurityHub: New details for DynamoDB tables, Elastic IP addresses, IAM policies and users, RDS DB clusters and snapshots, and Secrets Manager secrets. Added details for AWS KMS keys and RDS DB instances.

## 2.735.0
* feature: ACM: ACM provides support for the new Private CA feature Cross-account CA sharing. ACM users can issue certificates signed by a private CA belonging to another account where the CA was shared with them.
* feature: ACMPCA: ACM Private CA is launching cross-account support. This allows customers to share their private CAs with other accounts, AWS Organizations, and organizational units to issue end-entity certificates.
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.735.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.736.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
20 changes: 10 additions & 10 deletions apis/codebuild-2016-10-06.normal.json

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions apis/cognito-idp-2016-04-18.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -3444,13 +3444,9 @@
},
"S6m": {
"type": "structure",
"required": [
"ApplicationId",
"RoleArn",
"ExternalId"
],
"members": {
"ApplicationId": {},
"ApplicationArn": {},
"RoleArn": {},
"ExternalId": {},
"UserDataShared": {
Expand Down
9 changes: 4 additions & 5 deletions apis/cognito-idp-2016-04-18.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -4927,16 +4927,15 @@
},
"AnalyticsConfigurationType": {
"type": "structure",
"required": [
"ApplicationId",
"RoleArn",
"ExternalId"
],
"members": {
"ApplicationId": {
"shape": "HexStringType",
"documentation": "<p>The application ID for an Amazon Pinpoint application.</p>"
},
"ApplicationArn": {
"shape": "ArnType",
"documentation": "<p>The Amazon Resource Name (ARN) of an Amazon Pinpoint project. You can use the Amazon Pinpoint project for Pinpoint integration with the chosen User Pool Client. Amazon Cognito publishes events to the pinpoint project declared by the app ARN.</p>"
},
"RoleArn": {
"shape": "ArnType",
"documentation": "<p>The ARN of an IAM role that authorizes Amazon Cognito to publish events to Amazon Pinpoint analytics.</p>"
Expand Down
44 changes: 42 additions & 2 deletions apis/datasync-2018-11-09.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,25 @@
"MaxResults": {
"type": "integer"
},
"NextToken": {}
"NextToken": {},
"Filters": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Name",
"Values",
"Operator"
],
"members": {
"Name": {},
"Values": {
"shape": "S3o"
},
"Operator": {}
}
}
}
}
},
"output": {
Expand Down Expand Up @@ -747,7 +765,25 @@
"MaxResults": {
"type": "integer"
},
"NextToken": {}
"NextToken": {},
"Filters": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Name",
"Values",
"Operator"
],
"members": {
"Name": {},
"Values": {
"shape": "S3o"
},
"Operator": {}
}
}
}
}
},
"output": {
Expand Down Expand Up @@ -993,6 +1029,10 @@
"members": {
"ScheduleExpression": {}
}
},
"S3o": {
"type": "list",
"member": {}
}
}
}
98 changes: 98 additions & 0 deletions apis/datasync-2018-11-09.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1704,6 +1704,12 @@
"FIPS"
]
},
"FilterAttributeValue": {
"type": "string",
"max": 255,
"min": 1,
"pattern": "^[0-9a-zA-Z_\\ \\-\\:\\*\\.\\\\/\\?-]*$"
},
"FilterList": {
"type": "list",
"member": {
Expand Down Expand Up @@ -1739,6 +1745,12 @@
"max": 409600,
"pattern": "^[^\\x00]+$"
},
"FilterValues": {
"type": "list",
"member": {
"shape": "FilterAttributeValue"
}
},
"FsxFilesystemArn": {
"type": "string",
"max": 128,
Expand Down Expand Up @@ -1809,6 +1821,9 @@
"NextToken": {
"shape": "NextToken",
"documentation": "<p>An opaque string that indicates the position at which to begin the next list of locations.</p>"
},
"Filters": {
"shape": "LocationFilters"
}
},
"documentation": "<p>ListLocationsRequest</p>"
Expand Down Expand Up @@ -1904,6 +1919,9 @@
"NextToken": {
"shape": "NextToken",
"documentation": "<p>An opaque string that indicates the position at which to begin the next list of tasks.</p>"
},
"Filters": {
"shape": "TaskFilters"
}
},
"documentation": "<p>ListTasksRequest</p>"
Expand All @@ -1927,6 +1945,39 @@
"max": 128,
"pattern": "^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$"
},
"LocationFilter": {
"type": "structure",
"required": [
"Name",
"Values",
"Operator"
],
"members": {
"Name": {
"shape": "LocationFilterName"
},
"Values": {
"shape": "FilterValues"
},
"Operator": {
"shape": "Operator"
}
}
},
"LocationFilterName": {
"type": "string",
"enum": [
"LocationUri",
"LocationType",
"CreationTime"
]
},
"LocationFilters": {
"type": "list",
"member": {
"shape": "LocationFilter"
}
},
"LocationList": {
"type": "list",
"member": {
Expand Down Expand Up @@ -2056,6 +2107,21 @@
},
"documentation": "<p>A list of Amazon Resource Names (ARNs) of agents to use for a Network File System (NFS) location.</p>"
},
"Operator": {
"type": "string",
"enum": [
"Equals",
"NotEquals",
"In",
"LessThanOrEqual",
"LessThan",
"GreaterThanOrEqual",
"GreaterThan",
"Contains",
"NotContains",
"BeginsWith"
]
},
"Options": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -2463,6 +2529,38 @@
"ERROR"
]
},
"TaskFilter": {
"type": "structure",
"required": [
"Name",
"Values",
"Operator"
],
"members": {
"Name": {
"shape": "TaskFilterName"
},
"Values": {
"shape": "FilterValues"
},
"Operator": {
"shape": "Operator"
}
}
},
"TaskFilterName": {
"type": "string",
"enum": [
"LocationId",
"CreationTime"
]
},
"TaskFilters": {
"type": "list",
"member": {
"shape": "TaskFilter"
}
},
"TaskList": {
"type": "list",
"member": {
Expand Down
5 changes: 5 additions & 0 deletions apis/identitystore-2020-06-15.examples.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}
Loading

0 comments on commit 784f93b

Please sign in to comment.