Struct aws_sdk_iot::client::fluent_builders::TestInvokeAuthorizer
source · pub struct TestInvokeAuthorizer { /* private fields */ }
Expand description
Fluent builder constructing a request to TestInvokeAuthorizer
.
Tests a custom authorization behavior by invoking a specified custom authorizer. Use this to test and debug the custom authorization behavior of devices that connect to the IoT device gateway.
Requires permission to access the TestInvokeAuthorizer action.
Implementations§
source§impl TestInvokeAuthorizer
impl TestInvokeAuthorizer
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<TestInvokeAuthorizer, AwsResponseRetryClassifier>, SdkError<TestInvokeAuthorizerError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<TestInvokeAuthorizer, AwsResponseRetryClassifier>, SdkError<TestInvokeAuthorizerError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<TestInvokeAuthorizerOutput, SdkError<TestInvokeAuthorizerError>>
pub async fn send(
self
) -> Result<TestInvokeAuthorizerOutput, SdkError<TestInvokeAuthorizerError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
The custom authorizer name.
The custom authorizer name.
sourcepub fn token(self, input: impl Into<String>) -> Self
pub fn token(self, input: impl Into<String>) -> Self
The token returned by your custom authentication service.
sourcepub fn set_token(self, input: Option<String>) -> Self
pub fn set_token(self, input: Option<String>) -> Self
The token returned by your custom authentication service.
sourcepub fn token_signature(self, input: impl Into<String>) -> Self
pub fn token_signature(self, input: impl Into<String>) -> Self
The signature made with the token and your custom authentication service's private key. This value must be Base-64-encoded.
sourcepub fn set_token_signature(self, input: Option<String>) -> Self
pub fn set_token_signature(self, input: Option<String>) -> Self
The signature made with the token and your custom authentication service's private key. This value must be Base-64-encoded.
sourcepub fn http_context(self, input: HttpContext) -> Self
pub fn http_context(self, input: HttpContext) -> Self
Specifies a test HTTP authorization request.
sourcepub fn set_http_context(self, input: Option<HttpContext>) -> Self
pub fn set_http_context(self, input: Option<HttpContext>) -> Self
Specifies a test HTTP authorization request.
sourcepub fn mqtt_context(self, input: MqttContext) -> Self
pub fn mqtt_context(self, input: MqttContext) -> Self
Specifies a test MQTT authorization request.
sourcepub fn set_mqtt_context(self, input: Option<MqttContext>) -> Self
pub fn set_mqtt_context(self, input: Option<MqttContext>) -> Self
Specifies a test MQTT authorization request.
sourcepub fn tls_context(self, input: TlsContext) -> Self
pub fn tls_context(self, input: TlsContext) -> Self
Specifies a test TLS authorization request.
sourcepub fn set_tls_context(self, input: Option<TlsContext>) -> Self
pub fn set_tls_context(self, input: Option<TlsContext>) -> Self
Specifies a test TLS authorization request.
Trait Implementations§
source§impl Clone for TestInvokeAuthorizer
impl Clone for TestInvokeAuthorizer
source§fn clone(&self) -> TestInvokeAuthorizer
fn clone(&self) -> TestInvokeAuthorizer
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more