pub struct TestAuthorizationRequest {
pub auth_infos: Vec<AuthInfo>,
pub client_id: Option<String>,
pub cognito_identity_pool_id: Option<String>,
pub policy_names_to_add: Option<Vec<String>>,
pub policy_names_to_skip: Option<Vec<String>>,
pub principal: Option<String>,
}Fields§
§auth_infos: Vec<AuthInfo>A list of authorization info objects. Simulating authorization will create a response for each authInfo object in the list.
client_id: Option<String>The MQTT client ID.
cognito_identity_pool_id: Option<String>The Cognito identity pool ID.
policy_names_to_add: Option<Vec<String>>When testing custom authorization, the policies specified here are treated as if they are attached to the principal being authorized.
policy_names_to_skip: Option<Vec<String>>When testing custom authorization, the policies specified here are treated as if they are not attached to the principal being authorized.
principal: Option<String>The principal.
Trait Implementations§
Source§impl Clone for TestAuthorizationRequest
impl Clone for TestAuthorizationRequest
Source§fn clone(&self) -> TestAuthorizationRequest
fn clone(&self) -> TestAuthorizationRequest
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 TestAuthorizationRequest
impl Debug for TestAuthorizationRequest
Source§impl Default for TestAuthorizationRequest
impl Default for TestAuthorizationRequest
Source§fn default() -> TestAuthorizationRequest
fn default() -> TestAuthorizationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for TestAuthorizationRequest
impl PartialEq for TestAuthorizationRequest
Source§impl Serialize for TestAuthorizationRequest
impl Serialize for TestAuthorizationRequest
impl StructuralPartialEq for TestAuthorizationRequest
Auto Trait Implementations§
impl Freeze for TestAuthorizationRequest
impl RefUnwindSafe for TestAuthorizationRequest
impl Send for TestAuthorizationRequest
impl Sync for TestAuthorizationRequest
impl Unpin for TestAuthorizationRequest
impl UnwindSafe for TestAuthorizationRequest
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