interface TagsItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnExperimentTrialComponent.TagsItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnExperimentTrialComponent_TagsItemsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnExperimentTrialComponent.TagsItemsProperty |
Python | aws_cdk.aws_sagemaker.CfnExperimentTrialComponent.TagsItemsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnExperimentTrialComponent » TagsItemsProperty |
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 tagsItemsProperty: sagemaker.CfnExperimentTrialComponent.TagsItemsProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The tag key. |
| value | string | The tag value. |
key
Type:
string
The tag key.
value
Type:
string
The tag value.

.NET
Go
Java
Python
TypeScript