Struct aws_sdk_eventbridge::model::RedshiftDataParameters
source · [−]#[non_exhaustive]pub struct RedshiftDataParameters {
pub secret_manager_arn: Option<String>,
pub database: Option<String>,
pub db_user: Option<String>,
pub sql: Option<String>,
pub statement_name: Option<String>,
pub with_event: bool,
}Expand description
These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API ExecuteStatement based on EventBridge events.
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.secret_manager_arn: Option<String>The name or ARN of the secret that enables access to the database. Required when authenticating using Amazon Web Services Secrets Manager.
database: Option<String>The name of the database. Required when authenticating using temporary credentials.
db_user: Option<String>The database user name. Required when authenticating using temporary credentials.
sql: Option<String>The SQL statement text to run.
statement_name: Option<String>The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
with_event: boolIndicates whether to send an event back to EventBridge after the SQL statement runs.
Implementations
sourceimpl RedshiftDataParameters
impl RedshiftDataParameters
sourcepub fn secret_manager_arn(&self) -> Option<&str>
pub fn secret_manager_arn(&self) -> Option<&str>
The name or ARN of the secret that enables access to the database. Required when authenticating using Amazon Web Services Secrets Manager.
sourcepub fn database(&self) -> Option<&str>
pub fn database(&self) -> Option<&str>
The name of the database. Required when authenticating using temporary credentials.
sourcepub fn db_user(&self) -> Option<&str>
pub fn db_user(&self) -> Option<&str>
The database user name. Required when authenticating using temporary credentials.
sourcepub fn statement_name(&self) -> Option<&str>
pub fn statement_name(&self) -> Option<&str>
The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
sourcepub fn with_event(&self) -> bool
pub fn with_event(&self) -> bool
Indicates whether to send an event back to EventBridge after the SQL statement runs.
sourceimpl RedshiftDataParameters
impl RedshiftDataParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RedshiftDataParameters
Trait Implementations
sourceimpl Clone for RedshiftDataParameters
impl Clone for RedshiftDataParameters
sourcefn clone(&self) -> RedshiftDataParameters
fn clone(&self) -> RedshiftDataParameters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for RedshiftDataParameters
impl Debug for RedshiftDataParameters
sourceimpl PartialEq<RedshiftDataParameters> for RedshiftDataParameters
impl PartialEq<RedshiftDataParameters> for RedshiftDataParameters
sourcefn eq(&self, other: &RedshiftDataParameters) -> bool
fn eq(&self, other: &RedshiftDataParameters) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &RedshiftDataParameters) -> bool
fn ne(&self, other: &RedshiftDataParameters) -> bool
This method tests for !=.
impl StructuralPartialEq for RedshiftDataParameters
Auto Trait Implementations
impl RefUnwindSafe for RedshiftDataParameters
impl Send for RedshiftDataParameters
impl Sync for RedshiftDataParameters
impl Unpin for RedshiftDataParameters
impl UnwindSafe for RedshiftDataParameters
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more