import { BrowserHttpOptions as __HttpOptions__ } from "@aws-sdk/types"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeEnvironmentMembershipsInput shape */ export interface 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.

*/ userArn?: string; /** *

The ID of the environment to get environment member information about.

*/ environmentId?: string; /** *

The type of environment member permissions to get information about. Available values include:

If no value is specified, information about all environment members are returned.

*/ permissions?: Array<"owner" | "read-write" | "read-only" | string> | Iterable<"owner" | "read-write" | "read-only" | 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.

*/ nextToken?: string; /** *

The maximum number of environment members to get information about.

*/ maxResults?: number; /** * The maximum number of times this operation should be retried. If set, this value will override the `maxRetries` configuration set on the client for this command. */ $maxRetries?: number; /** * An object that may be queried to determine if the underlying operation has been aborted. * * @see https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal */ $abortSignal?: __aws_sdk_types.AbortSignal; /** * Per-request HTTP configuration options. If set, any options specified will override the corresponding HTTP option set on the client for this command. */ $httpOptions?: __HttpOptions__; }