[][src]Struct rusoto_appsync::LogConfig

pub struct LogConfig {
    pub cloud_watch_logs_role_arn: String,
    pub exclude_verbose_content: Option<bool>,
    pub field_log_level: String,
}

The CloudWatch Logs configuration.

Fields

cloud_watch_logs_role_arn: String

The service role that AWS AppSync will assume to publish to Amazon CloudWatch logs in your account.

exclude_verbose_content: Option<bool>

Set to TRUE to exclude sections that contain information such as headers, context, and evaluated mapping templates, regardless of logging level.

field_log_level: String

The field logging level. Values can be NONE, ERROR, or ALL.

  • NONE: No field-level logs are captured.

  • ERROR: Logs the following information only for the fields that are in error:

    • The error section in the server response.

    • Field-level errors.

    • The generated request/response functions that got resolved for error fields.

  • ALL: The following information is logged for all fields in the query:

    • Field-level tracing information.

    • The generated request/response functions that got resolved for each field.

Trait Implementations

impl Clone for LogConfig[src]

impl Debug for LogConfig[src]

impl Default for LogConfig[src]

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

impl PartialEq<LogConfig> for LogConfig[src]

impl Serialize for LogConfig[src]

impl StructuralPartialEq for LogConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.