interface LabelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnFargateProfilePropsMixin.LabelProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnFargateProfilePropsMixin_LabelProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnFargateProfilePropsMixin.LabelProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnFargateProfilePropsMixin.LabelProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnFargateProfilePropsMixin » LabelProperty |
A key-value pair.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const labelProperty: eks_mixins.CfnFargateProfilePropsMixin.LabelProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | Enter a key. |
| value? | string | Enter a value. |
key?
Type:
string
(optional)
Enter a key.
value?
Type:
string
(optional)
Enter a value.

.NET
Go
Java
Python
TypeScript