#[non_exhaustive]pub struct CreateIntegrationInput {
pub source_arn: Option<String>,
pub target_arn: Option<String>,
pub integration_name: Option<String>,
pub kms_key_id: Option<String>,
pub additional_encryption_context: Option<HashMap<String, String>>,
pub tags: Option<Vec<Tag>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.source_arn: Option<String>The Amazon Resource Name (ARN) of the database to use as the source for replication.
target_arn: Option<String>The ARN of the Redshift data warehouse to use as the target for replication.
integration_name: Option<String>The name of the integration.
kms_key_id: 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.
additional_encryption_context: 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.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
Implementations§
source§impl CreateIntegrationInput
impl CreateIntegrationInput
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the database to use as the source for replication.
sourcepub fn target_arn(&self) -> Option<&str>
pub fn target_arn(&self) -> Option<&str>
The ARN of the Redshift data warehouse to use as the target for replication.
sourcepub fn integration_name(&self) -> Option<&str>
pub fn integration_name(&self) -> Option<&str>
The name of the integration.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
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) -> Option<&HashMap<String, String>>
pub fn 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.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl CreateIntegrationInput
impl CreateIntegrationInput
sourcepub fn builder() -> CreateIntegrationInputBuilder
pub fn builder() -> CreateIntegrationInputBuilder
Creates a new builder-style object to manufacture CreateIntegrationInput.
Trait Implementations§
source§impl Clone for CreateIntegrationInput
impl Clone for CreateIntegrationInput
source§fn clone(&self) -> CreateIntegrationInput
fn clone(&self) -> CreateIntegrationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateIntegrationInput
impl Debug for CreateIntegrationInput
source§impl PartialEq for CreateIntegrationInput
impl PartialEq for CreateIntegrationInput
source§fn eq(&self, other: &CreateIntegrationInput) -> bool
fn eq(&self, other: &CreateIntegrationInput) -> bool
self and other values to be equal, and is used
by ==.