Class: Aws::IoTFleetWise::Types::DataDestinationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::DataDestinationConfig
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-iotfleetwise/types.rb
Overview
DataDestinationConfig is a union - when making an API calls you must set exactly one of the members.
DataDestinationConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataDestinationConfig corresponding to the set member.
The destination where the campaign sends data. You can send data to an MQTT topic, or store it in Amazon S3 or Amazon Timestream.
Direct Known Subclasses
Defined Under Namespace
Classes: MqttTopicConfig, S3Config, TimestreamConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mqtt_topic_config ⇒ Types::MqttTopicConfig
The MQTT topic to which the Amazon Web Services IoT FleetWise campaign routes data.
-
#s3_config ⇒ Types::S3Config
The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.
-
#timestream_config ⇒ Types::TimestreamConfig
The Amazon Timestream table where the campaign sends data.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#mqtt_topic_config ⇒ Types::MqttTopicConfig
The MQTT topic to which the Amazon Web Services IoT FleetWise campaign routes data.
Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see [Amazon Web Services Region and feature availability] in the *Amazon Web Services IoT FleetWise Developer Guide*.
[1]: docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1326 class DataDestinationConfig < Struct.new( :s3_config, :timestream_config, :mqtt_topic_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Config < DataDestinationConfig; end class TimestreamConfig < DataDestinationConfig; end class MqttTopicConfig < DataDestinationConfig; end class Unknown < DataDestinationConfig; end end |
#s3_config ⇒ Types::S3Config
The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1326 class DataDestinationConfig < Struct.new( :s3_config, :timestream_config, :mqtt_topic_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Config < DataDestinationConfig; end class TimestreamConfig < DataDestinationConfig; end class MqttTopicConfig < DataDestinationConfig; end class Unknown < DataDestinationConfig; end end |
#timestream_config ⇒ Types::TimestreamConfig
The Amazon Timestream table where the campaign sends data.
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1326 class DataDestinationConfig < Struct.new( :s3_config, :timestream_config, :mqtt_topic_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Config < DataDestinationConfig; end class TimestreamConfig < DataDestinationConfig; end class MqttTopicConfig < DataDestinationConfig; end class Unknown < DataDestinationConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1326 1327 1328 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1326 def unknown @unknown end |