From f5dfe47a0c84ef9c15a066223ee902e04430e9cd Mon Sep 17 00:00:00 2001 From: awssdkgo Date: Thu, 14 Jan 2021 19:10:30 +0000 Subject: [PATCH] Release v1.36.27 (2021-01-14) === ### Service Client Updates * `service/cognito-identity`: Updates service API and documentation * `service/pinpoint`: Updates service API and documentation * Customers can create segments using 5 new filters. Filters can check for the presence of a substring in attributes and can perform time-based comparisons formatted as ISO_INSTANT datetimes. * `service/s3control`: Updates service API and documentation * Amazon S3 Batch Operations now supports restoring objects from the S3 Intelligent-Tiering Archive Access and Deep Archive Access tiers. * `service/sagemaker`: Updates service API and documentation * This feature allows customers to enable/disable model caching on Multi-Model endpoints. --- CHANGELOG.md | 12 + aws/version.go | 2 +- .../cognito-identity/2014-06-30/api-2.json | 94 +- .../cognito-identity/2014-06-30/docs-2.json | 81 +- models/apis/pinpoint/2016-12-01/api-2.json | 7 +- models/apis/pinpoint/2016-12-01/docs-2.json | 2 +- models/apis/s3control/2018-08-20/api-2.json | 5 +- models/apis/s3control/2018-08-20/docs-2.json | 56 +- models/apis/sagemaker/2017-07-24/api-2.json | 16 +- models/apis/sagemaker/2017-07-24/docs-2.json | 30 +- service/cognitoidentity/api.go | 464 +++++++++- .../cognitoidentityiface/interface.go | 8 + service/pinpoint/api.go | 23 +- service/s3control/api.go | 108 ++- service/sagemaker/api.go | 851 ++++++++++++------ 15 files changed, 1373 insertions(+), 386 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6645d991d42..ceb10384b37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +Release v1.36.27 (2021-01-14) +=== + +### Service Client Updates +* `service/cognito-identity`: Updates service API and documentation +* `service/pinpoint`: Updates service API and documentation + * Customers can create segments using 5 new filters. Filters can check for the presence of a substring in attributes and can perform time-based comparisons formatted as ISO_INSTANT datetimes. +* `service/s3control`: Updates service API and documentation + * Amazon S3 Batch Operations now supports restoring objects from the S3 Intelligent-Tiering Archive Access and Deep Archive Access tiers. +* `service/sagemaker`: Updates service API and documentation + * This feature allows customers to enable/disable model caching on Multi-Model endpoints. + Release v1.36.26 (2021-01-13) === diff --git a/aws/version.go b/aws/version.go index e84fdecfa07..9f4b2453d4e 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.36.26" +const SDKVersion = "1.36.27" diff --git a/models/apis/cognito-identity/2014-06-30/api-2.json b/models/apis/cognito-identity/2014-06-30/api-2.json index 5e9ed8b7bde..54fd0c97848 100644 --- a/models/apis/cognito-identity/2014-06-30/api-2.json +++ b/models/apis/cognito-identity/2014-06-30/api-2.json @@ -184,6 +184,22 @@ {"shape":"DeveloperUserAlreadyRegisteredException"} ] }, + "GetPrincipalTagAttributeMap":{ + "name":"GetPrincipalTagAttributeMap", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetPrincipalTagAttributeMapInput"}, + "output":{"shape":"GetPrincipalTagAttributeMapResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"NotAuthorizedException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalErrorException"} + ] + }, "ListIdentities":{ "name":"ListIdentities", "http":{ @@ -283,6 +299,22 @@ {"shape":"ConcurrentModificationException"} ] }, + "SetPrincipalTagAttributeMap":{ + "name":"SetPrincipalTagAttributeMap", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"SetPrincipalTagAttributeMapInput"}, + "output":{"shape":"SetPrincipalTagAttributeMapResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"NotAuthorizedException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalErrorException"} + ] + }, "TagResource":{ "name":"TagResource", "http":{ @@ -590,6 +622,7 @@ "IdentityPoolId":{"shape":"IdentityPoolId"}, "IdentityId":{"shape":"IdentityId"}, "Logins":{"shape":"LoginsMap"}, + "PrincipalTags":{"shape":"PrincipalTags"}, "TokenDuration":{"shape":"TokenDuration"} } }, @@ -615,6 +648,26 @@ "Token":{"shape":"OIDCToken"} } }, + "GetPrincipalTagAttributeMapInput":{ + "type":"structure", + "required":[ + "IdentityPoolId", + "IdentityProviderName" + ], + "members":{ + "IdentityPoolId":{"shape":"IdentityPoolId"}, + "IdentityProviderName":{"shape":"IdentityProviderName"} + } + }, + "GetPrincipalTagAttributeMapResponse":{ + "type":"structure", + "members":{ + "IdentityPoolId":{"shape":"IdentityPoolId"}, + "IdentityProviderName":{"shape":"IdentityProviderName"}, + "UseDefaults":{"shape":"UseDefaults"}, + "PrincipalTags":{"shape":"PrincipalTags"} + } + }, "HideDisabled":{"type":"boolean"}, "IdentitiesList":{ "type":"list", @@ -892,6 +945,22 @@ "min":1, "pattern":"[\\S]+" }, + "PrincipalTagID":{ + "type":"string", + "max":128, + "min":1 + }, + "PrincipalTagValue":{ + "type":"string", + "max":256, + "min":1 + }, + "PrincipalTags":{ + "type":"map", + "key":{"shape":"PrincipalTagID"}, + "value":{"shape":"PrincipalTagValue"}, + "max":50 + }, "QueryLimit":{ "type":"integer", "max":60, @@ -970,6 +1039,28 @@ "RoleMappings":{"shape":"RoleMappingMap"} } }, + "SetPrincipalTagAttributeMapInput":{ + "type":"structure", + "required":[ + "IdentityPoolId", + "IdentityProviderName" + ], + "members":{ + "IdentityPoolId":{"shape":"IdentityPoolId"}, + "IdentityProviderName":{"shape":"IdentityProviderName"}, + "UseDefaults":{"shape":"UseDefaults"}, + "PrincipalTags":{"shape":"PrincipalTags"} + } + }, + "SetPrincipalTagAttributeMapResponse":{ + "type":"structure", + "members":{ + "IdentityPoolId":{"shape":"IdentityPoolId"}, + "IdentityProviderName":{"shape":"IdentityProviderName"}, + "UseDefaults":{"shape":"UseDefaults"}, + "PrincipalTags":{"shape":"PrincipalTags"} + } + }, "String":{"type":"string"}, "TagKeysType":{ "type":"string", @@ -1064,6 +1155,7 @@ "type":"structure", "members":{ } - } + }, + "UseDefaults":{"type":"boolean"} } } diff --git a/models/apis/cognito-identity/2014-06-30/docs-2.json b/models/apis/cognito-identity/2014-06-30/docs-2.json index 12915162c92..b61b6af9500 100644 --- a/models/apis/cognito-identity/2014-06-30/docs-2.json +++ b/models/apis/cognito-identity/2014-06-30/docs-2.json @@ -10,18 +10,20 @@ "GetCredentialsForIdentity": "

Returns credentials for the provided identity ID. Any provided logins will be validated against supported login providers. If the token is for cognito-identity.amazonaws.com, it will be passed through to AWS Security Token Service with the appropriate role for the token.

This is a public API. You do not need any credentials to call this API.

", "GetId": "

Generates (or retrieves) a Cognito ID. Supplying multiple logins will create an implicit linked account.

This is a public API. You do not need any credentials to call this API.

", "GetIdentityPoolRoles": "

Gets the roles for an identity pool.

You must use AWS Developer credentials to call this API.

", - "GetOpenIdToken": "

Gets an OpenID token, using a known Cognito ID. This known Cognito ID is returned by GetId. You can optionally add additional logins for the identity. Supplying multiple logins creates an implicit link.

The OpenId token is valid for 10 minutes.

This is a public API. You do not need any credentials to call this API.

", + "GetOpenIdToken": "

Gets an OpenID token, using a known Cognito ID. This known Cognito ID is returned by GetId. You can optionally add additional logins for the identity. Supplying multiple logins creates an implicit link.

The OpenID token is valid for 10 minutes.

This is a public API. You do not need any credentials to call this API.

", "GetOpenIdTokenForDeveloperIdentity": "

Registers (or retrieves) a Cognito IdentityId and an OpenID Connect token for a user authenticated by your backend authentication process. Supplying multiple logins will create an implicit linked account. You can only specify one developer provider as part of the Logins map, which is linked to the identity pool. The developer provider is the \"domain\" by which Cognito will refer to your users.

You can use GetOpenIdTokenForDeveloperIdentity to create a new identity and to link new logins (that is, user credentials issued by a public provider or developer provider) to an existing identity. When you want to create a new identity, the IdentityId should be null. When you want to associate a new login with an existing authenticated/unauthenticated identity, you can do so by providing the existing IdentityId. This API will create the identity in the specified IdentityPoolId.

You must use AWS Developer credentials to call this API.

", + "GetPrincipalTagAttributeMap": "

Use GetPrincipalTagAttributeMap to list all mappings between PrincipalTags and user attributes.

", "ListIdentities": "

Lists the identities in an identity pool.

You must use AWS Developer credentials to call this API.

", "ListIdentityPools": "

Lists all of the Cognito identity pools registered for your account.

You must use AWS Developer credentials to call this API.

", "ListTagsForResource": "

Lists the tags that are assigned to an Amazon Cognito identity pool.

A tag is a label that you can apply to identity pools to categorize and manage them in different ways, such as by purpose, owner, environment, or other criteria.

You can use this action up to 10 times per second, per account.

", "LookupDeveloperIdentity": "

Retrieves the IdentityID associated with a DeveloperUserIdentifier or the list of DeveloperUserIdentifier values associated with an IdentityId for an existing identity. Either IdentityID or DeveloperUserIdentifier must not be null. If you supply only one of these values, the other value will be searched in the database and returned as a part of the response. If you supply both, DeveloperUserIdentifier will be matched against IdentityID. If the values are verified against the database, the response returns both values and is the same as the request. Otherwise a ResourceConflictException is thrown.

LookupDeveloperIdentity is intended for low-throughput control plane operations: for example, to enable customer service to locate an identity ID by username. If you are using it for higher-volume operations such as user authentication, your requests are likely to be throttled. GetOpenIdTokenForDeveloperIdentity is a better option for higher-volume operations for user authentication.

You must use AWS Developer credentials to call this API.

", "MergeDeveloperIdentities": "

Merges two users having different IdentityIds, existing in the same identity pool, and identified by the same developer provider. You can use this action to request that discrete users be merged and identified as a single user in the Cognito environment. Cognito associates the given source user (SourceUserIdentifier) with the IdentityId of the DestinationUserIdentifier. Only developer-authenticated users can be merged. If the users to be merged are associated with the same public provider, but as two different users, an exception will be thrown.

The number of linked logins is limited to 20. So, the number of linked logins for the source user, SourceUserIdentifier, and the destination user, DestinationUserIdentifier, together should not be larger than 20. Otherwise, an exception will be thrown.

You must use AWS Developer credentials to call this API.

", "SetIdentityPoolRoles": "

Sets the roles for an identity pool. These roles are used when making calls to GetCredentialsForIdentity action.

You must use AWS Developer credentials to call this API.

", - "TagResource": "

Assigns a set of tags to an Amazon Cognito identity pool. A tag is a label that you can use to categorize and manage identity pools in different ways, such as by purpose, owner, environment, or other criteria.

Each tag consists of a key and value, both of which you define. A key is a general category for more specific values. For example, if you have two versions of an identity pool, one for testing and another for production, you might assign an Environment tag key to both identity pools. The value of this key might be Test for one identity pool and Production for the other.

Tags are useful for cost tracking and access control. You can activate your tags so that they appear on the Billing and Cost Management console, where you can track the costs associated with your identity pools. In an IAM policy, you can constrain permissions for identity pools based on specific tags or tag values.

You can use this action up to 5 times per second, per account. An identity pool can have as many as 50 tags.

", + "SetPrincipalTagAttributeMap": "

You can use this operation to use default (username and clientID) attribute or custom attribute mappings.

", + "TagResource": "

Assigns a set of tags to the specified Amazon Cognito identity pool. A tag is a label that you can use to categorize and manage identity pools in different ways, such as by purpose, owner, environment, or other criteria.

Each tag consists of a key and value, both of which you define. A key is a general category for more specific values. For example, if you have two versions of an identity pool, one for testing and another for production, you might assign an Environment tag key to both identity pools. The value of this key might be Test for one identity pool and Production for the other.

Tags are useful for cost tracking and access control. You can activate your tags so that they appear on the Billing and Cost Management console, where you can track the costs associated with your identity pools. In an IAM policy, you can constrain permissions for identity pools based on specific tags or tag values.

You can use this action up to 5 times per second, per account. An identity pool can have as many as 50 tags.

", "UnlinkDeveloperIdentity": "

Unlinks a DeveloperUserIdentifier from an existing identity. Unlinked developer users will be considered new identities next time they are seen. If, for a given Cognito identity, you remove all federated identities as well as the developer user identifier, the Cognito identity becomes inaccessible.

You must use AWS Developer credentials to call this API.

", "UnlinkIdentity": "

Unlinks a federated identity from an existing account. Unlinked logins will be considered new identities next time they are seen. Removing the last linked login will make this identity inaccessible.

This is a public API. You do not need any credentials to call this API.

", - "UntagResource": "

Removes the specified tags from an Amazon Cognito identity pool. You can use this action up to 5 times per second, per account

", + "UntagResource": "

Removes the specified tags from the specified Amazon Cognito identity pool. You can use this action up to 5 times per second, per account

", "UpdateIdentityPool": "

Updates an identity pool.

You must use AWS Developer credentials to call this API.

" }, "shapes": { @@ -34,8 +36,8 @@ "OIDCProviderList$member": null, "RolesMap$value": null, "SAMLProviderList$member": null, - "TagResourceInput$ResourceArn": "

The Amazon Resource Name (ARN) of the identity pool to assign the tags to.

", - "UntagResourceInput$ResourceArn": "

The Amazon Resource Name (ARN) of the identity pool that the tags are assigned to.

" + "TagResourceInput$ResourceArn": "

The Amazon Resource Name (ARN) of the identity pool.

", + "UntagResourceInput$ResourceArn": "

The Amazon Resource Name (ARN) of the identity pool.

" } }, "AccessKeyString": { @@ -246,6 +248,16 @@ "refs": { } }, + "GetPrincipalTagAttributeMapInput": { + "base": null, + "refs": { + } + }, + "GetPrincipalTagAttributeMapResponse": { + "base": null, + "refs": { + } + }, "HideDisabled": { "base": null, "refs": { @@ -305,6 +317,8 @@ "GetIdentityPoolRolesInput$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", "GetIdentityPoolRolesResponse$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", "GetOpenIdTokenForDeveloperIdentityInput$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", + "GetPrincipalTagAttributeMapInput$IdentityPoolId": "

You can use this operation to get the ID of the Identity Pool you setup attribute mappings for.

", + "GetPrincipalTagAttributeMapResponse$IdentityPoolId": "

You can use this operation to get the ID of the Identity Pool you setup attribute mappings for.

", "IdentityPool$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", "IdentityPoolShortDescription$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", "ListIdentitiesInput$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", @@ -312,6 +326,8 @@ "LookupDeveloperIdentityInput$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", "MergeDeveloperIdentitiesInput$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", "SetIdentityPoolRolesInput$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

", + "SetPrincipalTagAttributeMapInput$IdentityPoolId": "

The ID of the Identity Pool you want to set attribute mappings for.

", + "SetPrincipalTagAttributeMapResponse$IdentityPoolId": "

The ID of the Identity Pool you want to set attribute mappings for.

", "UnlinkDeveloperIdentityInput$IdentityPoolId": "

An identity pool ID in the format REGION:GUID.

" } }, @@ -366,10 +382,14 @@ "IdentityProviderName": { "base": null, "refs": { + "GetPrincipalTagAttributeMapInput$IdentityProviderName": "

You can use this operation to get the provider name.

", + "GetPrincipalTagAttributeMapResponse$IdentityProviderName": "

You can use this operation to get the provider name.

", "IdentityProviders$key": null, "LoginsList$member": null, "LoginsMap$key": null, - "RoleMappingMap$key": null + "RoleMappingMap$key": null, + "SetPrincipalTagAttributeMapInput$IdentityProviderName": "

The provider name you want to use for attribute mappings.

", + "SetPrincipalTagAttributeMapResponse$IdentityProviderName": "

The provider name you want to use for attribute mappings.

" } }, "IdentityProviderToken": { @@ -445,10 +465,10 @@ "LoginsMap": { "base": null, "refs": { - "GetCredentialsForIdentityInput$Logins": "

A set of optional name-value pairs that map provider names to provider tokens. The name-value pair will follow the syntax \"provider_name\": \"provider_user_identifier\".

Logins should not be specified when trying to get credentials for an unauthenticated identity.

The Logins parameter is required when using identities associated with external identity providers such as FaceBook. For examples of Logins maps, see the code examples in the External Identity Providers section of the Amazon Cognito Developer Guide.

", + "GetCredentialsForIdentityInput$Logins": "

A set of optional name-value pairs that map provider names to provider tokens. The name-value pair will follow the syntax \"provider_name\": \"provider_user_identifier\".

Logins should not be specified when trying to get credentials for an unauthenticated identity.

The Logins parameter is required when using identities associated with external identity providers such as Facebook. For examples of Logins maps, see the code examples in the External Identity Providers section of the Amazon Cognito Developer Guide.

", "GetIdInput$Logins": "

A set of optional name-value pairs that map provider names to provider tokens. The available provider names for Logins are as follows:

", "GetOpenIdTokenForDeveloperIdentityInput$Logins": "

A set of optional name-value pairs that map provider names to provider tokens. Each name-value pair represents a user from a public provider or developer provider. If the user is from a developer provider, the name-value pair will follow the syntax \"developer_provider_name\": \"developer_user_identifier\". The developer provider is the \"domain\" by which Cognito will refer to your users; you provided this domain while creating/updating the identity pool. The developer user identifier is an identifier from your backend that uniquely identifies a user. When you create an identity pool, you can specify the supported logins.

", - "GetOpenIdTokenInput$Logins": "

A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider's authflow. For accounts.google.com, an Amazon Cognito user pool provider, or any other OpenId Connect provider, always include the id_token.

", + "GetOpenIdTokenInput$Logins": "

A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider's authflow. For accounts.google.com, an Amazon Cognito user pool provider, or any other OpenID Connect provider, always include the id_token.

", "UnlinkIdentityInput$Logins": "

A set of optional name-value pairs that map provider names to provider tokens.

" } }, @@ -498,8 +518,8 @@ "OIDCProviderList": { "base": null, "refs": { - "CreateIdentityPoolInput$OpenIdConnectProviderARNs": "

A list of OpendID Connect provider ARNs.

", - "IdentityPool$OpenIdConnectProviderARNs": "

A list of OpendID Connect provider ARNs.

" + "CreateIdentityPoolInput$OpenIdConnectProviderARNs": "

The Amazon Resource Names (ARN) of the OpenID Connect providers.

", + "IdentityPool$OpenIdConnectProviderARNs": "

The ARNs of the OpenID Connect providers.

" } }, "OIDCToken": { @@ -520,6 +540,27 @@ "LookupDeveloperIdentityResponse$NextToken": "

A pagination token. The first call you make will have NextToken set to null. After that the service will return NextToken values as needed. For example, let's say you make a request with MaxResults set to 10, and there are 20 matches in the database. The service will return a pagination token as a part of the response. This token can be used to call the API again and get results starting from the 11th match.

" } }, + "PrincipalTagID": { + "base": null, + "refs": { + "PrincipalTags$key": null + } + }, + "PrincipalTagValue": { + "base": null, + "refs": { + "PrincipalTags$value": null + } + }, + "PrincipalTags": { + "base": null, + "refs": { + "GetOpenIdTokenForDeveloperIdentityInput$PrincipalTags": "

Use this operation to configure attribute mappings for custom providers.

", + "GetPrincipalTagAttributeMapResponse$PrincipalTags": "

You can use this operation to add principal tags. The PrincipalTagsoperation enables you to reference user attributes in your IAM permissions policy.

", + "SetPrincipalTagAttributeMapInput$PrincipalTags": "

You can use this operation to add principal tags.

", + "SetPrincipalTagAttributeMapResponse$PrincipalTags": "

You can use this operation to add principal tags. The PrincipalTagsoperation enables you to reference user attributes in your IAM permissions policy.

" + } + }, "QueryLimit": { "base": null, "refs": { @@ -548,7 +589,7 @@ "base": null, "refs": { "GetIdentityPoolRolesResponse$RoleMappings": "

How users for a specific identity provider are to mapped to roles. This is a String-to-RoleMapping object map. The string identifies the identity provider, for example, \"graph.facebook.com\" or \"cognito-idp.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id\".

", - "SetIdentityPoolRolesInput$RoleMappings": "

How users for a specific identity provider are to mapped to roles. This is a string to RoleMapping object map. The string identifies the identity provider, for example, \"graph.facebook.com\" or \"cognito-idp-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id\".

Up to 25 rules can be specified per identity provider.

" + "SetIdentityPoolRolesInput$RoleMappings": "

How users for a specific identity provider are to mapped to roles. This is a string to RoleMapping object map. The string identifies the identity provider, for example, \"graph.facebook.com\" or \"cognito-idp.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id\".

Up to 25 rules can be specified per identity provider.

" } }, "RoleMappingType": { @@ -600,6 +641,16 @@ "refs": { } }, + "SetPrincipalTagAttributeMapInput": { + "base": null, + "refs": { + } + }, + "SetPrincipalTagAttributeMapResponse": { + "base": null, + "refs": { + } + }, "String": { "base": null, "refs": { @@ -681,6 +732,14 @@ "base": null, "refs": { } + }, + "UseDefaults": { + "base": null, + "refs": { + "GetPrincipalTagAttributeMapResponse$UseDefaults": "

You can use this operation to list

", + "SetPrincipalTagAttributeMapInput$UseDefaults": "

You can use this operation to use default (username and clientID) attribute mappings.

", + "SetPrincipalTagAttributeMapResponse$UseDefaults": "

You can use this operation to select default (username and clientID) attribute mappings.

" + } } } } diff --git a/models/apis/pinpoint/2016-12-01/api-2.json b/models/apis/pinpoint/2016-12-01/api-2.json index ba621144d96..91453a11578 100644 --- a/models/apis/pinpoint/2016-12-01/api-2.json +++ b/models/apis/pinpoint/2016-12-01/api-2.json @@ -4810,7 +4810,12 @@ "type": "string", "enum": [ "INCLUSIVE", - "EXCLUSIVE" + "EXCLUSIVE", + "CONTAINS", + "BEFORE", + "AFTER", + "BETWEEN", + "ON" ] }, "AttributesResource": { diff --git a/models/apis/pinpoint/2016-12-01/docs-2.json b/models/apis/pinpoint/2016-12-01/docs-2.json index 4bf98ea2929..152f3d794d0 100644 --- a/models/apis/pinpoint/2016-12-01/docs-2.json +++ b/models/apis/pinpoint/2016-12-01/docs-2.json @@ -249,7 +249,7 @@ "AttributeType" : { "base" : null, "refs" : { - "AttributeDimension$AttributeType" : "

The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.

" + "AttributeDimension$AttributeType" : "