Struct aws_sdk_iam::operation::set_default_policy_version::builders::SetDefaultPolicyVersionInputBuilder
source · #[non_exhaustive]pub struct SetDefaultPolicyVersionInputBuilder { /* private fields */ }Expand description
A builder for SetDefaultPolicyVersionInput.
Implementations§
source§impl SetDefaultPolicyVersionInputBuilder
impl SetDefaultPolicyVersionInputBuilder
sourcepub fn policy_arn(self, input: impl Into<String>) -> Self
pub fn policy_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the IAM policy whose default version you want to set.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
This field is required.sourcepub fn set_policy_arn(self, input: Option<String>) -> Self
pub fn set_policy_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the IAM policy whose default version you want to set.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
sourcepub fn get_policy_arn(&self) -> &Option<String>
pub fn get_policy_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the IAM policy whose default version you want to set.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
sourcepub fn version_id(self, input: impl Into<String>) -> Self
pub fn version_id(self, input: impl Into<String>) -> Self
The version of the policy to set as the default (operative) version.
For more information about managed policy versions, see Versioning for managed policies in the IAM User Guide.
This field is required.sourcepub fn set_version_id(self, input: Option<String>) -> Self
pub fn set_version_id(self, input: Option<String>) -> Self
The version of the policy to set as the default (operative) version.
For more information about managed policy versions, see Versioning for managed policies in the IAM User Guide.
sourcepub fn get_version_id(&self) -> &Option<String>
pub fn get_version_id(&self) -> &Option<String>
The version of the policy to set as the default (operative) version.
For more information about managed policy versions, see Versioning for managed policies in the IAM User Guide.
sourcepub fn build(self) -> Result<SetDefaultPolicyVersionInput, BuildError>
pub fn build(self) -> Result<SetDefaultPolicyVersionInput, BuildError>
Consumes the builder and constructs a SetDefaultPolicyVersionInput.
source§impl SetDefaultPolicyVersionInputBuilder
impl SetDefaultPolicyVersionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<SetDefaultPolicyVersionOutput, SdkError<SetDefaultPolicyVersionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<SetDefaultPolicyVersionOutput, SdkError<SetDefaultPolicyVersionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for SetDefaultPolicyVersionInputBuilder
impl Clone for SetDefaultPolicyVersionInputBuilder
source§fn clone(&self) -> SetDefaultPolicyVersionInputBuilder
fn clone(&self) -> SetDefaultPolicyVersionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for SetDefaultPolicyVersionInputBuilder
impl Default for SetDefaultPolicyVersionInputBuilder
source§fn default() -> SetDefaultPolicyVersionInputBuilder
fn default() -> SetDefaultPolicyVersionInputBuilder
source§impl PartialEq for SetDefaultPolicyVersionInputBuilder
impl PartialEq for SetDefaultPolicyVersionInputBuilder
source§fn eq(&self, other: &SetDefaultPolicyVersionInputBuilder) -> bool
fn eq(&self, other: &SetDefaultPolicyVersionInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SetDefaultPolicyVersionInputBuilder
Auto Trait Implementations§
impl Freeze for SetDefaultPolicyVersionInputBuilder
impl RefUnwindSafe for SetDefaultPolicyVersionInputBuilder
impl Send for SetDefaultPolicyVersionInputBuilder
impl Sync for SetDefaultPolicyVersionInputBuilder
impl Unpin for SetDefaultPolicyVersionInputBuilder
impl UnwindSafe for SetDefaultPolicyVersionInputBuilder
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