CfnUserProfileMixinProps
- class aws_cdk.mixins_preview.aws_opsworks.mixins.CfnUserProfileMixinProps(*, allow_self_management=None, iam_user_arn=None, ssh_public_key=None, ssh_username=None)
Bases:
objectProperties for CfnUserProfilePropsMixin.
- Parameters:
allow_self_management (
Union[bool,IResolvable,None]) – Whether users can specify their own SSH public key through the My Settings page. For more information, see Managing User Permissions .iam_user_arn (
Optional[str]) – The user’s IAM ARN.ssh_public_key (
Optional[str]) – The user’s SSH public key.ssh_username (
Optional[str]) – The user’s SSH user name.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_opsworks import mixins as opsworks_mixins cfn_user_profile_mixin_props = opsworks_mixins.CfnUserProfileMixinProps( allow_self_management=False, iam_user_arn="iamUserArn", ssh_public_key="sshPublicKey", ssh_username="sshUsername" )
Attributes
- allow_self_management
Whether users can specify their own SSH public key through the My Settings page.
For more information, see Managing User Permissions .
- iam_user_arn
The user’s IAM ARN.
- ssh_public_key
The user’s SSH public key.
- ssh_username
The user’s SSH user name.