pub struct DescribeEnvironmentMemberships { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeEnvironmentMemberships
.
Gets information about environment members for an Cloud9 development environment.
Implementations§
source§impl DescribeEnvironmentMemberships
impl DescribeEnvironmentMemberships
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeEnvironmentMemberships, AwsResponseRetryClassifier>, SdkError<DescribeEnvironmentMembershipsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DescribeEnvironmentMemberships, AwsResponseRetryClassifier>, SdkError<DescribeEnvironmentMembershipsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DescribeEnvironmentMembershipsOutput, SdkError<DescribeEnvironmentMembershipsError>>
pub async fn send(
self
) -> Result<DescribeEnvironmentMembershipsOutput, SdkError<DescribeEnvironmentMembershipsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> DescribeEnvironmentMembershipsPaginator
pub fn into_paginator(self) -> DescribeEnvironmentMembershipsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn user_arn(self, input: impl Into<String>) -> Self
pub fn user_arn(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_user_arn(self, input: Option<String>) -> Self
pub fn set_user_arn(self, input: Option<String>) -> Self
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.
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
The ID of the environment to get environment member information about.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
The ID of the environment to get environment member information about.
sourcepub fn permissions(self, input: Permissions) -> Self
pub fn permissions(self, input: Permissions) -> Self
Appends an item to permissions
.
To override the contents of this collection use set_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.
sourcepub fn set_permissions(self, input: Option<Vec<Permissions>>) -> Self
pub fn set_permissions(self, input: Option<Vec<Permissions>>) -> Self
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.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of environment members to get information about.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of environment members to get information about.
Trait Implementations§
source§impl Clone for DescribeEnvironmentMemberships
impl Clone for DescribeEnvironmentMemberships
source§fn clone(&self) -> DescribeEnvironmentMemberships
fn clone(&self) -> DescribeEnvironmentMemberships
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more