[][src]Struct rusoto_redshift::CreateUsageLimitMessage

pub struct CreateUsageLimitMessage {
    pub amount: i64,
    pub breach_action: Option<String>,
    pub cluster_identifier: String,
    pub feature_type: String,
    pub limit_type: String,
    pub period: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Fields

amount: i64

The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB). The value must be a positive number.

breach_action: Option<String>

The action that Amazon Redshift takes when the limit is reached. The default is log. For more information about this parameter, see UsageLimit.

cluster_identifier: String

The identifier of the cluster that you want to limit usage.

feature_type: String

The Amazon Redshift feature that you want to limit.

limit_type: String

The type of limit. Depending on the feature type, this can be based on a time duration or data size. If FeatureType is spectrum, then LimitType must be data-scanned. If FeatureType is concurrency-scaling, then LimitType must be time.

period: Option<String>

The time period that the amount applies to. A weekly period begins on Sunday. The default is monthly.

tags: Option<Vec<Tag>>

A list of tag instances.

Trait Implementations

impl Clone for CreateUsageLimitMessage[src]

impl Debug for CreateUsageLimitMessage[src]

impl Default for CreateUsageLimitMessage[src]

impl PartialEq<CreateUsageLimitMessage> for CreateUsageLimitMessage[src]

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