Struct cfn::aws::cloudtrail::TrailProperties [] [src]

pub struct TrailProperties {
    pub cloud_watch_logs_log_group_arn: Option<Value<String>>,
    pub cloud_watch_logs_role_arn: Option<Value<String>>,
    pub enable_log_file_validation: Option<Value<bool>>,
    pub event_selectors: Option<ValueList<EventSelector>>,
    pub include_global_service_events: Option<Value<bool>>,
    pub is_logging: Value<bool>,
    pub is_multi_region_trail: Option<Value<bool>>,
    pub kms_key_id: Option<Value<String>>,
    pub s3_bucket_name: Value<String>,
    pub s3_key_prefix: Option<Value<String>>,
    pub sns_topic_name: Option<Value<String>>,
    pub tags: Option<ValueList<Tag>>,
    pub trail_name: Option<Value<String>>,
}

Properties for the Trail resource.

Fields

Property CloudWatchLogsLogGroupArn.

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

Property CloudWatchLogsRoleArn.

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

Property EnableLogFileValidation.

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

Property EventSelectors.

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

Property IncludeGlobalServiceEvents.

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

Property IsLogging.

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

Property IsMultiRegionTrail.

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

Property KMSKeyId.

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

Property S3BucketName.

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

Property S3KeyPrefix.

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

Property SnsTopicName.

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

Property Tags.

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

Property TrailName.

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

Trait Implementations

impl Debug for TrailProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for TrailProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<TrailProperties> for Trail
[src]

[src]

Performs the conversion.

Auto Trait Implementations