pub struct AuthorizerDescription {
pub authorizer_arn: Option<String>,
pub authorizer_function_arn: Option<String>,
pub authorizer_name: Option<String>,
pub creation_date: Option<f64>,
pub last_modified_date: Option<f64>,
pub signing_disabled: Option<bool>,
pub status: Option<String>,
pub token_key_name: Option<String>,
pub token_signing_public_keys: Option<HashMap<String, String>>,
}Expand description
The authorizer description.
Fields§
The authorizer ARN.
The authorizer's Lambda function ARN.
The authorizer name.
creation_date: Option<f64>The UNIX timestamp of when the authorizer was created.
last_modified_date: Option<f64>The UNIX timestamp of when the authorizer was last updated.
signing_disabled: Option<bool>Specifies whether AWS IoT validates the token signature in an authorization request.
status: Option<String>The status of the authorizer.
token_key_name: Option<String>The key used to extract the token from the HTTP headers.
token_signing_public_keys: Option<HashMap<String, String>>The public keys used to validate the token signature returned by your custom authentication service.
Trait Implementations§
Source§impl Clone for AuthorizerDescription
impl Clone for AuthorizerDescription
Source§fn clone(&self) -> AuthorizerDescription
fn clone(&self) -> AuthorizerDescription
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 AuthorizerDescription
impl Debug for AuthorizerDescription
Source§impl Default for AuthorizerDescription
impl Default for AuthorizerDescription
Source§fn default() -> AuthorizerDescription
fn default() -> AuthorizerDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthorizerDescription
impl<'de> Deserialize<'de> for AuthorizerDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuthorizerDescription
impl PartialEq for AuthorizerDescription
impl StructuralPartialEq for AuthorizerDescription
Auto Trait Implementations§
impl Freeze for AuthorizerDescription
impl RefUnwindSafe for AuthorizerDescription
impl Send for AuthorizerDescription
impl Sync for AuthorizerDescription
impl Unpin for AuthorizerDescription
impl UnwindSafe for AuthorizerDescription
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