interface MetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LicenseManager.CfnLicensePropsMixin.MetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslicensemanager#CfnLicensePropsMixin_MetadataProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.licensemanager.CfnLicensePropsMixin.MetadataProperty |
Python | aws_cdk.cfn_property_mixins.aws_licensemanager.CfnLicensePropsMixin.MetadataProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_licensemanager » CfnLicensePropsMixin » MetadataProperty |
Describes key/value pairs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_licensemanager as licensemanager } from '@aws-cdk/cfn-property-mixins';
const metadataProperty: licensemanager.CfnLicensePropsMixin.MetadataProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The key name. |
| value? | string | The value. |
name?
Type:
string
(optional)
The key name.
value?
Type:
string
(optional)
The value.

.NET
Go
Java
Python
TypeScript