interface CfnExperimentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnExperimentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnExperimentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnExperimentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnExperimentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnExperimentMixinProps |
Properties for CfnExperimentPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-experiment.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 cfnExperimentMixinProps: sagemaker.CfnExperimentMixinProps = {
description: 'description',
displayName: 'displayName',
experimentName: 'experimentName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the experiment. |
| display | string | The name of the experiment as displayed. |
| experiment | string | The name of the experiment. |
| tags? | Tags[] | A list of tags to associate with the experiment. |
description?
Type:
string
(optional)
The description of the experiment.
displayName?
Type:
string
(optional)
The name of the experiment as displayed.
The name does not need to be unique.
experimentName?
Type:
string
(optional)
The name of the experiment.
Must be unique in your AWS account and is not case-sensitive.
tags?
Type:
Tags[]
(optional)
A list of tags to associate with the experiment.

.NET
Go
Java
Python
TypeScript