#[non_exhaustive]pub struct CreateIntegrationOutput {
pub source_arn: Option<String>,
pub target_arn: Option<String>,
pub integration_name: Option<String>,
pub integration_arn: Option<String>,
pub kms_key_id: Option<String>,
pub additional_encryption_context: Option<HashMap<String, String>>,
pub status: Option<IntegrationStatus>,
pub tags: Option<Vec<Tag>>,
pub create_time: Option<DateTime>,
pub errors: Option<Vec<IntegrationError>>,
/* private fields */
}
Expand description
A zero-ETL integration with Amazon Redshift.
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 used as the source for replication.
target_arn: Option<String>
The ARN of the Redshift data warehouse used as the target for replication.
integration_name: Option<String>
The name of the integration.
integration_arn: Option<String>
The ARN of the integration.
kms_key_id: Option<String>
The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key used to to encrypt the integration.
additional_encryption_context: Option<HashMap<String, String>>
The encryption context for the integration. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.
status: Option<IntegrationStatus>
The current status of the integration.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
create_time: Option<DateTime>
The time when the integration was created, in Universal Coordinated Time (UTC).
errors: Option<Vec<IntegrationError>>
Any errors associated with the integration.
Implementations§
source§impl CreateIntegrationOutput
impl CreateIntegrationOutput
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the database used 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 used 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 integration_arn(&self) -> Option<&str>
pub fn integration_arn(&self) -> Option<&str>
The ARN 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 used to to encrypt the integration.
sourcepub fn additional_encryption_context(&self) -> Option<&HashMap<String, String>>
pub fn additional_encryption_context(&self) -> Option<&HashMap<String, String>>
The encryption context for the integration. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.
sourcepub fn status(&self) -> Option<&IntegrationStatus>
pub fn status(&self) -> Option<&IntegrationStatus>
The current status of the integration.
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()
.
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The time when the integration was created, in Universal Coordinated Time (UTC).
sourcepub fn errors(&self) -> &[IntegrationError]
pub fn errors(&self) -> &[IntegrationError]
Any errors associated with the integration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .errors.is_none()
.
source§impl CreateIntegrationOutput
impl CreateIntegrationOutput
sourcepub fn builder() -> CreateIntegrationOutputBuilder
pub fn builder() -> CreateIntegrationOutputBuilder
Creates a new builder-style object to manufacture CreateIntegrationOutput
.
Trait Implementations§
source§impl Clone for CreateIntegrationOutput
impl Clone for CreateIntegrationOutput
source§fn clone(&self) -> CreateIntegrationOutput
fn clone(&self) -> CreateIntegrationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateIntegrationOutput
impl Debug for CreateIntegrationOutput
source§impl PartialEq for CreateIntegrationOutput
impl PartialEq for CreateIntegrationOutput
source§fn eq(&self, other: &CreateIntegrationOutput) -> bool
fn eq(&self, other: &CreateIntegrationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateIntegrationOutput
impl RequestId for CreateIntegrationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.