Interface CfnFleet.ProxyConfigurationProperty

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

@Stability(Stable) public static interface CfnFleet.ProxyConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Information about the proxy configurations that apply network access control to your reserved capacity instances.

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.codebuild.*;
 ProxyConfigurationProperty proxyConfigurationProperty = ProxyConfigurationProperty.builder()
         .defaultBehavior("defaultBehavior")
         .orderedProxyRules(List.of(FleetProxyRuleProperty.builder()
                 .effect("effect")
                 .entities(List.of("entities"))
                 .type("type")
                 .build()))
         .build();
 

See Also: