Interface CfnFargateProfile.LabelProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFargateProfile.LabelProperty.Jsii$Proxy
Enclosing class:
CfnFargateProfile

@Stability(Stable) public static interface CfnFargateProfile.LabelProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.eks.*;
 LabelProperty labelProperty = LabelProperty.builder()
         .key("key")
         .value("value")
         .build();