[][src]Struct rusoto_greengrass::Logger

pub struct Logger {
    pub component: String,
    pub id: String,
    pub level: String,
    pub space: Option<i64>,
    pub type_: String,
}

Information about a logger

Fields

component: String

The component that will be subject to logging.

id: String

A descriptive or arbitrary ID for the logger. This value must be unique within the logger definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.

level: String

The level of the logs.

space: Option<i64>

The amount of file space, in KB, to use if the local file system is used for logging purposes.

type_: String

The type of log output which will be used.

Trait Implementations

impl Clone for Logger[src]

impl Debug for Logger[src]

impl Default for Logger[src]

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

impl PartialEq<Logger> for Logger[src]

impl Serialize for Logger[src]

impl StructuralPartialEq for Logger[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.