Class: Aws::CodeStar::Types::TeamMember
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::TeamMember
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codestar/types.rb
Overview
Information about a team member in a project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#project_role ⇒ String
The role assigned to the user in the project.
-
#remote_access_allowed ⇒ Boolean
Whether the user is allowed to remotely access project resources using an SSH public/private key pair.
-
#user_arn ⇒ String
The Amazon Resource Name (ARN) of the user in IAM.
Instance Attribute Details
#project_role ⇒ String
The role assigned to the user in the project. Project roles have different levels of access. For more information, see [Working with Teams] in the *AWS CodeStar User Guide*.
[1]: docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html
954 955 956 957 958 959 960 |
# File 'lib/aws-sdk-codestar/types.rb', line 954 class TeamMember < Struct.new( :user_arn, :project_role, :remote_access_allowed) SENSITIVE = [] include Aws::Structure end |
#remote_access_allowed ⇒ Boolean
Whether the user is allowed to remotely access project resources using an SSH public/private key pair.
954 955 956 957 958 959 960 |
# File 'lib/aws-sdk-codestar/types.rb', line 954 class TeamMember < Struct.new( :user_arn, :project_role, :remote_access_allowed) SENSITIVE = [] include Aws::Structure end |
#user_arn ⇒ String
The Amazon Resource Name (ARN) of the user in IAM.
954 955 956 957 958 959 960 |
# File 'lib/aws-sdk-codestar/types.rb', line 954 class TeamMember < Struct.new( :user_arn, :project_role, :remote_access_allowed) SENSITIVE = [] include Aws::Structure end |