Struct aws_sdk_iam::output::SimulateCustomPolicyOutput [−][src]
#[non_exhaustive]pub struct SimulateCustomPolicyOutput {
pub evaluation_results: Option<Vec<EvaluationResult>>,
pub is_truncated: bool,
pub marker: Option<String>,
}
Expand description
Contains the response to a successful SimulatePrincipalPolicy or SimulateCustomPolicy request.
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.evaluation_results: Option<Vec<EvaluationResult>>
The results of the simulation.
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.
Implementations
The results of the simulation.
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.
Creates a new builder-style object to manufacture SimulateCustomPolicyOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SimulateCustomPolicyOutput
impl Send for SimulateCustomPolicyOutput
impl Sync for SimulateCustomPolicyOutput
impl Unpin for SimulateCustomPolicyOutput
impl UnwindSafe for SimulateCustomPolicyOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more