Interface DataDestinationConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataDestinationConfig.Builder,DataDestinationConfig>,SdkBuilder<DataDestinationConfig.Builder,DataDestinationConfig>,SdkPojo
- Enclosing class:
- DataDestinationConfig
public static interface DataDestinationConfig.Builder extends SdkPojo, CopyableBuilder<DataDestinationConfig.Builder,DataDestinationConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DataDestinationConfig.Builders3Config(Consumer<S3Config.Builder> s3Config)The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.DataDestinationConfig.Builders3Config(S3Config s3Config)The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.default DataDestinationConfig.BuildertimestreamConfig(Consumer<TimestreamConfig.Builder> timestreamConfig)The Amazon Timestream table where the campaign sends data.DataDestinationConfig.BuildertimestreamConfig(TimestreamConfig timestreamConfig)The Amazon Timestream table where the campaign sends data.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
s3Config
DataDestinationConfig.Builder s3Config(S3Config s3Config)
The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.
- Parameters:
s3Config- The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Config
default DataDestinationConfig.Builder s3Config(Consumer<S3Config.Builder> s3Config)
The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.
This is a convenience method that creates an instance of theS3Config.Builderavoiding the need to create one manually viaS3Config.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Config(S3Config).- Parameters:
s3Config- a consumer that will call methods onS3Config.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Config(S3Config)
-
timestreamConfig
DataDestinationConfig.Builder timestreamConfig(TimestreamConfig timestreamConfig)
The Amazon Timestream table where the campaign sends data.
- Parameters:
timestreamConfig- The Amazon Timestream table where the campaign sends data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestreamConfig
default DataDestinationConfig.Builder timestreamConfig(Consumer<TimestreamConfig.Builder> timestreamConfig)
The Amazon Timestream table where the campaign sends data.
This is a convenience method that creates an instance of theTimestreamConfig.Builderavoiding the need to create one manually viaTimestreamConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totimestreamConfig(TimestreamConfig).- Parameters:
timestreamConfig- a consumer that will call methods onTimestreamConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
timestreamConfig(TimestreamConfig)
-
-