[][src]Struct rusoto_sagemaker::S3StorageConfig

pub struct S3StorageConfig {
    pub kms_key_id: Option<String>,
    pub s3_uri: String,
}

The Amazon Simple Storage (Amazon S3) location and and security configuration for OfflineStore.

Fields

kms_key_id: Option<String>

The AWS Key Management Service (KMS) key ID of the key used to encrypt any objects written into the OfflineStore S3 location.

The IAM roleARN that is passed as a parameter to CreateFeatureGroup must have below permissions to the KmsKeyId:

  • "kms:GenerateDataKey"

s3_uri: String

The S3 URI, or location in Amazon S3, of OfflineStore.

S3 URIs have a format similar to the following: s3://example-bucket/prefix/.

Trait Implementations

impl Clone for S3StorageConfig[src]

impl Debug for S3StorageConfig[src]

impl Default for S3StorageConfig[src]

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

impl PartialEq<S3StorageConfig> for S3StorageConfig[src]

impl Serialize for S3StorageConfig[src]

impl StructuralPartialEq for S3StorageConfig[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.