Class: Aws::OpsWorks::Types::UpdateUserProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::UpdateUserProfileRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allow_self_management ⇒ Boolean
Whether users can specify their own SSH public key through the My Settings page.
-
#iam_user_arn ⇒ String
The user IAM ARN.
-
#ssh_public_key ⇒ String
The user’s new SSH public key.
-
#ssh_username ⇒ String
The user’s SSH user name.
Instance Attribute Details
#allow_self_management ⇒ Boolean
Whether users can specify their own SSH public key through the My Settings page. For more information, see [Managing User Permissions].
[1]: docs.aws.amazon.com/opsworks/latest/userguide/security-settingsshkey.html
6033 6034 6035 6036 6037 6038 6039 6040 |
# File 'lib/aws-sdk-opsworks/types.rb', line 6033 class UpdateUserProfileRequest < Struct.new( :iam_user_arn, :ssh_username, :ssh_public_key, :allow_self_management) SENSITIVE = [] include Aws::Structure end |
#iam_user_arn ⇒ String
The user IAM ARN. This can also be a federated user’s ARN.
6033 6034 6035 6036 6037 6038 6039 6040 |
# File 'lib/aws-sdk-opsworks/types.rb', line 6033 class UpdateUserProfileRequest < Struct.new( :iam_user_arn, :ssh_username, :ssh_public_key, :allow_self_management) SENSITIVE = [] include Aws::Structure end |
#ssh_public_key ⇒ String
The user’s new SSH public key.
6033 6034 6035 6036 6037 6038 6039 6040 |
# File 'lib/aws-sdk-opsworks/types.rb', line 6033 class UpdateUserProfileRequest < Struct.new( :iam_user_arn, :ssh_username, :ssh_public_key, :allow_self_management) SENSITIVE = [] include Aws::Structure end |
#ssh_username ⇒ String
The user’s SSH user name. The allowable characters are [a-z], [A-Z], [0-9], ‘-’, and ‘_’. If the specified name includes other punctuation marks, OpsWorks Stacks removes them. For example, my.name will be changed to myname. If you do not specify an SSH user name, OpsWorks Stacks generates one from the IAM user name.
6033 6034 6035 6036 6037 6038 6039 6040 |
# File 'lib/aws-sdk-opsworks/types.rb', line 6033 class UpdateUserProfileRequest < Struct.new( :iam_user_arn, :ssh_username, :ssh_public_key, :allow_self_management) SENSITIVE = [] include Aws::Structure end |