Struct aws_sdk_iot::input::TestAuthorizationInput
source · [−]#[non_exhaustive]pub struct TestAuthorizationInput { /* private fields */ }
Implementations
sourceimpl TestAuthorizationInput
impl TestAuthorizationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TestAuthorization, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TestAuthorization, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<TestAuthorization
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TestAuthorizationInput
.
sourceimpl TestAuthorizationInput
impl TestAuthorizationInput
sourcepub fn principal(&self) -> Option<&str>
pub fn principal(&self) -> Option<&str>
The principal. Valid principals are CertificateArn (arn:aws:iot:region:accountId:cert/certificateId), thingGroupArn (arn:aws:iot:region:accountId:thinggroup/groupName) and CognitoId (region:id).
sourcepub fn cognito_identity_pool_id(&self) -> Option<&str>
pub fn cognito_identity_pool_id(&self) -> Option<&str>
The Cognito identity pool ID.
sourcepub fn auth_infos(&self) -> Option<&[AuthInfo]>
pub fn auth_infos(&self) -> Option<&[AuthInfo]>
A list of authorization info objects. Simulating authorization will create a response for each authInfo
object in the list.
sourcepub fn policy_names_to_add(&self) -> Option<&[String]>
pub fn policy_names_to_add(&self) -> Option<&[String]>
When testing custom authorization, the policies specified here are treated as if they are attached to the principal being authorized.
sourcepub fn policy_names_to_skip(&self) -> Option<&[String]>
pub fn policy_names_to_skip(&self) -> Option<&[String]>
When testing custom authorization, the policies specified here are treated as if they are not attached to the principal being authorized.
Trait Implementations
sourceimpl Clone for TestAuthorizationInput
impl Clone for TestAuthorizationInput
sourcefn clone(&self) -> TestAuthorizationInput
fn clone(&self) -> TestAuthorizationInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TestAuthorizationInput
impl Debug for TestAuthorizationInput
sourceimpl PartialEq<TestAuthorizationInput> for TestAuthorizationInput
impl PartialEq<TestAuthorizationInput> for TestAuthorizationInput
sourcefn eq(&self, other: &TestAuthorizationInput) -> bool
fn eq(&self, other: &TestAuthorizationInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for TestAuthorizationInput
Auto Trait Implementations
impl RefUnwindSafe for TestAuthorizationInput
impl Send for TestAuthorizationInput
impl Sync for TestAuthorizationInput
impl Unpin for TestAuthorizationInput
impl UnwindSafe for TestAuthorizationInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more