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
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.
2355 2356 2357 2358 2359 2360 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2355 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end |
#value ⇒ String
The value of the attribute.
2355 2356 2357 2358 2359 2360 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2355 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end |