interface CfnContextMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnContextMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnContextMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnContextMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnContextMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnContextMixinProps |
Properties for CfnContextPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-context.html
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/cfn-property-mixins';
const cfnContextMixinProps: sagemaker.CfnContextMixinProps = {
contextName: 'contextName',
contextType: 'contextType',
description: 'description',
properties: {
propertiesKey: 'properties',
},
source: {
sourceId: 'sourceId',
sourceType: 'sourceType',
sourceUri: 'sourceUri',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| context | string | The name of the context. |
| context | string | The context type. |
| description? | string | The description of the context. |
| properties? | IResolvable | { [string]: string } | A list of properties to add to the context. |
| source? | IResolvable | Source | The source type, ID, and URI. |
| tags? | Tags[] | A list of tags to apply to the context. |
contextName?
Type:
string
(optional)
The name of the context.
Must be unique to your account in an AWS Region.
contextType?
Type:
string
(optional)
The context type.
description?
Type:
string
(optional)
The description of the context.
properties?
Type:
IResolvable | { [string]: string }
(optional)
A list of properties to add to the context.
source?
Type:
IResolvable | Source
(optional)
The source type, ID, and URI.
tags?
Type:
Tags[]
(optional)
A list of tags to apply to the context.

.NET
Go
Java
Python
TypeScript