Interface CreateIntegrationResourcePropertyRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateIntegrationResourcePropertyRequest.Builder,
,CreateIntegrationResourcePropertyRequest> GlueRequest.Builder
,SdkBuilder<CreateIntegrationResourcePropertyRequest.Builder,
,CreateIntegrationResourcePropertyRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CreateIntegrationResourcePropertyRequest
@Mutable
@NotThreadSafe
public static interface CreateIntegrationResourcePropertyRequest.Builder
extends GlueRequest.Builder, SdkPojo, CopyableBuilder<CreateIntegrationResourcePropertyRequest.Builder,CreateIntegrationResourcePropertyRequest>
-
Method Summary
Modifier and TypeMethodDescriptionoverrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.resourceArn
(String resourceArn) The connection ARN of the source, or the database ARN of the target.sourceProcessingProperties
(Consumer<SourceProcessingProperties.Builder> sourceProcessingProperties) The resource properties associated with the integration source.sourceProcessingProperties
(SourceProcessingProperties sourceProcessingProperties) The resource properties associated with the integration source.targetProcessingProperties
(Consumer<TargetProcessingProperties.Builder> targetProcessingProperties) The resource properties associated with the integration target.targetProcessingProperties
(TargetProcessingProperties targetProcessingProperties) The resource properties associated with the integration target.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.services.glue.model.GlueRequest.Builder
build
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
-
resourceArn
The connection ARN of the source, or the database ARN of the target.
- Parameters:
resourceArn
- The connection ARN of the source, or the database ARN of the target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceProcessingProperties
CreateIntegrationResourcePropertyRequest.Builder sourceProcessingProperties(SourceProcessingProperties sourceProcessingProperties) The resource properties associated with the integration source.
- Parameters:
sourceProcessingProperties
- The resource properties associated with the integration source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceProcessingProperties
default CreateIntegrationResourcePropertyRequest.Builder sourceProcessingProperties(Consumer<SourceProcessingProperties.Builder> sourceProcessingProperties) The resource properties associated with the integration source.
This is a convenience method that creates an instance of theSourceProcessingProperties.Builder
avoiding the need to create one manually viaSourceProcessingProperties.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosourceProcessingProperties(SourceProcessingProperties)
.- Parameters:
sourceProcessingProperties
- a consumer that will call methods onSourceProcessingProperties.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
targetProcessingProperties
CreateIntegrationResourcePropertyRequest.Builder targetProcessingProperties(TargetProcessingProperties targetProcessingProperties) The resource properties associated with the integration target.
- Parameters:
targetProcessingProperties
- The resource properties associated with the integration target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetProcessingProperties
default CreateIntegrationResourcePropertyRequest.Builder targetProcessingProperties(Consumer<TargetProcessingProperties.Builder> targetProcessingProperties) The resource properties associated with the integration target.
This is a convenience method that creates an instance of theTargetProcessingProperties.Builder
avoiding the need to create one manually viaTargetProcessingProperties.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totargetProcessingProperties(TargetProcessingProperties)
.- Parameters:
targetProcessingProperties
- a consumer that will call methods onTargetProcessingProperties.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
CreateIntegrationResourcePropertyRequest.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
CreateIntegrationResourcePropertyRequest.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.
-