[][src]Struct rusoto_iotanalytics::CustomerManagedChannelS3StorageSummary

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

Used to store channel data in an S3 bucket that you manage.

Fields

bucket: Option<String>

The name of the Amazon 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 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: Option<String>

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

Trait Implementations

impl Clone for CustomerManagedChannelS3StorageSummary[src]

impl Debug for CustomerManagedChannelS3StorageSummary[src]

impl Default for CustomerManagedChannelS3StorageSummary[src]

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

impl PartialEq<CustomerManagedChannelS3StorageSummary> for CustomerManagedChannelS3StorageSummary[src]

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