Class: Aws::IdentityStore::Types::Email

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#primaryBoolean

A Boolean value representing whether this is the primary email address for the associated resource.

Returns:

  • (Boolean)


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

#typeString

A string representing the type of address. For example, "Work."

Returns:

  • (String)


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

#valueString

A string containing an email address. For example, "johndoe@amazon.com."

Returns:

  • (String)


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