Class: Aws::CodeStar::Types::CreateUserProfileRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:display_name, :email_address]

Instance Attribute Summary collapse

Instance Attribute Details

#display_nameString

The name that will be displayed as the friendly name for the user in AWS CodeStar.

Returns:

  • (String)


257
258
259
260
261
262
263
264
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 257

class CreateUserProfileRequest < Struct.new(
  :user_arn,
  :display_name,
  :email_address,
  :ssh_public_key)
  SENSITIVE = [:display_name, :email_address]
  include Aws::Structure
end

#email_addressString

The email address that will be displayed as part of the user's profile in AWS CodeStar.

Returns:

  • (String)


257
258
259
260
261
262
263
264
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 257

class CreateUserProfileRequest < Struct.new(
  :user_arn,
  :display_name,
  :email_address,
  :ssh_public_key)
  SENSITIVE = [:display_name, :email_address]
  include Aws::Structure
end

#ssh_public_keyString

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.

Returns:

  • (String)


257
258
259
260
261
262
263
264
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 257

class CreateUserProfileRequest < Struct.new(
  :user_arn,
  :display_name,
  :email_address,
  :ssh_public_key)
  SENSITIVE = [:display_name, :email_address]
  include Aws::Structure
end

#user_arnString

The Amazon Resource Name (ARN) of the user in IAM.

Returns:

  • (String)


257
258
259
260
261
262
263
264
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 257

class CreateUserProfileRequest < Struct.new(
  :user_arn,
  :display_name,
  :email_address,
  :ssh_public_key)
  SENSITIVE = [:display_name, :email_address]
  include Aws::Structure
end