pub struct CreateIntegrationFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateIntegration.
Creates a zero-ETL integration with Amazon Redshift.
Implementations§
source§impl CreateIntegrationFluentBuilder
impl CreateIntegrationFluentBuilder
sourcepub fn as_input(&self) -> &CreateIntegrationInputBuilder
pub fn as_input(&self) -> &CreateIntegrationInputBuilder
Access the CreateIntegration as a reference.
sourcepub async fn send(
self
) -> Result<CreateIntegrationOutput, SdkError<CreateIntegrationError, HttpResponse>>
pub async fn send( self ) -> Result<CreateIntegrationOutput, SdkError<CreateIntegrationError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<CreateIntegrationOutput, CreateIntegrationError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateIntegrationOutput, CreateIntegrationError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn source_arn(self, input: impl Into<String>) -> Self
pub fn source_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the database to use as the source for replication.
sourcepub fn set_source_arn(self, input: Option<String>) -> Self
pub fn set_source_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the database to use as the source for replication.
sourcepub fn get_source_arn(&self) -> &Option<String>
pub fn get_source_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the database to use as the source for replication.
sourcepub fn target_arn(self, input: impl Into<String>) -> Self
pub fn target_arn(self, input: impl Into<String>) -> Self
The ARN of the Redshift data warehouse to use as the target for replication.
sourcepub fn set_target_arn(self, input: Option<String>) -> Self
pub fn set_target_arn(self, input: Option<String>) -> Self
The ARN of the Redshift data warehouse to use as the target for replication.
sourcepub fn get_target_arn(&self) -> &Option<String>
pub fn get_target_arn(&self) -> &Option<String>
The ARN of the Redshift data warehouse to use as the target for replication.
sourcepub fn integration_name(self, input: impl Into<String>) -> Self
pub fn integration_name(self, input: impl Into<String>) -> Self
The name of the integration.
sourcepub fn set_integration_name(self, input: Option<String>) -> Self
pub fn set_integration_name(self, input: Option<String>) -> Self
The name of the integration.
sourcepub fn get_integration_name(&self) -> &Option<String>
pub fn get_integration_name(&self) -> &Option<String>
The name of the integration.
sourcepub fn kms_key_id(self, input: impl Into<String>) -> Self
pub fn kms_key_id(self, input: impl Into<String>) -> Self
The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default Amazon Web Services owned key.
sourcepub fn set_kms_key_id(self, input: Option<String>) -> Self
pub fn set_kms_key_id(self, input: Option<String>) -> Self
The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default Amazon Web Services owned key.
sourcepub fn get_kms_key_id(&self) -> &Option<String>
pub fn get_kms_key_id(&self) -> &Option<String>
The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default Amazon Web Services owned key.
sourcepub fn additional_encryption_context(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn additional_encryption_context( self, k: impl Into<String>, v: impl Into<String> ) -> Self
Adds a key-value pair to AdditionalEncryptionContext.
To override the contents of this collection use set_additional_encryption_context.
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.
sourcepub fn set_additional_encryption_context(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_additional_encryption_context( self, input: Option<HashMap<String, String>> ) -> Self
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.
sourcepub fn get_additional_encryption_context(
&self
) -> &Option<HashMap<String, String>>
pub fn get_additional_encryption_context( &self ) -> &Option<HashMap<String, String>>
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.
Appends an item to Tags.
To override the contents of this collection use set_tags.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
Trait Implementations§
source§impl Clone for CreateIntegrationFluentBuilder
impl Clone for CreateIntegrationFluentBuilder
source§fn clone(&self) -> CreateIntegrationFluentBuilder
fn clone(&self) -> CreateIntegrationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more