Interface ScheduledQueryDestination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScheduledQueryDestination.Builder,ScheduledQueryDestination>,SdkBuilder<ScheduledQueryDestination.Builder,ScheduledQueryDestination>,SdkPojo
- Enclosing class:
- ScheduledQueryDestination
@Mutable @NotThreadSafe public static interface ScheduledQueryDestination.Builder extends SdkPojo, CopyableBuilder<ScheduledQueryDestination.Builder,ScheduledQueryDestination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScheduledQueryDestination.BuilderdestinationIdentifier(String destinationIdentifier)The identifier for the destination where results are delivered.ScheduledQueryDestination.BuilderdestinationType(String destinationType)The type of destination for query results.ScheduledQueryDestination.BuilderdestinationType(ScheduledQueryDestinationType destinationType)The type of destination for query results.ScheduledQueryDestination.BuildererrorMessage(String errorMessage)Error message if destination processing failed.ScheduledQueryDestination.BuilderprocessedIdentifier(String processedIdentifier)The identifier of the processed result at the destination.ScheduledQueryDestination.Builderstatus(String status)The processing status of the destination delivery.ScheduledQueryDestination.Builderstatus(ActionStatus status)The processing status of the destination delivery.-
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
-
destinationType
ScheduledQueryDestination.Builder destinationType(String destinationType)
The type of destination for query results.
- Parameters:
destinationType- The type of destination for query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScheduledQueryDestinationType,ScheduledQueryDestinationType
-
destinationType
ScheduledQueryDestination.Builder destinationType(ScheduledQueryDestinationType destinationType)
The type of destination for query results.
- Parameters:
destinationType- The type of destination for query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScheduledQueryDestinationType,ScheduledQueryDestinationType
-
destinationIdentifier
ScheduledQueryDestination.Builder destinationIdentifier(String destinationIdentifier)
The identifier for the destination where results are delivered.
- Parameters:
destinationIdentifier- The identifier for the destination where results are delivered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ScheduledQueryDestination.Builder status(String status)
The processing status of the destination delivery.
- Parameters:
status- The processing status of the destination delivery.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionStatus,ActionStatus
-
status
ScheduledQueryDestination.Builder status(ActionStatus status)
The processing status of the destination delivery.
- Parameters:
status- The processing status of the destination delivery.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionStatus,ActionStatus
-
processedIdentifier
ScheduledQueryDestination.Builder processedIdentifier(String processedIdentifier)
The identifier of the processed result at the destination.
- Parameters:
processedIdentifier- The identifier of the processed result at the destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
ScheduledQueryDestination.Builder errorMessage(String errorMessage)
Error message if destination processing failed.
- Parameters:
errorMessage- Error message if destination processing failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-