Interface CfnFleetPropsMixin.ProxyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleetPropsMixin.ProxyConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFleetPropsMixin
@Stability(Stable)
public static interface CfnFleetPropsMixin.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.cfnpropertymixins.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 forCfnFleetPropsMixin.ProxyConfigurationPropertystatic final classAn implementation forCfnFleetPropsMixin.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: '<'eitherIResolvableorCfnFleetPropsMixin.FleetProxyRuleProperty>- See Also:
-
builder
-