[][src]Struct rusoto_sagemaker::RedshiftDatasetDefinition

pub struct RedshiftDatasetDefinition {
    pub cluster_id: String,
    pub cluster_role_arn: String,
    pub database: String,
    pub db_user: String,
    pub kms_key_id: Option<String>,
    pub output_compression: Option<String>,
    pub output_format: String,
    pub output_s3_uri: String,
    pub query_string: String,
}

Configuration for Redshift Dataset Definition input.

Fields

cluster_id: Stringcluster_role_arn: String

The IAM role attached to your Redshift cluster that Amazon SageMaker uses to generate datasets.

database: Stringdb_user: Stringkms_key_id: Option<String>

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data from a Redshift execution.

output_compression: Option<String>output_format: Stringoutput_s3_uri: String

The location in Amazon S3 where the Redshift query results are stored.

query_string: String

Trait Implementations

impl Clone for RedshiftDatasetDefinition[src]

impl Debug for RedshiftDatasetDefinition[src]

impl Default for RedshiftDatasetDefinition[src]

impl<'de> Deserialize<'de> for RedshiftDatasetDefinition[src]

impl PartialEq<RedshiftDatasetDefinition> for RedshiftDatasetDefinition[src]

impl Serialize for RedshiftDatasetDefinition[src]

impl StructuralPartialEq for RedshiftDatasetDefinition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.