Struct aws_sdk_quicksight::model::RedshiftParameters [−][src]
#[non_exhaustive]pub struct RedshiftParameters {
pub host: Option<String>,
pub port: i32,
pub database: Option<String>,
pub cluster_id: Option<String>,
}
Expand description
The parameters for Amazon Redshift. The ClusterId
field can be blank if Host
and Port
are both set. The Host
and Port
fields can be blank if the ClusterId
field is set.
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.host: Option<String>
Host. This field can be blank if ClusterId
is provided.
port: i32
Port. This field can be blank if the ClusterId
is provided.
database: Option<String>
Database.
cluster_id: Option<String>
Cluster ID. This field can be blank if the Host
and Port
are provided.
Implementations
Cluster ID. This field can be blank if the Host
and Port
are provided.
Creates a new builder-style object to manufacture RedshiftParameters
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for RedshiftParameters
impl Send for RedshiftParameters
impl Sync for RedshiftParameters
impl Unpin for RedshiftParameters
impl UnwindSafe for RedshiftParameters
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more