#[non_exhaustive]pub struct AttachedManagedPolicyBuilder { /* private fields */ }
Expand description
A builder for AttachedManagedPolicy
.
Implementations§
source§impl AttachedManagedPolicyBuilder
impl AttachedManagedPolicyBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the Amazon Web Services managed policy.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the Amazon Web Services managed policy.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The ARN of the Amazon Web Services managed policy. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The ARN of the Amazon Web Services managed policy. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The ARN of the Amazon Web Services managed policy. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
sourcepub fn build(self) -> AttachedManagedPolicy
pub fn build(self) -> AttachedManagedPolicy
Consumes the builder and constructs a AttachedManagedPolicy
.
Trait Implementations§
source§impl Clone for AttachedManagedPolicyBuilder
impl Clone for AttachedManagedPolicyBuilder
source§fn clone(&self) -> AttachedManagedPolicyBuilder
fn clone(&self) -> AttachedManagedPolicyBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AttachedManagedPolicyBuilder
impl Debug for AttachedManagedPolicyBuilder
source§impl Default for AttachedManagedPolicyBuilder
impl Default for AttachedManagedPolicyBuilder
source§fn default() -> AttachedManagedPolicyBuilder
fn default() -> AttachedManagedPolicyBuilder
source§impl PartialEq for AttachedManagedPolicyBuilder
impl PartialEq for AttachedManagedPolicyBuilder
source§fn eq(&self, other: &AttachedManagedPolicyBuilder) -> bool
fn eq(&self, other: &AttachedManagedPolicyBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AttachedManagedPolicyBuilder
Auto Trait Implementations§
impl Freeze for AttachedManagedPolicyBuilder
impl RefUnwindSafe for AttachedManagedPolicyBuilder
impl Send for AttachedManagedPolicyBuilder
impl Sync for AttachedManagedPolicyBuilder
impl Unpin for AttachedManagedPolicyBuilder
impl UnwindSafe for AttachedManagedPolicyBuilder
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