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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFleet.ProxyConfigurationPropertystatic final classAn 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 ofFleetProxyRuleobjects that represent the specified destination domains or IPs to allow or deny network access control to.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFleet.FleetProxyRuleProperty>- See Also:
-
builder
-