#[non_exhaustive]pub struct GenerateServiceLastAccessedDetailsInput {
pub arn: Option<String>,
pub granularity: Option<AccessAdvisorUsageGranularityType>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The ARN of the IAM resource (user, group, role, or managed policy) used to generate information about when the resource was last used in an attempt to access an Amazon Web Services service.
granularity: Option<AccessAdvisorUsageGranularityType>
The level of detail that you want to generate. You can specify whether you want to generate information about the last attempt to access services or actions. If you specify service-level granularity, this operation generates only service data. If you specify action-level granularity, it generates service and action data. If you don't include this optional parameter, the operation generates service data.
Implementations
sourceimpl GenerateServiceLastAccessedDetailsInput
impl GenerateServiceLastAccessedDetailsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GenerateServiceLastAccessedDetails, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GenerateServiceLastAccessedDetails, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GenerateServiceLastAccessedDetails
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GenerateServiceLastAccessedDetailsInput
sourceimpl GenerateServiceLastAccessedDetailsInput
impl GenerateServiceLastAccessedDetailsInput
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The ARN of the IAM resource (user, group, role, or managed policy) used to generate information about when the resource was last used in an attempt to access an Amazon Web Services service.
sourcepub fn granularity(&self) -> Option<&AccessAdvisorUsageGranularityType>
pub fn granularity(&self) -> Option<&AccessAdvisorUsageGranularityType>
The level of detail that you want to generate. You can specify whether you want to generate information about the last attempt to access services or actions. If you specify service-level granularity, this operation generates only service data. If you specify action-level granularity, it generates service and action data. If you don't include this optional parameter, the operation generates service data.
Trait Implementations
sourceimpl Clone for GenerateServiceLastAccessedDetailsInput
impl Clone for GenerateServiceLastAccessedDetailsInput
sourcefn clone(&self) -> GenerateServiceLastAccessedDetailsInput
fn clone(&self) -> GenerateServiceLastAccessedDetailsInput
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 PartialEq<GenerateServiceLastAccessedDetailsInput> for GenerateServiceLastAccessedDetailsInput
impl PartialEq<GenerateServiceLastAccessedDetailsInput> for GenerateServiceLastAccessedDetailsInput
sourcefn eq(&self, other: &GenerateServiceLastAccessedDetailsInput) -> bool
fn eq(&self, other: &GenerateServiceLastAccessedDetailsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GenerateServiceLastAccessedDetailsInput) -> bool
fn ne(&self, other: &GenerateServiceLastAccessedDetailsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GenerateServiceLastAccessedDetailsInput
Auto Trait Implementations
impl RefUnwindSafe for GenerateServiceLastAccessedDetailsInput
impl Send for GenerateServiceLastAccessedDetailsInput
impl Sync for GenerateServiceLastAccessedDetailsInput
impl Unpin for GenerateServiceLastAccessedDetailsInput
impl UnwindSafe for GenerateServiceLastAccessedDetailsInput
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