interface UserProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.UserProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#UserProfileReference |
Java | software.amazon.awscdk.services.sagemaker.UserProfileReference |
Python | aws_cdk.aws_sagemaker.UserProfileReference |
TypeScript | aws-cdk-lib » aws_sagemaker » 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_sagemaker as sagemaker } from 'aws-cdk-lib';
const userProfileReference: sagemaker.UserProfileReference = {
domainId: 'domainId',
userProfileArn: 'userProfileArn',
userProfileName: 'userProfileName',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainId of the UserProfile resource. |
| user | string | The ARN of the UserProfile resource. |
| user | string | The UserProfileName of the UserProfile resource. |
domainId
Type:
string
The DomainId of the UserProfile resource.
userProfileArn
Type:
string
The ARN of the UserProfile resource.
userProfileName
Type:
string
The UserProfileName of the UserProfile resource.

.NET
Go
Java
Python
TypeScript