interface TagsEntryProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EventSchemas.CfnSchema.TagsEntryProperty |
Java | software.amazon.awscdk.services.eventschemas.CfnSchema.TagsEntryProperty |
Python | aws_cdk.aws_eventschemas.CfnSchema.TagsEntryProperty |
TypeScript | @aws-cdk/aws-eventschemas » CfnSchema » TagsEntryProperty |
Tags to associate with the schema.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as eventschemas from '@aws-cdk/aws-eventschemas';
const tagsEntryProperty: eventschemas.CfnSchema.TagsEntryProperty = {
key: 'key',
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
key | string | They key of a key-value pair. |
value | string | They value of a key-value pair. |
key
Type:
string
They key of a key-value pair.
value
Type:
string
They value of a key-value pair.