Struct aws_sdk_iot::input::TestInvokeAuthorizerInput [−][src]
#[non_exhaustive]pub struct TestInvokeAuthorizerInput {
pub authorizer_name: Option<String>,
pub token: Option<String>,
pub token_signature: Option<String>,
pub http_context: Option<HttpContext>,
pub mqtt_context: Option<MqttContext>,
pub tls_context: Option<TlsContext>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.The custom authorizer name.
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.
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TestInvokeAuthorizer, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TestInvokeAuthorizer, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<TestInvokeAuthorizer
>
Creates a new builder-style object to manufacture TestInvokeAuthorizerInput
The custom authorizer name.
The signature made with the token and your custom authentication service's private key. This value must be Base-64-encoded.
Specifies a test HTTP authorization request.
Specifies a test MQTT authorization request.
Specifies a test TLS authorization request.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for TestInvokeAuthorizerInput
impl Send for TestInvokeAuthorizerInput
impl Sync for TestInvokeAuthorizerInput
impl Unpin for TestInvokeAuthorizerInput
impl UnwindSafe for TestInvokeAuthorizerInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more