Class: Aws::IoTSiteWise::Types::MetricProcessingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::MetricProcessingConfig
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass MetricProcessingConfig data as a hash:
{
compute_location: "EDGE", # required, accepts EDGE, CLOUD
}
The processing configuration for the given metric property. You can configure metrics to be computed at the edge or in the Amazon Web Services Cloud. By default, metrics are forwarded to the cloud.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compute_location ⇒ String
The compute location for the given metric property.
Instance Attribute Details
#compute_location ⇒ String
The compute location for the given metric property.
6115 6116 6117 6118 6119 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6115 class MetricProcessingConfig < Struct.new( :compute_location) SENSITIVE = [] include Aws::Structure end |