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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFleet.ProxyConfigurationProperty
static final class
An implementation forCfnFleet.ProxyConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultBehavior
The default behavior of outgoing traffic.- See Also:
-
getOrderedProxyRules
An array ofFleetProxyRule
objects that represent the specified destination domains or IPs to allow or deny network access control to.- See Also:
-
builder
-