Class: Aws::IoTSiteWise::Types::Attribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Attribute
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass Attribute data as a hash:
{
default_value: "DefaultValue",
}
Contains an asset attribute property. For more information, see Attributes in the AWS IoT SiteWise User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value ⇒ String
The default value of the asset model property attribute.
Instance Attribute Details
#default_value ⇒ String
The default value of the asset model property attribute. All assets that you create from the asset model contain this attribute value. You can update an attribute's value after you create an asset. For more information, see Updating attribute values in the AWS IoT SiteWise User Guide.
1018 1019 1020 1021 1022 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 1018 class Attribute < Struct.new( :default_value) SENSITIVE = [] include Aws::Structure end |