#[non_exhaustive]pub struct IamPolicyAssignmentBuilder { /* private fields */ }Expand description
A builder for IamPolicyAssignment.
Implementations§
source§impl IamPolicyAssignmentBuilder
impl IamPolicyAssignmentBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The Amazon Web Services account ID.
sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The Amazon Web Services account ID.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The Amazon Web Services account ID.
sourcepub fn assignment_id(self, input: impl Into<String>) -> Self
pub fn assignment_id(self, input: impl Into<String>) -> Self
Assignment ID.
sourcepub fn set_assignment_id(self, input: Option<String>) -> Self
pub fn set_assignment_id(self, input: Option<String>) -> Self
Assignment ID.
sourcepub fn get_assignment_id(&self) -> &Option<String>
pub fn get_assignment_id(&self) -> &Option<String>
Assignment ID.
sourcepub fn assignment_name(self, input: impl Into<String>) -> Self
pub fn assignment_name(self, input: impl Into<String>) -> Self
Assignment name.
sourcepub fn set_assignment_name(self, input: Option<String>) -> Self
pub fn set_assignment_name(self, input: Option<String>) -> Self
Assignment name.
sourcepub fn get_assignment_name(&self) -> &Option<String>
pub fn get_assignment_name(&self) -> &Option<String>
Assignment name.
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) for the IAM policy.
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) for the IAM policy.
sourcepub fn get_policy_arn(&self) -> &Option<String>
pub fn get_policy_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) for the IAM policy.
sourcepub fn identities(self, k: impl Into<String>, v: Vec<String>) -> Self
pub fn identities(self, k: impl Into<String>, v: Vec<String>) -> Self
Adds a key-value pair to identities.
To override the contents of this collection use set_identities.
Identities.
sourcepub fn assignment_status(self, input: AssignmentStatus) -> Self
pub fn assignment_status(self, input: AssignmentStatus) -> Self
Assignment status.
sourcepub fn set_assignment_status(self, input: Option<AssignmentStatus>) -> Self
pub fn set_assignment_status(self, input: Option<AssignmentStatus>) -> Self
Assignment status.
sourcepub fn get_assignment_status(&self) -> &Option<AssignmentStatus>
pub fn get_assignment_status(&self) -> &Option<AssignmentStatus>
Assignment status.
sourcepub fn build(self) -> IamPolicyAssignment
pub fn build(self) -> IamPolicyAssignment
Consumes the builder and constructs a IamPolicyAssignment.
Trait Implementations§
source§impl Clone for IamPolicyAssignmentBuilder
impl Clone for IamPolicyAssignmentBuilder
source§fn clone(&self) -> IamPolicyAssignmentBuilder
fn clone(&self) -> IamPolicyAssignmentBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for IamPolicyAssignmentBuilder
impl Debug for IamPolicyAssignmentBuilder
source§impl Default for IamPolicyAssignmentBuilder
impl Default for IamPolicyAssignmentBuilder
source§fn default() -> IamPolicyAssignmentBuilder
fn default() -> IamPolicyAssignmentBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for IamPolicyAssignmentBuilder
impl PartialEq for IamPolicyAssignmentBuilder
source§fn eq(&self, other: &IamPolicyAssignmentBuilder) -> bool
fn eq(&self, other: &IamPolicyAssignmentBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IamPolicyAssignmentBuilder
Auto Trait Implementations§
impl Freeze for IamPolicyAssignmentBuilder
impl RefUnwindSafe for IamPolicyAssignmentBuilder
impl Send for IamPolicyAssignmentBuilder
impl Sync for IamPolicyAssignmentBuilder
impl Unpin for IamPolicyAssignmentBuilder
impl UnwindSafe for IamPolicyAssignmentBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.