[][src]Struct rusoto_codestar_notifications::DescribeNotificationRuleResult

pub struct DescribeNotificationRuleResult {
    pub arn: String,
    pub created_by: Option<String>,
    pub created_timestamp: Option<f64>,
    pub detail_type: Option<String>,
    pub event_types: Option<Vec<EventTypeSummary>>,
    pub last_modified_timestamp: Option<f64>,
    pub name: Option<String>,
    pub resource: Option<String>,
    pub status: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub targets: Option<Vec<TargetSummary>>,
}

Fields

arn: String

The Amazon Resource Name (ARN) of the notification rule.

created_by: Option<String>

The name or email alias of the person who created the notification rule.

created_timestamp: Option<f64>

The date and time the notification rule was created, in timestamp format.

detail_type: Option<String>

The level of detail included in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created.

event_types: Option<Vec<EventTypeSummary>>

A list of the event types associated with the notification rule.

last_modified_timestamp: Option<f64>

The date and time the notification rule was most recently updated, in timestamp format.

name: Option<String>

The name of the notification rule.

resource: Option<String>

The Amazon Resource Name (ARN) of the resource associated with the notification rule.

status: Option<String>

The status of the notification rule. Valid statuses are on (sending notifications) or off (not sending notifications).

tags: Option<HashMap<String, String>>

The tags associated with the notification rule.

targets: Option<Vec<TargetSummary>>

A list of the SNS topics associated with the notification rule.

Trait Implementations

impl Clone for DescribeNotificationRuleResult[src]

impl Debug for DescribeNotificationRuleResult[src]

impl Default for DescribeNotificationRuleResult[src]

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

impl PartialEq<DescribeNotificationRuleResult> for DescribeNotificationRuleResult[src]

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