![]() |
![]()
| ![]() |
![]()
NAMEPaws::CognitoIdp::UserPoolClientType USAGEThis class represents one of two things: Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::CognitoIdp::UserPoolClientType object: $service_obj->Method(Att1 => { AccessTokenValidity => $value, ..., WriteAttributes => $value }); Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::CognitoIdp::UserPoolClientType object: $result = $service_obj->Method(...); $result->Att1->AccessTokenValidity DESCRIPTIONContains information about a user pool client. ATTRIBUTESAccessTokenValidity => IntThe time limit, specified by tokenValidityUnits, defaulting to hours, after which the access token is no longer valid and cannot be used. AllowedOAuthFlows => ArrayRef[Str|Undef]The allowed OAuth flows. Set to "code" to initiate a code grant flow, which provides an authorization code as the response. This code can be exchanged for access tokens with the token endpoint. Set to "implicit" to specify that the client should get the access token (and, optionally, ID token, based on scopes) directly. Set to "client_credentials" to specify that the client should get the access token (and, optionally, ID token, based on scopes) from the token endpoint using a combination of client and client_secret. AllowedOAuthFlowsUserPoolClient => BoolSet to true if the client is allowed to follow the OAuth protocol when interacting with Cognito user pools. AllowedOAuthScopes => ArrayRef[Str|Undef]The allowed OAuth scopes. Possible values provided by OAuth are: "phone", "email", "openid", and "profile". Possible values provided by AWS are: "aws.cognito.signin.user.admin". Custom scopes created in Resource Servers are also supported. AnalyticsConfiguration => Paws::CognitoIdp::AnalyticsConfigurationTypeThe Amazon Pinpoint analytics configuration for the user pool client. Cognito User Pools only supports sending events to Amazon Pinpoint projects in the US East (N. Virginia) us-east-1 Region, regardless of the region in which the user pool resides. CallbackURLs => ArrayRef[Str|Undef]A list of allowed redirect (callback) URLs for the identity providers. A redirect URI must:
See OAuth 2.0 - Redirection Endpoint (https://tools.ietf.org/html/rfc6749#section-3.1.2). Amazon Cognito requires HTTPS over HTTP except for http://localhost for testing purposes only. App callback URLs such as myapp://example are also supported. ClientId => StrThe ID of the client associated with the user pool. ClientName => StrThe client name from the user pool request of the client type. ClientSecret => StrThe client secret from the user pool request of the client type. CreationDate => StrThe date the user pool client was created. DefaultRedirectURI => StrThe default redirect URI. Must be in the "CallbackURLs" list. A redirect URI must:
See OAuth 2.0 - Redirection Endpoint (https://tools.ietf.org/html/rfc6749#section-3.1.2). Amazon Cognito requires HTTPS over HTTP except for http://localhost for testing purposes only. App callback URLs such as myapp://example are also supported. EnableTokenRevocation => BoolIndicates whether token revocation is enabled for the user pool client. When you create a new user pool client, token revocation is enabled by default. For more information about revoking tokens, see RevokeToken (https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_RevokeToken.html). ExplicitAuthFlows => ArrayRef[Str|Undef]The authentication flows that are supported by the user pool clients. Flow names without the "ALLOW_" prefix are deprecated in favor of new names with the "ALLOW_" prefix. Note that values with "ALLOW_" prefix cannot be used along with values without "ALLOW_" prefix. Valid values include:
IdTokenValidity => IntThe time limit, specified by tokenValidityUnits, defaulting to hours, after which the refresh token is no longer valid and cannot be used. LastModifiedDate => StrThe date the user pool client was last modified. LogoutURLs => ArrayRef[Str|Undef]A list of allowed logout URLs for the identity providers. PreventUserExistenceErrors => StrUse this setting to choose which errors and responses are returned by Cognito APIs during authentication, account confirmation, and password recovery when the user does not exist in the user pool. When set to "ENABLED" and the user does not exist, authentication returns an error indicating either the username or password was incorrect, and account confirmation and password recovery return a response indicating a code was sent to a simulated destination. When set to "LEGACY", those APIs will return a "UserNotFoundException" exception if the user does not exist in the user pool. Valid values include:
After February 15th 2020, the value of "PreventUserExistenceErrors" will default to "ENABLED" for newly created user pool clients if no value is provided. ReadAttributes => ArrayRef[Str|Undef]The Read-only attributes. RefreshTokenValidity => IntThe time limit, in days, after which the refresh token is no longer valid and cannot be used. SupportedIdentityProviders => ArrayRef[Str|Undef]A list of provider names for the identity providers that are supported on this client. TokenValidityUnits => Paws::CognitoIdp::TokenValidityUnitsTypeThe time units used to specify the token validity times of their respective token. UserPoolId => StrThe user pool ID for the user pool client. WriteAttributes => ArrayRef[Str|Undef]The writeable attributes. SEE ALSOThis class forms part of Paws, describing an object used in Paws::CognitoIdp BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|