Class: Aws::Cloud9::Types::DescribeEnvironmentMembershipsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Cloud9::Types::DescribeEnvironmentMembershipsRequest
- Defined in:
- gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_id ⇒ String
The ID of the environment to get environment member information about.
-
#max_results ⇒ Integer
The maximum number of environment members to get information about.
-
#next_token ⇒ 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.
-
#permissions ⇒ Array<String>
The type of environment member permissions to get information about.
-
#user_arn ⇒ String
The Amazon Resource Name (ARN) of an individual environment member to get information about.
Instance Attribute Details
#environment_id ⇒ String
The ID of the environment to get environment member information about.
284 285 286 287 288 289 290 291 292 |
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 284 class DescribeEnvironmentMembershipsRequest < Struct.new( :user_arn, :environment_id, :permissions, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of environment members to get information about.
284 285 286 287 288 289 290 291 292 |
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 284 class DescribeEnvironmentMembershipsRequest < Struct.new( :user_arn, :environment_id, :permissions, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ 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.
284 285 286 287 288 289 290 291 292 |
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 284 class DescribeEnvironmentMembershipsRequest < Struct.new( :user_arn, :environment_id, :permissions, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#permissions ⇒ Array<String>
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.
284 285 286 287 288 289 290 291 292 |
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 284 class DescribeEnvironmentMembershipsRequest < Struct.new( :user_arn, :environment_id, :permissions, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#user_arn ⇒ 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.
284 285 286 287 288 289 290 291 292 |
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 284 class DescribeEnvironmentMembershipsRequest < Struct.new( :user_arn, :environment_id, :permissions, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |