[][src]Struct rusoto_iotanalytics::CustomerManagedDatastoreS3Storage

pub struct CustomerManagedDatastoreS3Storage {
    pub bucket: String,
    pub key_prefix: Option<String>,
    pub role_arn: String,
}

Use this to store data store data in an S3 bucket that you manage. When customer managed storage is selected, the "retentionPeriod" parameter is ignored. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the data store.

Fields

bucket: String

The name of the Amazon S3 bucket in which data store data is stored.

key_prefix: Option<String>

[Optional] The prefix used to create the keys of the data store data objects. Each object in an Amazon S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). The prefix must end with a '/'.

role_arn: String

The ARN of the role which grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

Trait Implementations

impl Clone for CustomerManagedDatastoreS3Storage[src]

impl Debug for CustomerManagedDatastoreS3Storage[src]

impl Default for CustomerManagedDatastoreS3Storage[src]

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

impl PartialEq<CustomerManagedDatastoreS3Storage> for CustomerManagedDatastoreS3Storage[src]

impl Serialize for CustomerManagedDatastoreS3Storage[src]

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