Class: Aws::Notifications::Types::Dimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::Notifications::Types::Dimension
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-notifications/types.rb
Overview
The key-value pair of properties for an event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the dimension.
-
#value ⇒ String
The value of the dimension.
Instance Attribute Details
#name ⇒ String
The name of the dimension
441 442 443 444 445 446 |
# File 'lib/aws-sdk-notifications/types.rb', line 441 class Dimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the dimension.
441 442 443 444 445 446 |
# File 'lib/aws-sdk-notifications/types.rb', line 441 class Dimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |