Class: Aws::CloudDirectory::Types::TypedAttributeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::TypedAttributeValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-clouddirectory/types.rb
Overview
Represents the data for a typed attribute. You can set one, and only one, of the elements. Each attribute in an item is a name-value pair. Attributes have a single value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#binary_value ⇒ String
A binary data value.
-
#boolean_value ⇒ Boolean
A Boolean data value.
-
#datetime_value ⇒ Time
A date and time value.
-
#number_value ⇒ String
A number data value.
-
#string_value ⇒ String
A string data value.
Instance Attribute Details
#binary_value ⇒ String
A binary data value.
5015 5016 5017 5018 5019 5020 5021 5022 5023 |
# File 'lib/aws-sdk-clouddirectory/types.rb', line 5015 class TypedAttributeValue < Struct.new( :string_value, :binary_value, :boolean_value, :number_value, :datetime_value) SENSITIVE = [] include Aws::Structure end |
#boolean_value ⇒ Boolean
A Boolean data value.
5015 5016 5017 5018 5019 5020 5021 5022 5023 |
# File 'lib/aws-sdk-clouddirectory/types.rb', line 5015 class TypedAttributeValue < Struct.new( :string_value, :binary_value, :boolean_value, :number_value, :datetime_value) SENSITIVE = [] include Aws::Structure end |
#datetime_value ⇒ Time
A date and time value.
5015 5016 5017 5018 5019 5020 5021 5022 5023 |
# File 'lib/aws-sdk-clouddirectory/types.rb', line 5015 class TypedAttributeValue < Struct.new( :string_value, :binary_value, :boolean_value, :number_value, :datetime_value) SENSITIVE = [] include Aws::Structure end |
#number_value ⇒ String
A number data value.
5015 5016 5017 5018 5019 5020 5021 5022 5023 |
# File 'lib/aws-sdk-clouddirectory/types.rb', line 5015 class TypedAttributeValue < Struct.new( :string_value, :binary_value, :boolean_value, :number_value, :datetime_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
A string data value.
5015 5016 5017 5018 5019 5020 5021 5022 5023 |
# File 'lib/aws-sdk-clouddirectory/types.rb', line 5015 class TypedAttributeValue < Struct.new( :string_value, :binary_value, :boolean_value, :number_value, :datetime_value) SENSITIVE = [] include Aws::Structure end |