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