Interface DatasetContentDeliveryRule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatasetContentDeliveryRule.Builder,DatasetContentDeliveryRule>,SdkBuilder<DatasetContentDeliveryRule.Builder,DatasetContentDeliveryRule>,SdkPojo
- Enclosing class:
- DatasetContentDeliveryRule
public static interface DatasetContentDeliveryRule.Builder extends SdkPojo, CopyableBuilder<DatasetContentDeliveryRule.Builder,DatasetContentDeliveryRule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DatasetContentDeliveryRule.Builderdestination(Consumer<DatasetContentDeliveryDestination.Builder> destination)The destination to which dataset contents are delivered.DatasetContentDeliveryRule.Builderdestination(DatasetContentDeliveryDestination destination)The destination to which dataset contents are delivered.DatasetContentDeliveryRule.BuilderentryName(String entryName)The name of the dataset content delivery rules entry.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
entryName
DatasetContentDeliveryRule.Builder entryName(String entryName)
The name of the dataset content delivery rules entry.
- Parameters:
entryName- The name of the dataset content delivery rules entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
DatasetContentDeliveryRule.Builder destination(DatasetContentDeliveryDestination destination)
The destination to which dataset contents are delivered.
- Parameters:
destination- The destination to which dataset contents are delivered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default DatasetContentDeliveryRule.Builder destination(Consumer<DatasetContentDeliveryDestination.Builder> destination)
The destination to which dataset contents are delivered.
This is a convenience method that creates an instance of theDatasetContentDeliveryDestination.Builderavoiding the need to create one manually viaDatasetContentDeliveryDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(DatasetContentDeliveryDestination).- Parameters:
destination- a consumer that will call methods onDatasetContentDeliveryDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(DatasetContentDeliveryDestination)
-
-