interface UserContextProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.UserContextProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_UserContextProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.UserContextProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.UserContextProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » UserContextProperty |
Information about the user who created or modified a SageMaker resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const userContextProperty: sagemaker_mixins.CfnModelCardPropsMixin.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, default: "UnsetValue")
The domain associated with the user.
userProfileArn?
Type:
string
(optional, default: "UnsetValue")
The Amazon Resource Name (ARN) of the user's profile.
userProfileName?
Type:
string
(optional, default: "UnsetValue")
The name of the user's profile.

.NET
Go
Java
Python
TypeScript