Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.34.7 #3491

Merged
merged 1 commit into from Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
Release v1.34.7 (2020-08-18)
===

### Service Client Updates
* `service/codebuild`: Updates service documentation
* Documentation updates for codebuild
* `service/cognito-idp`: Updates service API and documentation
* `service/datasync`: Updates service API and documentation
* `service/identitystore`: Adds new service
* `service/securityhub`: Updates service API and documentation
* `service/sesv2`: Updates service API, documentation, and paginators

Release v1.34.6 (2020-08-17)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.34.6"
const SDKVersion = "1.34.7"
20 changes: 10 additions & 10 deletions models/apis/codebuild/2016-10-06/docs-2.json

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions models/apis/cognito-idp/2016-04-18/api-2.json
Expand Up @@ -2477,13 +2477,9 @@
},
"AnalyticsConfigurationType":{
"type":"structure",
"required":[
"ApplicationId",
"RoleArn",
"ExternalId"
],
"members":{
"ApplicationId":{"shape":"HexStringType"},
"ApplicationArn":{"shape":"ArnType"},
"RoleArn":{"shape":"ArnType"},
"ExternalId":{"shape":"StringType"},
"UserDataShared":{"shape":"BooleanType"}
Expand Down
1 change: 1 addition & 0 deletions models/apis/cognito-idp/2016-04-18/docs-2.json
Expand Up @@ -472,6 +472,7 @@
"ArnType": {
"base": null,
"refs": {
"AnalyticsConfigurationType$ApplicationArn": "<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>",
"AnalyticsConfigurationType$RoleArn": "<p>The ARN of an IAM role that authorizes Amazon Cognito to publish events to Amazon Pinpoint analytics.</p>",
"CreateGroupRequest$RoleArn": "<p>The role ARN for the group.</p>",
"CreateUserImportJobRequest$CloudWatchLogsRoleArn": "<p>The role ARN for the Amazon CloudWatch Logging role for the user import job.</p>",
Expand Down
80 changes: 78 additions & 2 deletions models/apis/datasync/2018-11-09/api-2.json
Expand Up @@ -924,6 +924,12 @@
"FIPS"
]
},
"FilterAttributeValue":{
"type":"string",
"max":255,
"min":1,
"pattern":"^[0-9a-zA-Z_\\ \\-\\:\\*\\.\\\\/\\?-]*$"
},
"FilterList":{
"type":"list",
"member":{"shape":"FilterRule"},
Expand All @@ -948,6 +954,10 @@
"max":409600,
"pattern":"^[^\\x00]+$"
},
"FilterValues":{
"type":"list",
"member":{"shape":"FilterAttributeValue"}
},
"FsxFilesystemArn":{
"type":"string",
"max":128,
Expand Down Expand Up @@ -1013,7 +1023,8 @@
"type":"structure",
"members":{
"MaxResults":{"shape":"MaxResults"},
"NextToken":{"shape":"NextToken"}
"NextToken":{"shape":"NextToken"},
"Filters":{"shape":"LocationFilters"}
}
},
"ListLocationsResponse":{
Expand Down Expand Up @@ -1058,7 +1069,8 @@
"type":"structure",
"members":{
"MaxResults":{"shape":"MaxResults"},
"NextToken":{"shape":"NextToken"}
"NextToken":{"shape":"NextToken"},
"Filters":{"shape":"TaskFilters"}
}
},
"ListTasksResponse":{
Expand All @@ -1073,6 +1085,31 @@
"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":{"shape":"LocationListEntry"}
Expand Down Expand Up @@ -1183,6 +1220,21 @@
"AgentArns":{"shape":"AgentArnList"}
}
},
"Operator":{
"type":"string",
"enum":[
"Equals",
"NotEquals",
"In",
"LessThanOrEqual",
"LessThan",
"GreaterThanOrEqual",
"GreaterThan",
"Contains",
"NotContains",
"BeginsWith"
]
},
"Options":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1450,6 +1502,30 @@
"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":{"shape":"TaskListEntry"}
Expand Down
56 changes: 56 additions & 0 deletions models/apis/datasync/2018-11-09/docs-2.json
Expand Up @@ -372,6 +372,12 @@
"DescribeAgentResponse$EndpointType": "<p>The type of endpoint that your agent is connected to. If the endpoint is a VPC endpoint, the agent is not accessible over the public internet. </p>"
}
},
"FilterAttributeValue": {
"base": null,
"refs": {
"FilterValues$member": null
}
},
"FilterList": {
"base": null,
"refs": {
Expand Down Expand Up @@ -401,6 +407,13 @@
"FilterRule$Value": "<p>A single filter string that consists of the patterns to include or exclude. The patterns are delimited by \"|\" (that is, a pipe), for example: <code>/folder1|/folder2</code> </p> <p> </p>"
}
},
"FilterValues": {
"base": null,
"refs": {
"LocationFilter$Values": null,
"TaskFilter$Values": null
}
},
"FsxFilesystemArn": {
"base": null,
"refs": {
Expand Down Expand Up @@ -528,6 +541,24 @@
"LocationListEntry$LocationArn": "<p>The Amazon Resource Name (ARN) of the location. For Network File System (NFS) or Amazon EFS, the location is the export path. For Amazon S3, the location is the prefix path that you want to mount and use as the root of the location.</p>"
}
},
"LocationFilter": {
"base": null,
"refs": {
"LocationFilters$member": null
}
},
"LocationFilterName": {
"base": null,
"refs": {
"LocationFilter$Name": null
}
},
"LocationFilters": {
"base": null,
"refs": {
"ListLocationsRequest$Filters": null
}
},
"LocationList": {
"base": null,
"refs": {
Expand Down Expand Up @@ -663,6 +694,13 @@
"DescribeLocationNfsResponse$OnPremConfig": null
}
},
"Operator": {
"base": null,
"refs": {
"LocationFilter$Operator": null,
"TaskFilter$Operator": null
}
},
"Options": {
"base": "<p>Represents the options that are available to control the behavior of a <a>StartTaskExecution</a> operation. Behavior includes preserving metadata such as user ID (UID), group ID (GID), and file permissions, and also overwriting files in the destination, data integrity verification, and so on.</p> <p>A task has a set of default options associated with it. If you don't specify an option in <a>StartTaskExecution</a>, the default value is used. You can override the defaults options on each task execution by specifying an overriding <code>Options</code> value to <a>StartTaskExecution</a>.</p>",
"refs": {
Expand Down Expand Up @@ -933,6 +971,24 @@
"TaskExecutionListEntry$Status": "<p>The status of a task execution.</p>"
}
},
"TaskFilter": {
"base": null,
"refs": {
"TaskFilters$member": null
}
},
"TaskFilterName": {
"base": null,
"refs": {
"TaskFilter$Name": null
}
},
"TaskFilters": {
"base": null,
"refs": {
"ListTasksRequest$Filters": null
}
},
"TaskList": {
"base": null,
"refs": {
Expand Down