Struct rusoto_route53::QueryLoggingConfig[][src]

pub struct QueryLoggingConfig {
    pub cloud_watch_logs_log_group_arn: String,
    pub hosted_zone_id: String,
    pub id: String,
}

A complex type that contains information about a configuration for DNS query logging.

Fields

The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.

The ID of the hosted zone that CloudWatch Logs is logging queries for.

The ID for a configuration for DNS query logging.

Trait Implementations

impl Default for QueryLoggingConfig
[src]

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

impl Debug for QueryLoggingConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for QueryLoggingConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for QueryLoggingConfig
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations