interface TagsEntryProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.StepFunctions.CfnStateMachine.TagsEntryProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#CfnStateMachine_TagsEntryProperty | 
|  Java | software.amazon.awscdk.services.stepfunctions.CfnStateMachine.TagsEntryProperty | 
|  Python | aws_cdk.aws_stepfunctions.CfnStateMachine.TagsEntryProperty | 
|  TypeScript | aws-cdk-lib»aws_stepfunctions»CfnStateMachine»TagsEntryProperty | 
The TagsEntry property specifies tags to identify a state machine.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions as stepfunctions } from 'aws-cdk-lib';
const tagsEntryProperty: stepfunctions.CfnStateMachine.TagsEntryProperty = {
  key: 'key',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| key | string | The keyfor a key-value pair in a tag entry. | 
| value | string | The valuefor a key-value pair in a tag entry. | 
key
Type:
string
The key for a key-value pair in a tag entry.
value
Type:
string
The value for a key-value pair in a tag entry.
