Class: Aws::XRay::Types::AnnotationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::AnnotationValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
Value of a segment annotation. Has one of three value types: Number, Boolean, or String.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#boolean_value ⇒ Boolean
Value for a Boolean annotation.
-
#number_value ⇒ Float
Value for a Number annotation.
-
#string_value ⇒ String
Value for a String annotation.
Instance Attribute Details
#boolean_value ⇒ Boolean
Value for a Boolean annotation.
54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-xray/types.rb', line 54 class AnnotationValue < Struct.new( :number_value, :boolean_value, :string_value) SENSITIVE = [] include Aws::Structure end |
#number_value ⇒ Float
Value for a Number annotation.
54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-xray/types.rb', line 54 class AnnotationValue < Struct.new( :number_value, :boolean_value, :string_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
Value for a String annotation.
54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-xray/types.rb', line 54 class AnnotationValue < Struct.new( :number_value, :boolean_value, :string_value) SENSITIVE = [] include Aws::Structure end |