interface CfnUserProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins.CfnUserProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopsworks/mixins#CfnUserProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.opsworks.mixins.CfnUserProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_opsworks.mixins.CfnUserProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_opsworks » mixins » CfnUserProfileMixinProps |
Properties for CfnUserProfilePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opsworks_mixins } from '@aws-cdk/mixins-preview/aws-opsworks';
const cfnUserProfileMixinProps: opsworks_mixins.CfnUserProfileMixinProps = {
allowSelfManagement: false,
iamUserArn: 'iamUserArn',
sshPublicKey: 'sshPublicKey',
sshUsername: 'sshUsername',
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | boolean | IResolvable | Whether users can specify their own SSH public key through the My Settings page. |
| iam | string | The user's IAM ARN. |
| ssh | string | The user's SSH public key. |
| ssh | string | The user's SSH user name. |
allowSelfManagement?
Type:
boolean | IResolvable
(optional)
Whether users can specify their own SSH public key through the My Settings page.
For more information, see Managing User Permissions .
iamUserArn?
Type:
string
(optional)
The user's IAM ARN.
sshPublicKey?
Type:
string
(optional)
The user's SSH public key.
sshUsername?
Type:
string
(optional)
The user's SSH user name.

.NET
Go
Java
Python
TypeScript