You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
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.
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.
2233 2234 2235 2236 2237 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2233 class AttributeType < Struct.new( :name, :value) include Aws::Structure end |
#value ⇒ String
The value of the attribute.
2233 2234 2235 2236 2237 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2233 class AttributeType < Struct.new( :name, :value) include Aws::Structure end |