[][src]Struct rusoto_cloudtrail::UpdateTrailResponse

pub struct UpdateTrailResponse {
    pub cloud_watch_logs_log_group_arn: Option<String>,
    pub cloud_watch_logs_role_arn: Option<String>,
    pub include_global_service_events: Option<bool>,
    pub is_multi_region_trail: Option<bool>,
    pub is_organization_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>,
}

Returns the objects or data listed below if successful. Otherwise, returns an error.

Fields

cloud_watch_logs_log_group_arn: Option<String>

Specifies the Amazon Resource Name (ARN) of the log group to which CloudTrail logs will be delivered.

cloud_watch_logs_role_arn: Option<String>

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

include_global_service_events: Option<bool>

Specifies whether the trail is publishing events from global services such as IAM to the log files.

is_multi_region_trail: Option<bool>

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

is_organization_trail: Option<bool>

Specifies whether the trail is an organization trail.

kms_key_id: Option<String>

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-2:123456789012:key/12345678-1234-1234-1234-123456789012

log_file_validation_enabled: Option<bool>

Specifies whether log file integrity validation is enabled.

name: Option<String>

Specifies the name of the trail.

s3_bucket_name: Option<String>

Specifies the name of the Amazon S3 bucket designated for publishing log files.

s3_key_prefix: Option<String>

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.

sns_topic_arn: Option<String>

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-2:123456789012:MyTopic

trail_arn: Option<String>

Specifies the ARN of the trail that was updated. The format of a trail ARN is:

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

Trait Implementations

impl Default for UpdateTrailResponse[src]

impl PartialEq<UpdateTrailResponse> for UpdateTrailResponse[src]

impl Clone for UpdateTrailResponse[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateTrailResponse[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self