#[non_exhaustive]pub struct GetOrganizationsAccessReportOutput {
pub job_status: Option<JobStatusType>,
pub job_creation_date: Option<DateTime>,
pub job_completion_date: Option<DateTime>,
pub number_of_services_accessible: Option<i32>,
pub number_of_services_not_accessed: Option<i32>,
pub access_details: Option<Vec<AccessDetail>>,
pub is_truncated: bool,
pub marker: Option<String>,
pub error_details: Option<ErrorDetails>,
}
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.job_status: Option<JobStatusType>
The status of the job.
job_creation_date: Option<DateTime>
The date and time, in ISO 8601 date-time format, when the report job was created.
job_completion_date: Option<DateTime>
The date and time, in ISO 8601 date-time format, when the generated report job was completed or failed.
This field is null if the job is still in progress, as indicated by a job status value of IN_PROGRESS
.
number_of_services_accessible: Option<i32>
The number of services that the applicable SCPs allow account principals to access.
number_of_services_not_accessed: Option<i32>
The number of services that account principals are allowed but did not attempt to access.
access_details: Option<Vec<AccessDetail>>
An object that contains details about the most recent attempt to access the service.
is_truncated: bool
A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker
request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems
number of results even when there are more results available. We recommend that you check IsTruncated
after every call to ensure that you receive all your results.
marker: Option<String>
When IsTruncated
is true
, this element is present and contains the value to use for the Marker
parameter in a subsequent pagination request.
error_details: Option<ErrorDetails>
Contains information about the reason that the operation failed.
This data type is used as a response element in the GetOrganizationsAccessReport
, GetServiceLastAccessedDetails
, and GetServiceLastAccessedDetailsWithEntities
operations.
Implementations
sourceimpl GetOrganizationsAccessReportOutput
impl GetOrganizationsAccessReportOutput
sourcepub fn job_status(&self) -> Option<&JobStatusType>
pub fn job_status(&self) -> Option<&JobStatusType>
The status of the job.
sourcepub fn job_creation_date(&self) -> Option<&DateTime>
pub fn job_creation_date(&self) -> Option<&DateTime>
The date and time, in ISO 8601 date-time format, when the report job was created.
sourcepub fn job_completion_date(&self) -> Option<&DateTime>
pub fn job_completion_date(&self) -> Option<&DateTime>
The date and time, in ISO 8601 date-time format, when the generated report job was completed or failed.
This field is null if the job is still in progress, as indicated by a job status value of IN_PROGRESS
.
sourcepub fn number_of_services_accessible(&self) -> Option<i32>
pub fn number_of_services_accessible(&self) -> Option<i32>
The number of services that the applicable SCPs allow account principals to access.
sourcepub fn number_of_services_not_accessed(&self) -> Option<i32>
pub fn number_of_services_not_accessed(&self) -> Option<i32>
The number of services that account principals are allowed but did not attempt to access.
sourcepub fn access_details(&self) -> Option<&[AccessDetail]>
pub fn access_details(&self) -> Option<&[AccessDetail]>
An object that contains details about the most recent attempt to access the service.
sourcepub fn is_truncated(&self) -> bool
pub fn is_truncated(&self) -> bool
A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker
request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems
number of results even when there are more results available. We recommend that you check IsTruncated
after every call to ensure that you receive all your results.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
When IsTruncated
is true
, this element is present and contains the value to use for the Marker
parameter in a subsequent pagination request.
sourcepub fn error_details(&self) -> Option<&ErrorDetails>
pub fn error_details(&self) -> Option<&ErrorDetails>
Contains information about the reason that the operation failed.
This data type is used as a response element in the GetOrganizationsAccessReport
, GetServiceLastAccessedDetails
, and GetServiceLastAccessedDetailsWithEntities
operations.
sourceimpl GetOrganizationsAccessReportOutput
impl GetOrganizationsAccessReportOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetOrganizationsAccessReportOutput
Trait Implementations
sourceimpl Clone for GetOrganizationsAccessReportOutput
impl Clone for GetOrganizationsAccessReportOutput
sourcefn clone(&self) -> GetOrganizationsAccessReportOutput
fn clone(&self) -> GetOrganizationsAccessReportOutput
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<GetOrganizationsAccessReportOutput> for GetOrganizationsAccessReportOutput
impl PartialEq<GetOrganizationsAccessReportOutput> for GetOrganizationsAccessReportOutput
sourcefn eq(&self, other: &GetOrganizationsAccessReportOutput) -> bool
fn eq(&self, other: &GetOrganizationsAccessReportOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetOrganizationsAccessReportOutput) -> bool
fn ne(&self, other: &GetOrganizationsAccessReportOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GetOrganizationsAccessReportOutput
Auto Trait Implementations
impl RefUnwindSafe for GetOrganizationsAccessReportOutput
impl Send for GetOrganizationsAccessReportOutput
impl Sync for GetOrganizationsAccessReportOutput
impl Unpin for GetOrganizationsAccessReportOutput
impl UnwindSafe for GetOrganizationsAccessReportOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
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