Interface EventStreamDestinationDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventStreamDestinationDetails.Builder,EventStreamDestinationDetails>,SdkBuilder<EventStreamDestinationDetails.Builder,EventStreamDestinationDetails>,SdkPojo
- Enclosing class:
- EventStreamDestinationDetails
public static interface EventStreamDestinationDetails.Builder extends SdkPojo, CopyableBuilder<EventStreamDestinationDetails.Builder,EventStreamDestinationDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventStreamDestinationDetails.Buildermessage(String message)The human-readable string that corresponds to the error or success while enabling the streaming destination.EventStreamDestinationDetails.Builderstatus(String status)The status of enabling the Kinesis stream as a destination for export.EventStreamDestinationDetails.Builderstatus(EventStreamDestinationStatus status)The status of enabling the Kinesis stream as a destination for export.EventStreamDestinationDetails.BuilderunhealthySince(Instant unhealthySince)The timestamp when the status last changed toUNHEALHY.EventStreamDestinationDetails.Builderuri(String uri)The StreamARN of the destination to deliver profile events to.-
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
-
uri
EventStreamDestinationDetails.Builder uri(String uri)
The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name.
- Parameters:
uri- The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
EventStreamDestinationDetails.Builder status(String status)
The status of enabling the Kinesis stream as a destination for export.
- Parameters:
status- The status of enabling the Kinesis stream as a destination for export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventStreamDestinationStatus,EventStreamDestinationStatus
-
status
EventStreamDestinationDetails.Builder status(EventStreamDestinationStatus status)
The status of enabling the Kinesis stream as a destination for export.
- Parameters:
status- The status of enabling the Kinesis stream as a destination for export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventStreamDestinationStatus,EventStreamDestinationStatus
-
unhealthySince
EventStreamDestinationDetails.Builder unhealthySince(Instant unhealthySince)
The timestamp when the status last changed to
UNHEALHY.- Parameters:
unhealthySince- The timestamp when the status last changed toUNHEALHY.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
EventStreamDestinationDetails.Builder message(String message)
The human-readable string that corresponds to the error or success while enabling the streaming destination.
- Parameters:
message- The human-readable string that corresponds to the error or success while enabling the streaming destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-