Interface CfnApplicationV2.EnvironmentPropertiesProperty

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

@Stability(Stable) public static interface CfnApplicationV2.EnvironmentPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Describes execution properties for a Managed Service for Apache Flink application.

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.kinesisanalytics.*;
 EnvironmentPropertiesProperty environmentPropertiesProperty = EnvironmentPropertiesProperty.builder()
         .propertyGroups(List.of(PropertyGroupProperty.builder()
                 .propertyGroupId("propertyGroupId")
                 .propertyMap(Map.of(
                         "propertyMapKey", "propertyMap"))
                 .build()))
         .build();
 

See Also: