Class: Aws::CodeStar::Types::UpdateTeamMemberRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::UpdateTeamMemberRequest
- Defined in:
- gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb
Overview
When making an API call, you may pass UpdateTeamMemberRequest data as a hash:
{
project_id: "ProjectId", # required
user_arn: "UserArn", # required
project_role: "Role",
remote_access_allowed: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#project_id ⇒ String
The ID of the project.
-
#project_role ⇒ String
The role assigned to the user in the project.
-
#remote_access_allowed ⇒ Boolean
Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile.
-
#user_arn ⇒ String
The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes.
Instance Attribute Details
#project_id ⇒ String
The ID of the project.
1392 1393 1394 1395 1396 1397 1398 1399 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1392 class UpdateTeamMemberRequest < Struct.new( :project_id, :user_arn, :project_role, :remote_access_allowed) SENSITIVE = [] include Aws::Structure end |
#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.
1392 1393 1394 1395 1396 1397 1398 1399 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1392 class UpdateTeamMemberRequest < Struct.new( :project_id, :user_arn, :project_role, :remote_access_allowed) SENSITIVE = [] include Aws::Structure end |
#remote_access_allowed ⇒ Boolean
Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile. Even if this is set to True, the user must associate a public key with their profile before the user can access resources.
1392 1393 1394 1395 1396 1397 1398 1399 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1392 class UpdateTeamMemberRequest < Struct.new( :project_id, :user_arn, :project_role, :remote_access_allowed) SENSITIVE = [] include Aws::Structure end |
#user_arn ⇒ String
The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes.
1392 1393 1394 1395 1396 1397 1398 1399 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1392 class UpdateTeamMemberRequest < Struct.new( :project_id, :user_arn, :project_role, :remote_access_allowed) SENSITIVE = [] include Aws::Structure end |