Struct aws_sdk_cloud9::model::EnvironmentMember [−][src]
#[non_exhaustive]pub struct EnvironmentMember {
pub permissions: Option<Permissions>,
pub user_id: Option<String>,
pub user_arn: Option<String>,
pub environment_id: Option<String>,
pub last_access: Option<Instant>,
}
Expand description
Information about an environment member for an Cloud9 development environment.
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.permissions: Option<Permissions>
The type of environment member permissions associated with this environment member. Available values include:
-
owner
: Owns the environment. -
read-only
: Has read-only access to the environment. -
read-write
: Has read-write access to the environment.
user_id: Option<String>
The user ID in Identity and Access Management (IAM) of the environment member.
user_arn: Option<String>
The Amazon Resource Name (ARN) of the environment member.
environment_id: Option<String>
The ID of the environment for the environment member.
last_access: Option<Instant>
The time, expressed in epoch time format, when the environment member last opened the environment.
Implementations
The type of environment member permissions associated with this environment member. Available values include:
-
owner
: Owns the environment. -
read-only
: Has read-only access to the environment. -
read-write
: Has read-write access to the environment.
The user ID in Identity and Access Management (IAM) of the environment member.
The Amazon Resource Name (ARN) of the environment member.
The ID of the environment for the environment member.
The time, expressed in epoch time format, when the environment member last opened the environment.
Creates a new builder-style object to manufacture EnvironmentMember
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 RefUnwindSafe for EnvironmentMember
impl Send for EnvironmentMember
impl Sync for EnvironmentMember
impl Unpin for EnvironmentMember
impl UnwindSafe for EnvironmentMember
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