[][src]Struct rusoto_appstream::UsageReportSubscription

pub struct UsageReportSubscription {
    pub last_generated_report_date: Option<f64>,
    pub s3_bucket_name: Option<String>,
    pub schedule: Option<String>,
    pub subscription_errors: Option<Vec<LastReportGenerationExecutionError>>,
}

Describes information about the usage report subscription.

Fields

last_generated_report_date: Option<f64>

The time when the last usage report was generated.

s3_bucket_name: Option<String>

The Amazon S3 bucket where generated reports are stored.

If you enabled on-instance session scripts and Amazon S3 logging for your session script configuration, AppStream 2.0 created an S3 bucket to store the script output. The bucket is unique to your account and Region. When you enable usage reporting in this case, AppStream 2.0 uses the same bucket to store your usage reports. If you haven't already enabled on-instance session scripts, when you enable usage reports, AppStream 2.0 creates a new S3 bucket.

schedule: Option<String>

The schedule for generating usage reports.

subscription_errors: Option<Vec<LastReportGenerationExecutionError>>

The errors that were returned if usage reports couldn't be generated.

Trait Implementations

impl Clone for UsageReportSubscription[src]

impl Debug for UsageReportSubscription[src]

impl Default for UsageReportSubscription[src]

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

impl PartialEq<UsageReportSubscription> for UsageReportSubscription[src]

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