Interface IntegrationResourceProperty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IntegrationResourceProperty.Builder,IntegrationResourceProperty>,SdkBuilder<IntegrationResourceProperty.Builder,IntegrationResourceProperty>,SdkPojo
- Enclosing class:
- IntegrationResourceProperty
@Mutable @NotThreadSafe public static interface IntegrationResourceProperty.Builder extends SdkPojo, CopyableBuilder<IntegrationResourceProperty.Builder,IntegrationResourceProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IntegrationResourceProperty.BuilderresourceArn(String resourceArn)The connection ARN of the source, or the database ARN of the target.IntegrationResourceProperty.BuilderresourcePropertyArn(String resourcePropertyArn)The resource ARN created through this create API.default IntegrationResourceProperty.BuildersourceProcessingProperties(Consumer<SourceProcessingProperties.Builder> sourceProcessingProperties)The resource properties associated with the integration source.IntegrationResourceProperty.BuildersourceProcessingProperties(SourceProcessingProperties sourceProcessingProperties)The resource properties associated with the integration source.default IntegrationResourceProperty.BuildertargetProcessingProperties(Consumer<TargetProcessingProperties.Builder> targetProcessingProperties)The resource properties associated with the integration target.IntegrationResourceProperty.BuildertargetProcessingProperties(TargetProcessingProperties targetProcessingProperties)The resource properties associated with the integration target.-
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
-
resourceArn
IntegrationResourceProperty.Builder resourceArn(String 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.
-
resourcePropertyArn
IntegrationResourceProperty.Builder resourcePropertyArn(String resourcePropertyArn)
The resource ARN created through this create API. The format is something like arn:aws:glue:<region>:<account_id>:integrationresourceproperty/*
- Parameters:
resourcePropertyArn- The resource ARN created through this create API. The format is something like arn:aws:glue:<region>:<account_id>:integrationresourceproperty/*- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceProcessingProperties
IntegrationResourceProperty.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 IntegrationResourceProperty.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.Builderavoiding the need to create one manually viaSourceProcessingProperties.builder().When the
Consumercompletes,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:
sourceProcessingProperties(SourceProcessingProperties)
-
targetProcessingProperties
IntegrationResourceProperty.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 IntegrationResourceProperty.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.Builderavoiding the need to create one manually viaTargetProcessingProperties.builder().When the
Consumercompletes,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:
targetProcessingProperties(TargetProcessingProperties)
-
-