Interface UpdateKinesisStreamingDestinationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateKinesisStreamingDestinationResponse.Builder,UpdateKinesisStreamingDestinationResponse>,DynamoDbResponse.Builder,SdkBuilder<UpdateKinesisStreamingDestinationResponse.Builder,UpdateKinesisStreamingDestinationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateKinesisStreamingDestinationResponse
@Mutable @NotThreadSafe public static interface UpdateKinesisStreamingDestinationResponse.Builder extends DynamoDbResponse.Builder, SdkPojo, CopyableBuilder<UpdateKinesisStreamingDestinationResponse.Builder,UpdateKinesisStreamingDestinationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateKinesisStreamingDestinationResponse.BuilderdestinationStatus(String destinationStatus)The status of the attempt to update the Kinesis streaming destination output.UpdateKinesisStreamingDestinationResponse.BuilderdestinationStatus(DestinationStatus destinationStatus)The status of the attempt to update the Kinesis streaming destination output.UpdateKinesisStreamingDestinationResponse.BuilderstreamArn(String streamArn)The ARN for the Kinesis stream input.UpdateKinesisStreamingDestinationResponse.BuildertableName(String tableName)The table name for the Kinesis streaming destination output.default UpdateKinesisStreamingDestinationResponse.BuilderupdateKinesisStreamingConfiguration(Consumer<UpdateKinesisStreamingConfiguration.Builder> updateKinesisStreamingConfiguration)The command to update the Kinesis streaming destination configuration.UpdateKinesisStreamingDestinationResponse.BuilderupdateKinesisStreamingConfiguration(UpdateKinesisStreamingConfiguration updateKinesisStreamingConfiguration)The command to update the Kinesis streaming destination configuration.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
tableName
UpdateKinesisStreamingDestinationResponse.Builder tableName(String tableName)
The table name for the Kinesis streaming destination output.
- Parameters:
tableName- The table name for the Kinesis streaming destination output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamArn
UpdateKinesisStreamingDestinationResponse.Builder streamArn(String streamArn)
The ARN for the Kinesis stream input.
- Parameters:
streamArn- The ARN for the Kinesis stream input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationStatus
UpdateKinesisStreamingDestinationResponse.Builder destinationStatus(String destinationStatus)
The status of the attempt to update the Kinesis streaming destination output.
- Parameters:
destinationStatus- The status of the attempt to update the Kinesis streaming destination output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DestinationStatus,DestinationStatus
-
destinationStatus
UpdateKinesisStreamingDestinationResponse.Builder destinationStatus(DestinationStatus destinationStatus)
The status of the attempt to update the Kinesis streaming destination output.
- Parameters:
destinationStatus- The status of the attempt to update the Kinesis streaming destination output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DestinationStatus,DestinationStatus
-
updateKinesisStreamingConfiguration
UpdateKinesisStreamingDestinationResponse.Builder updateKinesisStreamingConfiguration(UpdateKinesisStreamingConfiguration updateKinesisStreamingConfiguration)
The command to update the Kinesis streaming destination configuration.
- Parameters:
updateKinesisStreamingConfiguration- The command to update the Kinesis streaming destination configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateKinesisStreamingConfiguration
default UpdateKinesisStreamingDestinationResponse.Builder updateKinesisStreamingConfiguration(Consumer<UpdateKinesisStreamingConfiguration.Builder> updateKinesisStreamingConfiguration)
The command to update the Kinesis streaming destination configuration.
This is a convenience method that creates an instance of theUpdateKinesisStreamingConfiguration.Builderavoiding the need to create one manually viaUpdateKinesisStreamingConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toupdateKinesisStreamingConfiguration(UpdateKinesisStreamingConfiguration).- Parameters:
updateKinesisStreamingConfiguration- a consumer that will call methods onUpdateKinesisStreamingConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
updateKinesisStreamingConfiguration(UpdateKinesisStreamingConfiguration)
-
-