#[non_exhaustive]pub struct CreateEnvironmentMembershipInput { /* private fields */ }
Implementations
sourceimpl CreateEnvironmentMembershipInput
impl CreateEnvironmentMembershipInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEnvironmentMembership, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEnvironmentMembership, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateEnvironmentMembership
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateEnvironmentMembershipInput
.
sourceimpl CreateEnvironmentMembershipInput
impl CreateEnvironmentMembershipInput
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The ID of the environment that contains the environment member you want to add.
sourcepub fn user_arn(&self) -> Option<&str>
pub fn user_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the environment member you want to add.
sourcepub fn permissions(&self) -> Option<&MemberPermissions>
pub fn permissions(&self) -> Option<&MemberPermissions>
The type of environment member permissions you want to associate with this environment member. Available values include:
-
read-only
: Has read-only access to the environment. -
read-write
: Has read-write access to the environment.
Trait Implementations
sourceimpl Clone for CreateEnvironmentMembershipInput
impl Clone for CreateEnvironmentMembershipInput
sourcefn clone(&self) -> CreateEnvironmentMembershipInput
fn clone(&self) -> CreateEnvironmentMembershipInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<CreateEnvironmentMembershipInput> for CreateEnvironmentMembershipInput
impl PartialEq<CreateEnvironmentMembershipInput> for CreateEnvironmentMembershipInput
sourcefn eq(&self, other: &CreateEnvironmentMembershipInput) -> bool
fn eq(&self, other: &CreateEnvironmentMembershipInput) -> bool
impl StructuralPartialEq for CreateEnvironmentMembershipInput
Auto Trait Implementations
impl RefUnwindSafe for CreateEnvironmentMembershipInput
impl Send for CreateEnvironmentMembershipInput
impl Sync for CreateEnvironmentMembershipInput
impl Unpin for CreateEnvironmentMembershipInput
impl UnwindSafe for CreateEnvironmentMembershipInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more