interface UserProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.OpsWorks.UserProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsopsworks#UserProfileReference |
Java | software.amazon.awscdk.interfaces.opsworks.UserProfileReference |
Python | aws_cdk.interfaces.aws_opsworks.UserProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_opsworks » UserProfileReference |
A reference to a UserProfile resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opsworks as interfaces_opsworks } from 'aws-cdk-lib/interfaces';
const userProfileReference: interfaces_opsworks.UserProfileReference = {
userProfileId: 'userProfileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| user | string | The Id of the UserProfile resource. |
userProfileId
Type:
string
The Id of the UserProfile resource.

.NET
Go
Java
Python
TypeScript