[][src]Struct rusoto_dynamodb::DescribeContributorInsightsOutput

pub struct DescribeContributorInsightsOutput {
    pub contributor_insights_rule_list: Option<Vec<String>>,
    pub contributor_insights_status: Option<String>,
    pub failure_exception: Option<FailureException>,
    pub index_name: Option<String>,
    pub last_update_date_time: Option<f64>,
    pub table_name: Option<String>,
}

Fields

contributor_insights_rule_list: Option<Vec<String>>

List of names of the associated Alpine rules.

contributor_insights_status: Option<String>

Current Status contributor insights.

failure_exception: Option<FailureException>

Returns information about the last failure that encountered.

The most common exceptions for a FAILED status are:

  • LimitExceededException - Per-account Amazon CloudWatch Contributor Insights rule limit reached. Please disable Contributor Insights for other tables/indexes OR disable Contributor Insights rules before retrying.

  • AccessDeniedException - Amazon CloudWatch Contributor Insights rules cannot be modified due to insufficient permissions.

  • AccessDeniedException - Failed to create service-linked role for Contributor Insights due to insufficient permissions.

  • InternalServerError - Failed to create Amazon CloudWatch Contributor Insights rules. Please retry request.

index_name: Option<String>

The name of the global secondary index being described.

last_update_date_time: Option<f64>

Timestamp of the last time the status was changed.

table_name: Option<String>

The name of the table being described.

Trait Implementations

impl Clone for DescribeContributorInsightsOutput[src]

impl Debug for DescribeContributorInsightsOutput[src]

impl Default for DescribeContributorInsightsOutput[src]

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

impl PartialEq<DescribeContributorInsightsOutput> for DescribeContributorInsightsOutput[src]

impl StructuralPartialEq for DescribeContributorInsightsOutput[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.