Class: Aws::IoT::Types::ThingTypeMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ThingTypeMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when time was deprecated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date ⇒ Time
The date and time when the thing type was created.
-
#deprecated ⇒ Boolean
Whether the thing type is deprecated.
-
#deprecation_date ⇒ Time
The date and time when the thing type was deprecated.
Instance Attribute Details
#creation_date ⇒ Time
The date and time when the thing type was created.
16413 16414 16415 16416 16417 16418 16419 |
# File 'lib/aws-sdk-iot/types.rb', line 16413 class ThingTypeMetadata < Struct.new( :deprecated, :deprecation_date, :creation_date) SENSITIVE = [] include Aws::Structure end |
#deprecated ⇒ Boolean
Whether the thing type is deprecated. If true, no new things could be associated with this type.
16413 16414 16415 16416 16417 16418 16419 |
# File 'lib/aws-sdk-iot/types.rb', line 16413 class ThingTypeMetadata < Struct.new( :deprecated, :deprecation_date, :creation_date) SENSITIVE = [] include Aws::Structure end |
#deprecation_date ⇒ Time
The date and time when the thing type was deprecated.
16413 16414 16415 16416 16417 16418 16419 |
# File 'lib/aws-sdk-iot/types.rb', line 16413 class ThingTypeMetadata < Struct.new( :deprecated, :deprecation_date, :creation_date) SENSITIVE = [] include Aws::Structure end |