Interface CfnFargateProfilePropsMixin.SelectorProperty

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

@Stability(Stable) public static interface CfnFargateProfilePropsMixin.SelectorProperty extends software.amazon.jsii.JsiiSerializable
An object representing an AWS Fargate profile selector.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.eks.*;
 SelectorProperty selectorProperty = SelectorProperty.builder()
         .labels(List.of(LabelProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .namespace("namespace")
         .build();
 

See Also: