Struct aws_sdk_cloud9::input::DescribeEnvironmentMembershipsInput [−][src]
#[non_exhaustive]pub struct DescribeEnvironmentMembershipsInput {
pub user_arn: Option<String>,
pub environment_id: Option<String>,
pub permissions: Option<Vec<Permissions>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.user_arn: Option<String>
The Amazon Resource Name (ARN) of an individual environment member to get information about. If no value is specified, information about all environment members are returned.
environment_id: Option<String>
The ID of the environment to get environment member information about.
permissions: Option<Vec<Permissions>>
The type of environment member permissions to get information about. 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.
If no value is specified, information about all environment members are returned.
next_token: Option<String>
During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
max_results: Option<i32>
The maximum number of environment members to get information about.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironmentMemberships, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironmentMemberships, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeEnvironmentMemberships
>
Creates a new builder-style object to manufacture DescribeEnvironmentMembershipsInput
The Amazon Resource Name (ARN) of an individual environment member to get information about. If no value is specified, information about all environment members are returned.
The ID of the environment to get environment member information about.
The type of environment member permissions to get information about. 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.
If no value is specified, information about all environment members are returned.
During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
The maximum number of environment members to get information about.
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 DescribeEnvironmentMembershipsInput
impl Sync for DescribeEnvironmentMembershipsInput
impl Unpin for DescribeEnvironmentMembershipsInput
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