#[non_exhaustive]pub struct UpdateEnvironmentMembershipInput {
pub environment_id: Option<String>,
pub user_arn: Option<String>,
pub permissions: Option<MemberPermissions>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.environment_id: Option<String>
The ID of the environment for the environment member whose settings you want to change.
user_arn: Option<String>
The Amazon Resource Name (ARN) of the environment member whose settings you want to change.
permissions: Option<MemberPermissions>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateEnvironmentMembership, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateEnvironmentMembership, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateEnvironmentMembership
>
Creates a new builder-style object to manufacture UpdateEnvironmentMembershipInput
The ID of the environment for the environment member whose settings you want to change.
The Amazon Resource Name (ARN) of the environment member whose settings you want to change.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for UpdateEnvironmentMembershipInput
impl Sync for UpdateEnvironmentMembershipInput
impl Unpin for UpdateEnvironmentMembershipInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more