Class: Aws::CognitoIdentityProvider::Types::AttributeType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AttributeType
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The name and value of a user attribute.
Constant Summary collapse
- SENSITIVE =
[:value]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the attribute, for example
emailorcustom:department. -
#value ⇒ String
The value of the attribute.
Instance Attribute Details
#name ⇒ String
The name of the attribute, for example email or
custom:department.
In some older user pools, the regex pattern for acceptable values of
this parameter is [\p{L}\p{M}\p{S}\p{N}\p{P}]+. Older pools will
eventually be updated to use the new pattern. Affected user pools
are those created before May 2024 in US East (N. Virginia), US East
(Ohio), US West (N. California), US West (Oregon), Asia Pacific
(Mumbai), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific
(Singapore), Asia Pacific (Sydney), Canada (Central), Europe
(Frankfurt), Europe (Ireland), Europe (London), Europe (Paris),
Europe (Stockholm), Middle East (Bahrain), and South America (São
Paulo).
2703 2704 2705 2706 2707 2708 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2703 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end |
#value ⇒ String
The value of the attribute.
2703 2704 2705 2706 2707 2708 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2703 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end |