Class: Aws::LookoutMetrics::Types::AttributeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutMetrics::Types::AttributeValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lookoutmetrics/types.rb
Overview
An attribute value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#b ⇒ String
A binary value.
-
#bs ⇒ Array<String>
A list of binary values.
-
#n ⇒ String
A number.
-
#ns ⇒ Array<String>
A list of numbers.
-
#s ⇒ String
A string.
-
#ss ⇒ Array<String>
A list of strings.
Instance Attribute Details
#b ⇒ String
A binary value.
535 536 537 538 539 540 541 542 543 544 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 535 class AttributeValue < Struct.new( :s, :n, :b, :ss, :ns, :bs) SENSITIVE = [] include Aws::Structure end |
#bs ⇒ Array<String>
A list of binary values.
535 536 537 538 539 540 541 542 543 544 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 535 class AttributeValue < Struct.new( :s, :n, :b, :ss, :ns, :bs) SENSITIVE = [] include Aws::Structure end |
#n ⇒ String
A number.
535 536 537 538 539 540 541 542 543 544 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 535 class AttributeValue < Struct.new( :s, :n, :b, :ss, :ns, :bs) SENSITIVE = [] include Aws::Structure end |
#ns ⇒ Array<String>
A list of numbers.
535 536 537 538 539 540 541 542 543 544 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 535 class AttributeValue < Struct.new( :s, :n, :b, :ss, :ns, :bs) SENSITIVE = [] include Aws::Structure end |
#s ⇒ String
A string.
535 536 537 538 539 540 541 542 543 544 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 535 class AttributeValue < Struct.new( :s, :n, :b, :ss, :ns, :bs) SENSITIVE = [] include Aws::Structure end |
#ss ⇒ Array<String>
A list of strings.
535 536 537 538 539 540 541 542 543 544 |
# File 'lib/aws-sdk-lookoutmetrics/types.rb', line 535 class AttributeValue < Struct.new( :s, :n, :b, :ss, :ns, :bs) SENSITIVE = [] include Aws::Structure end |