Class: Aws::CognitoIdentityProvider::Types::AttributeType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AttributeType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AttributeType data as a hash:
{
name: "AttributeNameType", # required
value: "AttributeValueType",
}
Specifies whether the attribute is standard or custom.
Constant Summary collapse
- SENSITIVE =
[:value]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the attribute.
-
#value ⇒ String
The value of the attribute.
Instance Attribute Details
#name ⇒ String
The name of the attribute.
2407 2408 2409 2410 2411 2412 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2407 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end |
#value ⇒ String
The value of the attribute.
2407 2408 2409 2410 2411 2412 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2407 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end |