interface UserContextProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.UserContextProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.UserContextProperty |
Python | aws_cdk.aws_sagemaker.CfnModelPackage.UserContextProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelPackage » UserContextProperty |
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const userContextProperty: sagemaker.CfnModelPackage.UserContextProperty = {
domainId: 'domainId',
userProfileArn: 'userProfileArn',
userProfileName: 'userProfileName',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The domain associated with the user. |
| user | string | The Amazon Resource Name (ARN) of the user's profile. |
| user | string | The name of the user's profile. |
domainId?
Type:
string
(optional)
The domain associated with the user.
userProfileArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the user's profile.
userProfileName?
Type:
string
(optional)
The name of the user's profile.

.NET
Java
Python
TypeScript