Class: Aws::CodeStar::Types::UpdateUserProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::UpdateUserProfileRequest
- Defined in:
- gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb
Overview
When making an API call, you may pass UpdateUserProfileRequest data as a hash:
{
user_arn: "UserArn", # required
display_name: "UserProfileDisplayName",
email_address: "Email",
ssh_public_key: "SshPublicKey",
}
Constant Summary collapse
- SENSITIVE =
[:display_name, :email_address]
Instance Attribute Summary collapse
-
#display_name ⇒ String
The name that is displayed as the friendly name for the user in AWS CodeStar.
-
#email_address ⇒ String
The email address that is displayed as part of the user's profile in AWS CodeStar.
-
#ssh_public_key ⇒ String
The SSH public key associated with the user in AWS CodeStar.
-
#user_arn ⇒ String
The name that will be displayed as the friendly name for the user in AWS CodeStar.
Instance Attribute Details
#display_name ⇒ String
The name that is displayed as the friendly name for the user in AWS CodeStar.
1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1460 class UpdateUserProfileRequest < Struct.new( :user_arn, :display_name, :email_address, :ssh_public_key) SENSITIVE = [:display_name, :email_address] include Aws::Structure end |
#email_address ⇒ String
The email address that is displayed as part of the user's profile in AWS CodeStar.
1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1460 class UpdateUserProfileRequest < Struct.new( :user_arn, :display_name, :email_address, :ssh_public_key) SENSITIVE = [:display_name, :email_address] include Aws::Structure end |
#ssh_public_key ⇒ String
The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.
1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1460 class UpdateUserProfileRequest < Struct.new( :user_arn, :display_name, :email_address, :ssh_public_key) SENSITIVE = [:display_name, :email_address] include Aws::Structure end |
#user_arn ⇒ String
The name that will be displayed as the friendly name for the user in AWS CodeStar.
1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1460 class UpdateUserProfileRequest < Struct.new( :user_arn, :display_name, :email_address, :ssh_public_key) SENSITIVE = [:display_name, :email_address] include Aws::Structure end |