[][src]Struct rusoto_iot::TestInvokeAuthorizerRequest

pub struct TestInvokeAuthorizerRequest {
    pub authorizer_name: String,
    pub http_context: Option<HttpContext>,
    pub mqtt_context: Option<MqttContext>,
    pub tls_context: Option<TlsContext>,
    pub token: Option<String>,
    pub token_signature: Option<String>,
}

Fields

authorizer_name: String

The custom authorizer name.

http_context: Option<HttpContext>

Specifies a test HTTP authorization request.

mqtt_context: Option<MqttContext>

Specifies a test MQTT authorization request.

tls_context: Option<TlsContext>

Specifies a test TLS authorization request.

token: Option<String>

The token returned by your custom authentication service.

token_signature: Option<String>

The signature made with the token and your custom authentication service's private key. This value must be Base-64-encoded.

Trait Implementations

impl Clone for TestInvokeAuthorizerRequest[src]

impl Debug for TestInvokeAuthorizerRequest[src]

impl Default for TestInvokeAuthorizerRequest[src]

impl PartialEq<TestInvokeAuthorizerRequest> for TestInvokeAuthorizerRequest[src]

impl Serialize for TestInvokeAuthorizerRequest[src]

impl StructuralPartialEq for TestInvokeAuthorizerRequest[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, 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> Sealed<T> for T where
    T: ?Sized

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.