#[non_exhaustive]pub struct DescribeEnvironmentMembershipsInput { /* private fields */ }
Implementations
sourceimpl DescribeEnvironmentMembershipsInput
impl DescribeEnvironmentMembershipsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironmentMemberships, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironmentMemberships, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeEnvironmentMemberships
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEnvironmentMembershipsInput
.
sourceimpl DescribeEnvironmentMembershipsInput
impl DescribeEnvironmentMembershipsInput
sourcepub fn user_arn(&self) -> Option<&str>
pub fn user_arn(&self) -> Option<&str>
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) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The ID of the environment to get environment member information about.
sourcepub fn permissions(&self) -> Option<&[Permissions]>
pub fn permissions(&self) -> Option<&[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 next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of environment members to get information about.
Trait Implementations
sourceimpl Clone for DescribeEnvironmentMembershipsInput
impl Clone for DescribeEnvironmentMembershipsInput
sourcefn clone(&self) -> DescribeEnvironmentMembershipsInput
fn clone(&self) -> DescribeEnvironmentMembershipsInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more