Class: Aws::IoTFleetWise::Types::DataDestinationConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-iotfleetwise/types.rb

Overview

Note:

DataDestinationConfig is a union - when making an API calls you must set exactly one of the members.

Note:

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

MqttTopicConfig, S3Config, TimestreamConfig, Unknown

Defined Under Namespace

Classes: MqttTopicConfig, S3Config, TimestreamConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#mqtt_topic_configTypes::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_configTypes::S3Config

The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.

Returns:



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_configTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1326
1327
1328
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1326

def unknown
  @unknown
end