Interface CreateIngestionDestinationRequest.Builder
- All Superinterfaces:
AppFabricRequest.Builder
,AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateIngestionDestinationRequest.Builder,
,CreateIngestionDestinationRequest> SdkBuilder<CreateIngestionDestinationRequest.Builder,
,CreateIngestionDestinationRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CreateIngestionDestinationRequest
-
Method Summary
Modifier and TypeMethodDescriptionappBundleIdentifier
(String appBundleIdentifier) The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.clientToken
(String clientToken) Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request.destinationConfiguration
(Consumer<DestinationConfiguration.Builder> destinationConfiguration) Contains information about the destination of ingested data.destinationConfiguration
(DestinationConfiguration destinationConfiguration) Contains information about the destination of ingested data.ingestionIdentifier
(String ingestionIdentifier) The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.processingConfiguration
(Consumer<ProcessingConfiguration.Builder> processingConfiguration) Contains information about how ingested data is processed.processingConfiguration
(ProcessingConfiguration processingConfiguration) Contains information about how ingested data is processed.tags
(Collection<Tag> tags) A map of the key-value pairs of the tag or tags to assign to the resource.tags
(Consumer<Tag.Builder>... tags) A map of the key-value pairs of the tag or tags to assign to the resource.A map of the key-value pairs of the tag or tags to assign to the resource.Methods inherited from interface software.amazon.awssdk.services.appfabric.model.AppFabricRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
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 Details
-
appBundleIdentifier
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
- Parameters:
appBundleIdentifier
- The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingestionIdentifier
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
- Parameters:
ingestionIdentifier
- The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processingConfiguration
CreateIngestionDestinationRequest.Builder processingConfiguration(ProcessingConfiguration processingConfiguration) Contains information about how ingested data is processed.
- Parameters:
processingConfiguration
- Contains information about how ingested data is processed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processingConfiguration
default CreateIngestionDestinationRequest.Builder processingConfiguration(Consumer<ProcessingConfiguration.Builder> processingConfiguration) Contains information about how ingested data is processed.
This is a convenience method that creates an instance of theProcessingConfiguration.Builder
avoiding the need to create one manually viaProcessingConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toprocessingConfiguration(ProcessingConfiguration)
.- Parameters:
processingConfiguration
- a consumer that will call methods onProcessingConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
destinationConfiguration
CreateIngestionDestinationRequest.Builder destinationConfiguration(DestinationConfiguration destinationConfiguration) Contains information about the destination of ingested data.
- Parameters:
destinationConfiguration
- Contains information about the destination of ingested data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationConfiguration
default CreateIngestionDestinationRequest.Builder destinationConfiguration(Consumer<DestinationConfiguration.Builder> destinationConfiguration) Contains information about the destination of ingested data.
This is a convenience method that creates an instance of theDestinationConfiguration.Builder
avoiding the need to create one manually viaDestinationConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todestinationConfiguration(DestinationConfiguration)
.- Parameters:
destinationConfiguration
- a consumer that will call methods onDestinationConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
clientToken
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same
ClientToken
, but with different parameters, the retry fails with anIdempotentParameterMismatch
error.- Parameters:
clientToken
- Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same
ClientToken
, but with different parameters, the retry fails with anIdempotentParameterMismatch
error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
A map of the key-value pairs of the tag or tags to assign to the resource.
- Parameters:
tags
- A map of the key-value pairs of the tag or tags to assign to the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
A map of the key-value pairs of the tag or tags to assign to the resource.
- Parameters:
tags
- A map of the key-value pairs of the tag or tags to assign to the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
A map of the key-value pairs of the tag or tags to assign to the resource.
This is a convenience method that creates an instance of theTag.Builder
avoiding the need to create one manually viaTag.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totags(List<Tag>)
.- Parameters:
tags
- a consumer that will call methods onTag.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
CreateIngestionDestinationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
CreateIngestionDestinationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-