[][src]Struct rusoto_iotanalytics::CustomerManagedChannelS3Storage

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

Use this to store channel data in an S3 bucket that you manage. If customer managed storage is selected, the retentionPeriod parameter is ignored. You cannot change the choice of service-managed or customer-managed S3 storage after the channel is created.

Fields

bucket: String

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

key_prefix: Option<String>

Optional. The prefix used to create the keys of the channel data objects. Each object in an S3 bucket has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/).

role_arn: String

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

Trait Implementations

impl Clone for CustomerManagedChannelS3Storage[src]

impl Debug for CustomerManagedChannelS3Storage[src]

impl Default for CustomerManagedChannelS3Storage[src]

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

impl PartialEq<CustomerManagedChannelS3Storage> for CustomerManagedChannelS3Storage[src]

impl Serialize for CustomerManagedChannelS3Storage[src]

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