Class: Aws::IoT::Types::UpdateDimensionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::UpdateDimensionRequest
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A unique identifier for the dimension.
-
#string_values ⇒ Array<String>
Specifies the value or list of values for the dimension.
Instance Attribute Details
#name ⇒ String
A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.
17442 17443 17444 17445 17446 17447 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 17442 class UpdateDimensionRequest < Struct.new( :name, :string_values) SENSITIVE = [] include Aws::Structure end |
#string_values ⇒ Array<String>
Specifies the value or list of values for the dimension. For
TOPIC_FILTER
dimensions, this is a pattern used to match the MQTT
topic (for example, "admin/#").
17442 17443 17444 17445 17446 17447 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 17442 class UpdateDimensionRequest < Struct.new( :name, :string_values) SENSITIVE = [] include Aws::Structure end |