Interface TimeSeriesIdentifiers.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimeSeriesIdentifiers.Builder,TimeSeriesIdentifiers>,SdkBuilder<TimeSeriesIdentifiers.Builder,TimeSeriesIdentifiers>,SdkPojo
- Enclosing class:
- TimeSeriesIdentifiers
public static interface TimeSeriesIdentifiers.Builder extends SdkPojo, CopyableBuilder<TimeSeriesIdentifiers.Builder,TimeSeriesIdentifiers>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TimeSeriesIdentifiers.BuilderdataSource(Consumer<DataSource.Builder> dataSource)Sets the value of the DataSource property for this object.TimeSeriesIdentifiers.BuilderdataSource(DataSource dataSource)Sets the value of the DataSource property for this object.TimeSeriesIdentifiers.Builderformat(String format)The format of the data, either CSV or PARQUET.default TimeSeriesIdentifiers.Builderschema(Consumer<Schema.Builder> schema)Sets the value of the Schema property for this object.TimeSeriesIdentifiers.Builderschema(Schema schema)Sets the value of the Schema property for this object.-
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
-
dataSource
TimeSeriesIdentifiers.Builder dataSource(DataSource dataSource)
Sets the value of the DataSource property for this object.- Parameters:
dataSource- The new value for the DataSource property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSource
default TimeSeriesIdentifiers.Builder dataSource(Consumer<DataSource.Builder> dataSource)
Sets the value of the DataSource property for this object. This is a convenience method that creates an instance of theDataSource.Builderavoiding the need to create one manually viaDataSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todataSource(DataSource).- Parameters:
dataSource- a consumer that will call methods onDataSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dataSource(DataSource)
-
schema
TimeSeriesIdentifiers.Builder schema(Schema schema)
Sets the value of the Schema property for this object.- Parameters:
schema- The new value for the Schema property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schema
default TimeSeriesIdentifiers.Builder schema(Consumer<Schema.Builder> schema)
Sets the value of the Schema property for this object. This is a convenience method that creates an instance of theSchema.Builderavoiding the need to create one manually viaSchema.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toschema(Schema).- Parameters:
schema- a consumer that will call methods onSchema.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
schema(Schema)
-
format
TimeSeriesIdentifiers.Builder format(String format)
The format of the data, either CSV or PARQUET.
- Parameters:
format- The format of the data, either CSV or PARQUET.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-