Struct aws_sdk_accessanalyzer::operation::start_policy_generation::StartPolicyGenerationInput
source · #[non_exhaustive]pub struct StartPolicyGenerationInput {
pub policy_generation_details: Option<PolicyGenerationDetails>,
pub cloud_trail_details: Option<CloudTrailDetails>,
pub client_token: Option<String>,
}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.policy_generation_details: Option<PolicyGenerationDetails>Contains the ARN of the IAM entity (user or role) for which you are generating a policy.
cloud_trail_details: Option<CloudTrailDetails>A CloudTrailDetails object that contains details about a Trail that you want to analyze to generate policies.
client_token: Option<String>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries with the same client token return the result from the original successful request and they have no additional effect.
If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
Implementations§
source§impl StartPolicyGenerationInput
impl StartPolicyGenerationInput
sourcepub fn policy_generation_details(&self) -> Option<&PolicyGenerationDetails>
pub fn policy_generation_details(&self) -> Option<&PolicyGenerationDetails>
Contains the ARN of the IAM entity (user or role) for which you are generating a policy.
sourcepub fn cloud_trail_details(&self) -> Option<&CloudTrailDetails>
pub fn cloud_trail_details(&self) -> Option<&CloudTrailDetails>
A CloudTrailDetails object that contains details about a Trail that you want to analyze to generate policies.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries with the same client token return the result from the original successful request and they have no additional effect.
If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
source§impl StartPolicyGenerationInput
impl StartPolicyGenerationInput
sourcepub fn builder() -> StartPolicyGenerationInputBuilder
pub fn builder() -> StartPolicyGenerationInputBuilder
Creates a new builder-style object to manufacture StartPolicyGenerationInput.
Trait Implementations§
source§impl Clone for StartPolicyGenerationInput
impl Clone for StartPolicyGenerationInput
source§fn clone(&self) -> StartPolicyGenerationInput
fn clone(&self) -> StartPolicyGenerationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartPolicyGenerationInput
impl Debug for StartPolicyGenerationInput
source§impl PartialEq for StartPolicyGenerationInput
impl PartialEq for StartPolicyGenerationInput
source§fn eq(&self, other: &StartPolicyGenerationInput) -> bool
fn eq(&self, other: &StartPolicyGenerationInput) -> bool
self and other values to be equal, and is used
by ==.