Class: Aws::IdentityStore::Types::PhoneNumber
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::PhoneNumber
- Defined in:
- gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb
Overview
The phone number 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 phone number for the associated resource.
-
#type ⇒ String
A string representing the type of a phone number.
-
#value ⇒ String
A string containing a phone number.
Instance Attribute Details
#primary ⇒ Boolean
A Boolean value representing whether this is the primary phone number for the associated resource.
1316 1317 1318 1319 1320 1321 1322 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1316 class PhoneNumber < Struct.new( :value, :type, :primary) SENSITIVE = [:value, :type, :primary] include Aws::Structure end |
#type ⇒ String
A string representing the type of a phone number. For example, "Mobile."
1316 1317 1318 1319 1320 1321 1322 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1316 class PhoneNumber < Struct.new( :value, :type, :primary) SENSITIVE = [:value, :type, :primary] include Aws::Structure end |
#value ⇒ String
A string containing a phone number. For example, "8675309" or "+1 (800) 123-4567".
1316 1317 1318 1319 1320 1321 1322 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1316 class PhoneNumber < Struct.new( :value, :type, :primary) SENSITIVE = [:value, :type, :primary] include Aws::Structure end |