Struct rusoto_cloudtrail::Trail [] [src]

pub struct Trail {
    pub cloud_watch_logs_log_group_arn: Option<String>,
    pub cloud_watch_logs_role_arn: Option<String>,
    pub has_custom_event_selectors: Option<bool>,
    pub home_region: Option<String>,
    pub include_global_service_events: Option<bool>,
    pub is_multi_region_trail: Option<bool>,
    pub kms_key_id: Option<String>,
    pub log_file_validation_enabled: Option<bool>,
    pub name: Option<String>,
    pub s3_bucket_name: Option<String>,
    pub s3_key_prefix: Option<String>,
    pub sns_topic_arn: Option<String>,
    pub trail_arn: Option<String>,
}

The settings for a trail.

Fields

Specifies an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered.

Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.

Specifies if the trail has custom event selectors.

The region in which the trail was created.

Set to True to include AWS API calls from AWS global services such as IAM. Otherwise, False.

Specifies whether the trail belongs only to one region or exists in all regions.

Specifies the KMS key ID that encrypts the logs delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the format:

arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012

Specifies whether log file validation is enabled.

Name of the trail set by calling CreateTrail. The maximum length is 128 characters.

Name of the Amazon S3 bucket into which CloudTrail delivers your trail files. See Amazon S3 Bucket Naming Requirements.

Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see Finding Your CloudTrail Log Files.The maximum length is 200 characters.

Specifies the ARN of the Amazon SNS topic that CloudTrail uses to send notifications when log files are delivered. The format of a topic ARN is:

arn:aws:sns:us-east-1:123456789012:MyTopic

Specifies the ARN of the trail. The format of a trail ARN is:

arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail

Trait Implementations

impl Default for Trail
[src]

[src]

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

impl Debug for Trail
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Trail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Trail

impl Sync for Trail