Interface Destination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Destination.Builder,Destination>,SdkBuilder<Destination.Builder,Destination>,SdkPojo
- Enclosing class:
- Destination
public static interface Destination.Builder extends SdkPojo, CopyableBuilder<Destination.Builder,Destination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Destination.BuilderdestinationId(String destinationId)The unique ID of the publishing destination.Destination.BuilderdestinationType(String destinationType)The type of resource used for the publishing destination.Destination.BuilderdestinationType(DestinationType destinationType)The type of resource used for the publishing destination.Destination.Builderstatus(String status)The status of the publishing destination.Destination.Builderstatus(PublishingStatus status)The status of the publishing destination.-
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
-
destinationId
Destination.Builder destinationId(String destinationId)
The unique ID of the publishing destination.
- Parameters:
destinationId- The unique ID of the publishing destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationType
Destination.Builder destinationType(String destinationType)
The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported.
- Parameters:
destinationType- The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DestinationType,DestinationType
-
destinationType
Destination.Builder destinationType(DestinationType destinationType)
The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported.
- Parameters:
destinationType- The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DestinationType,DestinationType
-
status
Destination.Builder status(String status)
The status of the publishing destination.
- Parameters:
status- The status of the publishing destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PublishingStatus,PublishingStatus
-
status
Destination.Builder status(PublishingStatus status)
The status of the publishing destination.
- Parameters:
status- The status of the publishing destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PublishingStatus,PublishingStatus
-
-