[][src]Struct rusoto_iot::AuthorizerConfig

pub struct AuthorizerConfig {
    pub allow_authorizer_override: Option<bool>,
    pub default_authorizer_name: Option<String>,
}

An object that specifies the authorization service for a domain.

Fields

allow_authorizer_override: Option<bool>

A Boolean that specifies whether the domain configuration's authorization service can be overridden.

default_authorizer_name: Option<String>

The name of the authorization service for a domain configuration.

Trait Implementations

impl Clone for AuthorizerConfig[src]

impl Debug for AuthorizerConfig[src]

impl Default for AuthorizerConfig[src]

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

impl PartialEq<AuthorizerConfig> for AuthorizerConfig[src]

impl Serialize for AuthorizerConfig[src]

impl StructuralPartialEq for AuthorizerConfig[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: Deserialize<'de>, 
[src]

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