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).
The tags associated with the notification rule.
targets: Option<Vec<TargetSummary>>
A list of the SNS topics associated with the notification rule.
Trait Implementations§
Source§impl Clone for DescribeNotificationRuleResult
impl Clone for DescribeNotificationRuleResult
Source§fn clone(&self) -> DescribeNotificationRuleResult
fn clone(&self) -> DescribeNotificationRuleResult
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DescribeNotificationRuleResult
impl Default for DescribeNotificationRuleResult
Source§fn default() -> DescribeNotificationRuleResult
fn default() -> DescribeNotificationRuleResult
Source§impl<'de> Deserialize<'de> for DescribeNotificationRuleResult
impl<'de> Deserialize<'de> for DescribeNotificationRuleResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for DescribeNotificationRuleResult
impl PartialEq for DescribeNotificationRuleResult
Source§fn eq(&self, other: &DescribeNotificationRuleResult) -> bool
fn eq(&self, other: &DescribeNotificationRuleResult) -> bool
self
and other
values to be equal, and is used by ==
.