pub struct UpdateEnvironmentMembershipRequest {
pub environment_id: String,
pub permissions: String,
pub user_arn: String,
}
Fields§
§environment_id: String
The ID of the environment for the environment member whose settings you want to change.
permissions: String
The replacement 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.
user_arn: String
The Amazon Resource Name (ARN) of the environment member whose settings you want to change.
Trait Implementations§
Source§impl Clone for UpdateEnvironmentMembershipRequest
impl Clone for UpdateEnvironmentMembershipRequest
Source§fn clone(&self) -> UpdateEnvironmentMembershipRequest
fn clone(&self) -> UpdateEnvironmentMembershipRequest
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 Default for UpdateEnvironmentMembershipRequest
impl Default for UpdateEnvironmentMembershipRequest
Source§fn default() -> UpdateEnvironmentMembershipRequest
fn default() -> UpdateEnvironmentMembershipRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateEnvironmentMembershipRequest
impl PartialEq for UpdateEnvironmentMembershipRequest
Source§fn eq(&self, other: &UpdateEnvironmentMembershipRequest) -> bool
fn eq(&self, other: &UpdateEnvironmentMembershipRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateEnvironmentMembershipRequest
Auto Trait Implementations§
impl Freeze for UpdateEnvironmentMembershipRequest
impl RefUnwindSafe for UpdateEnvironmentMembershipRequest
impl Send for UpdateEnvironmentMembershipRequest
impl Sync for UpdateEnvironmentMembershipRequest
impl Unpin for UpdateEnvironmentMembershipRequest
impl UnwindSafe for UpdateEnvironmentMembershipRequest
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