pub struct DescribeRuleOutput {
pub name: Option<String>,
pub arn: Option<String>,
pub event_pattern: Option<String>,
pub schedule_expression: Option<String>,
pub state: Option<String>,
pub description: Option<String>,
pub role_arn: Option<String>,
pub managed_by: Option<String>,
pub event_bus_name: Option<String>,
pub created_by: Option<String>,
}Expand description
Output for the DescribeRule operation.
Fields§
§name: Option<String>The name of the rule.
arn: Option<String>The ARN of the rule.
event_pattern: Option<String>The event pattern for the rule.
schedule_expression: Option<String>The schedule expression for the rule.
state: Option<String>The state of the rule (ENABLED or DISABLED).
description: Option<String>The description of the rule.
role_arn: Option<String>The IAM role ARN associated with the rule.
managed_by: Option<String>The AWS service that manages the rule.
event_bus_name: Option<String>The name of the event bus associated with the rule.
created_by: Option<String>The account ID of the creator of the rule.
Trait Implementations§
Source§impl Clone for DescribeRuleOutput
impl Clone for DescribeRuleOutput
Source§fn clone(&self) -> DescribeRuleOutput
fn clone(&self) -> DescribeRuleOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescribeRuleOutput
impl Debug for DescribeRuleOutput
Source§impl Default for DescribeRuleOutput
impl Default for DescribeRuleOutput
Source§fn default() -> DescribeRuleOutput
fn default() -> DescribeRuleOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeRuleOutput
impl<'de> Deserialize<'de> for DescribeRuleOutput
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DescribeRuleOutput
impl RefUnwindSafe for DescribeRuleOutput
impl Send for DescribeRuleOutput
impl Sync for DescribeRuleOutput
impl Unpin for DescribeRuleOutput
impl UnsafeUnpin for DescribeRuleOutput
impl UnwindSafe for DescribeRuleOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more