interface CustomModelTag
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.StepFunctions.Tasks.CustomModelTag |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#CustomModelTag |
Java | software.amazon.awscdk.services.stepfunctions.tasks.CustomModelTag |
Python | aws_cdk.aws_stepfunctions_tasks.CustomModelTag |
TypeScript (source) | aws-cdk-lib » aws_stepfunctions_tasks » CustomModelTag |
The key/value pair for a tag.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';
const customModelTag: stepfunctions_tasks.CustomModelTag = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | Key for the tag. |
| value | string | Value for the tag. |
key
Type:
string
Key for the tag.
value
Type:
string
Value for the tag.

.NET
Go
Java
Python
TypeScript (