#[non_exhaustive]pub struct RedshiftConnectorProfileProperties { /* private fields */ }Expand description
The connector-specific profile properties when using Amazon Redshift.
Implementations§
source§impl RedshiftConnectorProfileProperties
impl RedshiftConnectorProfileProperties
sourcepub fn database_url(&self) -> Option<&str>
pub fn database_url(&self) -> Option<&str>
The JDBC URL of the Amazon Redshift cluster.
sourcepub fn bucket_name(&self) -> Option<&str>
pub fn bucket_name(&self) -> Option<&str>
A name for the associated Amazon S3 bucket.
sourcepub fn bucket_prefix(&self) -> Option<&str>
pub fn bucket_prefix(&self) -> Option<&str>
The object key for the destination bucket in which Amazon AppFlow places the files.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of IAM role that grants Amazon Redshift read-only access to Amazon S3. For more information, and for the polices that you attach to this role, see Allow Amazon Redshift to access your Amazon AppFlow data in Amazon S3.
sourcepub fn data_api_role_arn(&self) -> Option<&str>
pub fn data_api_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that permits Amazon AppFlow to access your Amazon Redshift database through the Data API. For more information, and for the polices that you attach to this role, see Allow Amazon AppFlow to access Amazon Redshift databases with the Data API.
sourcepub fn is_redshift_serverless(&self) -> bool
pub fn is_redshift_serverless(&self) -> bool
Indicates whether the connector profile defines a connection to an Amazon Redshift Serverless data warehouse.
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The unique ID that's assigned to an Amazon Redshift cluster.
sourcepub fn workgroup_name(&self) -> Option<&str>
pub fn workgroup_name(&self) -> Option<&str>
The name of an Amazon Redshift workgroup.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of an Amazon Redshift database.
source§impl RedshiftConnectorProfileProperties
impl RedshiftConnectorProfileProperties
sourcepub fn builder() -> RedshiftConnectorProfilePropertiesBuilder
pub fn builder() -> RedshiftConnectorProfilePropertiesBuilder
Creates a new builder-style object to manufacture RedshiftConnectorProfileProperties.
Trait Implementations§
source§impl Clone for RedshiftConnectorProfileProperties
impl Clone for RedshiftConnectorProfileProperties
source§fn clone(&self) -> RedshiftConnectorProfileProperties
fn clone(&self) -> RedshiftConnectorProfileProperties
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<RedshiftConnectorProfileProperties> for RedshiftConnectorProfileProperties
impl PartialEq<RedshiftConnectorProfileProperties> for RedshiftConnectorProfileProperties
source§fn eq(&self, other: &RedshiftConnectorProfileProperties) -> bool
fn eq(&self, other: &RedshiftConnectorProfileProperties) -> bool
self and other values to be equal, and is used
by ==.