interface TagsEntryProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.StepFunctions.CfnStateMachine.TagsEntryProperty |
Java | software.amazon.awscdk.services.stepfunctions.CfnStateMachine.TagsEntryProperty |
Python | aws_cdk.aws_stepfunctions.CfnStateMachine.TagsEntryProperty |
TypeScript | @aws-cdk/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 * as stepfunctions from '@aws-cdk/aws-stepfunctions';
const tagsEntryProperty: stepfunctions.CfnStateMachine.TagsEntryProperty = {
key: 'key',
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
key | string | The key for a key-value pair in a tag entry. |
value | string | The value for 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.