Class: Aws::IoTSiteWise::Types::TransformProcessingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::TransformProcessingConfig
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass TransformProcessingConfig data as a hash:
{
compute_location: "EDGE", # required, accepts EDGE, CLOUD
forwarding_config: {
state: "DISABLED", # required, accepts DISABLED, ENABLED
},
}
The processing configuration for the given transform property. You can configure transforms to be kept at the edge or forwarded to the Amazon Web Services Cloud. You can also configure transforms to be computed at the edge or in the cloud.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compute_location ⇒ String
The compute location for the given transform property.
-
#forwarding_config ⇒ Types::ForwardingConfig
The forwarding configuration for a given property.
Instance Attribute Details
#compute_location ⇒ String
The compute location for the given transform property.
7137 7138 7139 7140 7141 7142 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7137 class TransformProcessingConfig < Struct.new( :compute_location, :forwarding_config) SENSITIVE = [] include Aws::Structure end |
#forwarding_config ⇒ Types::ForwardingConfig
The forwarding configuration for a given property.
7137 7138 7139 7140 7141 7142 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7137 class TransformProcessingConfig < Struct.new( :compute_location, :forwarding_config) SENSITIVE = [] include Aws::Structure end |