Struct aws_sdk_accessanalyzer::operation::validate_policy::builders::ValidatePolicyInputBuilder
source · #[non_exhaustive]pub struct ValidatePolicyInputBuilder { /* private fields */ }
Expand description
A builder for ValidatePolicyInput
.
Implementations§
source§impl ValidatePolicyInputBuilder
impl ValidatePolicyInputBuilder
sourcepub fn set_locale(self, input: Option<Locale>) -> Self
pub fn set_locale(self, input: Option<Locale>) -> Self
The locale to use for localizing the findings.
sourcepub fn get_locale(&self) -> &Option<Locale>
pub fn get_locale(&self) -> &Option<Locale>
The locale to use for localizing the findings.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token used for pagination of results returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token used for pagination of results returned.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token used for pagination of results returned.
sourcepub fn policy_document(self, input: impl Into<String>) -> Self
pub fn policy_document(self, input: impl Into<String>) -> Self
The JSON policy document to use as the content for the policy.
This field is required.sourcepub fn set_policy_document(self, input: Option<String>) -> Self
pub fn set_policy_document(self, input: Option<String>) -> Self
The JSON policy document to use as the content for the policy.
sourcepub fn get_policy_document(&self) -> &Option<String>
pub fn get_policy_document(&self) -> &Option<String>
The JSON policy document to use as the content for the policy.
sourcepub fn policy_type(self, input: PolicyType) -> Self
pub fn policy_type(self, input: PolicyType) -> Self
The type of policy to validate. Identity policies grant permissions to IAM principals. Identity policies include managed and inline policies for IAM roles, users, and groups.
Resource policies grant permissions on Amazon Web Services resources. Resource policies include trust policies for IAM roles and bucket policies for Amazon S3 buckets. You can provide a generic input such as identity policy or resource policy or a specific input such as managed policy or Amazon S3 bucket policy.
Service control policies (SCPs) are a type of organization policy attached to an Amazon Web Services organization, organizational unit (OU), or an account.
This field is required.sourcepub fn set_policy_type(self, input: Option<PolicyType>) -> Self
pub fn set_policy_type(self, input: Option<PolicyType>) -> Self
The type of policy to validate. Identity policies grant permissions to IAM principals. Identity policies include managed and inline policies for IAM roles, users, and groups.
Resource policies grant permissions on Amazon Web Services resources. Resource policies include trust policies for IAM roles and bucket policies for Amazon S3 buckets. You can provide a generic input such as identity policy or resource policy or a specific input such as managed policy or Amazon S3 bucket policy.
Service control policies (SCPs) are a type of organization policy attached to an Amazon Web Services organization, organizational unit (OU), or an account.
sourcepub fn get_policy_type(&self) -> &Option<PolicyType>
pub fn get_policy_type(&self) -> &Option<PolicyType>
The type of policy to validate. Identity policies grant permissions to IAM principals. Identity policies include managed and inline policies for IAM roles, users, and groups.
Resource policies grant permissions on Amazon Web Services resources. Resource policies include trust policies for IAM roles and bucket policies for Amazon S3 buckets. You can provide a generic input such as identity policy or resource policy or a specific input such as managed policy or Amazon S3 bucket policy.
Service control policies (SCPs) are a type of organization policy attached to an Amazon Web Services organization, organizational unit (OU), or an account.
sourcepub fn validate_policy_resource_type(
self,
input: ValidatePolicyResourceType
) -> Self
pub fn validate_policy_resource_type( self, input: ValidatePolicyResourceType ) -> Self
The type of resource to attach to your resource policy. Specify a value for the policy validation resource type only if the policy type is RESOURCE_POLICY
. For example, to validate a resource policy to attach to an Amazon S3 bucket, you can choose AWS::S3::Bucket
for the policy validation resource type.
For resource types not supported as valid values, IAM Access Analyzer runs policy checks that apply to all resource policies. For example, to validate a resource policy to attach to a KMS key, do not specify a value for the policy validation resource type and IAM Access Analyzer will run policy checks that apply to all resource policies.
sourcepub fn set_validate_policy_resource_type(
self,
input: Option<ValidatePolicyResourceType>
) -> Self
pub fn set_validate_policy_resource_type( self, input: Option<ValidatePolicyResourceType> ) -> Self
The type of resource to attach to your resource policy. Specify a value for the policy validation resource type only if the policy type is RESOURCE_POLICY
. For example, to validate a resource policy to attach to an Amazon S3 bucket, you can choose AWS::S3::Bucket
for the policy validation resource type.
For resource types not supported as valid values, IAM Access Analyzer runs policy checks that apply to all resource policies. For example, to validate a resource policy to attach to a KMS key, do not specify a value for the policy validation resource type and IAM Access Analyzer will run policy checks that apply to all resource policies.
sourcepub fn get_validate_policy_resource_type(
&self
) -> &Option<ValidatePolicyResourceType>
pub fn get_validate_policy_resource_type( &self ) -> &Option<ValidatePolicyResourceType>
The type of resource to attach to your resource policy. Specify a value for the policy validation resource type only if the policy type is RESOURCE_POLICY
. For example, to validate a resource policy to attach to an Amazon S3 bucket, you can choose AWS::S3::Bucket
for the policy validation resource type.
For resource types not supported as valid values, IAM Access Analyzer runs policy checks that apply to all resource policies. For example, to validate a resource policy to attach to a KMS key, do not specify a value for the policy validation resource type and IAM Access Analyzer will run policy checks that apply to all resource policies.
sourcepub fn build(self) -> Result<ValidatePolicyInput, BuildError>
pub fn build(self) -> Result<ValidatePolicyInput, BuildError>
Consumes the builder and constructs a ValidatePolicyInput
.
source§impl ValidatePolicyInputBuilder
impl ValidatePolicyInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ValidatePolicyOutput, SdkError<ValidatePolicyError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ValidatePolicyOutput, SdkError<ValidatePolicyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ValidatePolicyInputBuilder
impl Clone for ValidatePolicyInputBuilder
source§fn clone(&self) -> ValidatePolicyInputBuilder
fn clone(&self) -> ValidatePolicyInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ValidatePolicyInputBuilder
impl Debug for ValidatePolicyInputBuilder
source§impl Default for ValidatePolicyInputBuilder
impl Default for ValidatePolicyInputBuilder
source§fn default() -> ValidatePolicyInputBuilder
fn default() -> ValidatePolicyInputBuilder
source§impl PartialEq for ValidatePolicyInputBuilder
impl PartialEq for ValidatePolicyInputBuilder
source§fn eq(&self, other: &ValidatePolicyInputBuilder) -> bool
fn eq(&self, other: &ValidatePolicyInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ValidatePolicyInputBuilder
Auto Trait Implementations§
impl Freeze for ValidatePolicyInputBuilder
impl RefUnwindSafe for ValidatePolicyInputBuilder
impl Send for ValidatePolicyInputBuilder
impl Sync for ValidatePolicyInputBuilder
impl Unpin for ValidatePolicyInputBuilder
impl UnwindSafe for ValidatePolicyInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more