pub struct CreateAuthorizerRequest {
pub authorizer_function_arn: String,
pub authorizer_name: String,
pub signing_disabled: Option<bool>,
pub status: Option<String>,
pub tags: Option<Vec<Tag>>,
pub token_key_name: Option<String>,
pub token_signing_public_keys: Option<HashMap<String, String>>,
}
Fields§
The ARN of the authorizer's Lambda function.
The authorizer name.
signing_disabled: Option<bool>
Specifies whether AWS IoT validates the token signature in an authorization request.
status: Option<String>
The status of the create authorizer request.
Metadata which can be used to manage the custom authorizer.
For URI Request parameters use format: ...key1=value1&key2=value2...
For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."
For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
token_key_name: Option<String>
The name of the token key used to extract the token from the HTTP headers.
token_signing_public_keys: Option<HashMap<String, String>>
The public keys used to verify the digital signature returned by your custom authentication service.
Trait Implementations§
Source§impl Clone for CreateAuthorizerRequest
impl Clone for CreateAuthorizerRequest
Source§fn clone(&self) -> CreateAuthorizerRequest
fn clone(&self) -> CreateAuthorizerRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateAuthorizerRequest
impl Debug for CreateAuthorizerRequest
Source§impl Default for CreateAuthorizerRequest
impl Default for CreateAuthorizerRequest
Source§fn default() -> CreateAuthorizerRequest
fn default() -> CreateAuthorizerRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateAuthorizerRequest
impl PartialEq for CreateAuthorizerRequest
Source§impl Serialize for CreateAuthorizerRequest
impl Serialize for CreateAuthorizerRequest
impl StructuralPartialEq for CreateAuthorizerRequest
Auto Trait Implementations§
impl Freeze for CreateAuthorizerRequest
impl RefUnwindSafe for CreateAuthorizerRequest
impl Send for CreateAuthorizerRequest
impl Sync for CreateAuthorizerRequest
impl Unpin for CreateAuthorizerRequest
impl UnwindSafe for CreateAuthorizerRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more