Struct cfn::aws::events::RuleProperties [] [src]

pub struct RuleProperties {
    pub description: Option<Value<String>>,
    pub event_pattern: Option<Value<Value>>,
    pub name: Option<Value<String>>,
    pub role_arn: Option<Value<String>>,
    pub schedule_expression: Option<Value<String>>,
    pub state: Option<Value<String>>,
    pub targets: Option<ValueList<Target>>,
}

Properties for the Rule resource.

Fields

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EventPattern.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property RoleArn.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ScheduleExpression.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property State.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Targets.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for RuleProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for RuleProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for RuleProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<RuleProperties> for Rule
[src]

[src]

Performs the conversion.

Auto Trait Implementations