Struct cfn::aws::logs::SubscriptionFilterProperties [] [src]

pub struct SubscriptionFilterProperties {
    pub destination_arn: Value<String>,
    pub filter_pattern: Value<String>,
    pub log_group_name: Value<String>,
    pub role_arn: Option<Value<String>>,
}

Properties for the SubscriptionFilter resource.

Fields

Property DestinationArn.

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

Property FilterPattern.

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

Property LogGroupName.

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

Property RoleArn.

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

Trait Implementations

impl Debug for SubscriptionFilterProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for SubscriptionFilterProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<SubscriptionFilterProperties> for SubscriptionFilter
[src]

[src]

Performs the conversion.

Auto Trait Implementations