Class: Aws::CognitoIdentityProvider::Types::AttributeType

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Specifies whether the attribute is standard or custom.

Constant Summary collapse

SENSITIVE =
[:value]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the attribute.

Returns:

  • (String)


2110
2111
2112
2113
2114
2115
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2110

class AttributeType < Struct.new(
  :name,
  :value)
  SENSITIVE = [:value]
  include Aws::Structure
end

#valueString

The value of the attribute.

Returns:

  • (String)


2110
2111
2112
2113
2114
2115
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2110

class AttributeType < Struct.new(
  :name,
  :value)
  SENSITIVE = [:value]
  include Aws::Structure
end