Interface CreateIntegrationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateIntegrationRequest.Builder,CreateIntegrationRequest>
,RedshiftRequest.Builder
,SdkBuilder<CreateIntegrationRequest.Builder,CreateIntegrationRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateIntegrationRequest
public static interface CreateIntegrationRequest.Builder extends RedshiftRequest.Builder, SdkPojo, CopyableBuilder<CreateIntegrationRequest.Builder,CreateIntegrationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateIntegrationRequest.Builder
additionalEncryptionContext(Map<String,String> additionalEncryptionContext)
An optional set of non-secret key–value pairs that contains additional contextual information about the data.CreateIntegrationRequest.Builder
description(String description)
A description of the integration.CreateIntegrationRequest.Builder
integrationName(String integrationName)
The name of the integration.CreateIntegrationRequest.Builder
kmsKeyId(String kmsKeyId)
An Key Management Service (KMS) key identifier for the key to use to encrypt the integration.CreateIntegrationRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateIntegrationRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateIntegrationRequest.Builder
sourceArn(String sourceArn)
The Amazon Resource Name (ARN) of the database to use as the source for replication.CreateIntegrationRequest.Builder
tagList(Collection<Tag> tagList)
A list of tags.CreateIntegrationRequest.Builder
tagList(Consumer<Tag.Builder>... tagList)
A list of tags.CreateIntegrationRequest.Builder
tagList(Tag... tagList)
A list of tags.CreateIntegrationRequest.Builder
targetArn(String targetArn)
The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.-
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.redshift.model.RedshiftRequest.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 Detail
-
sourceArn
CreateIntegrationRequest.Builder sourceArn(String sourceArn)
The Amazon Resource Name (ARN) of the database to use as the source for replication.
- Parameters:
sourceArn
- The Amazon Resource Name (ARN) of the database to use as the source for replication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetArn
CreateIntegrationRequest.Builder targetArn(String targetArn)
The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.
- Parameters:
targetArn
- The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integrationName
CreateIntegrationRequest.Builder integrationName(String integrationName)
The name of the integration.
- Parameters:
integrationName
- The name of the integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKeyId
CreateIntegrationRequest.Builder kmsKeyId(String kmsKeyId)
An Key Management Service (KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default Amazon Web Services owned key is used.
- Parameters:
kmsKeyId
- An Key Management Service (KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default Amazon Web Services owned key is used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagList
CreateIntegrationRequest.Builder tagList(Collection<Tag> tagList)
A list of tags.
- Parameters:
tagList
- A list of tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagList
CreateIntegrationRequest.Builder tagList(Tag... tagList)
A list of tags.
- Parameters:
tagList
- A list of tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagList
CreateIntegrationRequest.Builder tagList(Consumer<Tag.Builder>... tagList)
A list of tags.
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 to#tagList(List
.) - Parameters:
tagList
- 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:
#tagList(java.util.Collection
)
-
additionalEncryptionContext
CreateIntegrationRequest.Builder additionalEncryptionContext(Map<String,String> additionalEncryptionContext)
An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.
You can only include this parameter if you specify the
KMSKeyId
parameter.- Parameters:
additionalEncryptionContext
- An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.You can only include this parameter if you specify the
KMSKeyId
parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateIntegrationRequest.Builder description(String description)
A description of the integration.
- Parameters:
description
- A description of the integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateIntegrationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateIntegrationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-