Class: Aws::IdentityStore::Types::Email
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::Email
- Defined in:
- gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb
Overview
The email address associated with the user.
Constant Summary collapse
- SENSITIVE =
[:value, :type, :primary]
Instance Attribute Summary collapse
-
#primary ⇒ Boolean
A Boolean value representing whether this is the primary email address for the associated resource.
-
#type ⇒ String
A string representing the type of address.
-
#value ⇒ String
A string containing an email address.
Instance Attribute Details
#primary ⇒ Boolean
A Boolean value representing whether this is the primary email address for the associated resource.
666 667 668 669 670 671 672 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 666 class Email < Struct.new( :value, :type, :primary) SENSITIVE = [:value, :type, :primary] include Aws::Structure end |
#type ⇒ String
A string representing the type of address. For example, "Work."
666 667 668 669 670 671 672 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 666 class Email < Struct.new( :value, :type, :primary) SENSITIVE = [:value, :type, :primary] include Aws::Structure end |
#value ⇒ String
A string containing an email address. For example, "johndoe@amazon.com."
666 667 668 669 670 671 672 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 666 class Email < Struct.new( :value, :type, :primary) SENSITIVE = [:value, :type, :primary] include Aws::Structure end |