[][src]Struct rusoto_lex_models::LogSettingsRequest

pub struct LogSettingsRequest {
    pub destination: String,
    pub kms_key_arn: Option<String>,
    pub log_type: String,
    pub resource_arn: String,
}

Settings used to configure delivery mode and destination for conversation logs.

Fields

destination: String

Where the logs will be delivered. Text logs are delivered to a CloudWatch Logs log group. Audio logs are delivered to an S3 bucket.

kms_key_arn: Option<String>

The Amazon Resource Name (ARN) of the AWS KMS customer managed key for encrypting audio logs delivered to an S3 bucket. The key does not apply to CloudWatch Logs and is optional for S3 buckets.

log_type: String

The type of logging to enable. Text logs are delivered to a CloudWatch Logs log group. Audio logs are delivered to an S3 bucket.

resource_arn: String

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or S3 bucket where the logs should be delivered.

Trait Implementations

impl Clone for LogSettingsRequest[src]

impl Debug for LogSettingsRequest[src]

impl Default for LogSettingsRequest[src]

impl PartialEq<LogSettingsRequest> for LogSettingsRequest[src]

impl Serialize for LogSettingsRequest[src]

impl StructuralPartialEq for LogSettingsRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.