Struct rusoto_logs::CreateLogGroupRequest[][src]

pub struct CreateLogGroupRequest {
    pub kms_key_id: Option<String>,
    pub log_group_name: String,
    pub tags: Option<HashMap<String, String>>,
}

Fields

The Amazon Resource Name (ARN) of the CMK to use when encrypting log data. For more information, see Amazon Resource Names - AWS Key Management Service (AWS KMS).

The name of the log group.

The key-value pairs to use for the tags.

Trait Implementations

impl Default for CreateLogGroupRequest
[src]

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

impl Debug for CreateLogGroupRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateLogGroupRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateLogGroupRequest
[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