interface TagsEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.StepFunctions.CfnActivity.TagsEntryProperty |
Java | software.amazon.awscdk.services.stepfunctions.CfnActivity.TagsEntryProperty |
Python | aws_cdk.aws_stepfunctions.CfnActivity.TagsEntryProperty |
TypeScript | @aws-cdk/aws-stepfunctions » CfnActivity » TagsEntryProperty |
The TagsEntry property specifies tags to identify an activity.
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.CfnActivity.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.

.NET
Java
Python
TypeScript