PutAssetPropertyValueEntry
public struct PutAssetPropertyValueEntry : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID of the AWS IoT SiteWise asset. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.
Declaration
Swift
public let assetId: String?
-
Optional. A unique identifier for this entry that you can define to better track which message caused an error in case of failure. Accepts substitution templates. Defaults to a new UUID.
Declaration
Swift
public let entryId: String?
-
The name of the property alias associated with your asset property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.
Declaration
Swift
public let propertyAlias: String?
-
The ID of the asset’s property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.
Declaration
Swift
public let propertyId: String?
-
A list of property values to insert that each contain timestamp, quality, and value (TQV) information.
Declaration
Swift
public let propertyValues: [AssetPropertyValue]
-
Undocumented
Declaration
Swift
public init(assetId: String? = nil, entryId: String? = nil, propertyAlias: String? = nil, propertyId: String? = nil, propertyValues: [AssetPropertyValue])
-
Declaration
Swift
public func validate(name: String) throws