Class NatProvider
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
- Direct Known Subclasses:
NatGatewayProvider
,NatInstanceProvider
,NatInstanceProviderV2
Determines what type of NAT provider to create, either NAT gateways or NAT instance.
Example:
InstanceType instanceType; NatInstanceProviderV2 provider = NatProvider.instanceV2(NatInstanceProps.builder() .instanceType(instanceType) .defaultAllowedTraffic(NatTrafficDirection.OUTBOUND_ONLY) .build()); Vpc.Builder.create(this, "TheVPC") .natGatewayProvider(provider) .build(); provider.connections.allowFrom(Peer.ipv4("1.2.3.4/8"), Port.HTTP);
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Constructor Summary
ModifierConstructorDescriptionprotected
protected
NatProvider
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
NatProvider
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionabstract void
configureNat
(ConfigureNatOptions options) Called by the VPC to configure NAT.abstract void
configureSubnet
(PrivateSubnet subnet) Configures subnet with the gateway.static NatProvider
gateway()
Use NAT Gateways to provide NAT services for your VPC.static NatProvider
gateway
(NatGatewayProps props) Use NAT Gateways to provide NAT services for your VPC.abstract List<GatewayConfig>
Return list of gateways spawned by the provider.static NatInstanceProvider
instance
(NatInstanceProps props) Deprecated.use instanceV2.static NatInstanceProviderV2
instanceV2
(NatInstanceProps props) Use NAT instances to provide NAT services for your VPC.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
NatProvider
protected NatProvider(software.amazon.jsii.JsiiObjectRef objRef) -
NatProvider
protected NatProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
NatProvider
@Stability(Stable) protected NatProvider()
-
-
Method Details
-
gateway
Use NAT Gateways to provide NAT services for your VPC.NAT gateways are managed by AWS.
- Parameters:
props
-- See Also:
-
gateway
Use NAT Gateways to provide NAT services for your VPC.NAT gateways are managed by AWS.
- See Also:
-
instance
@Stability(Deprecated) @Deprecated @NotNull public static NatInstanceProvider instance(@NotNull NatInstanceProps props) Deprecated.use instanceV2. 'instance' is deprecated since NatInstanceProvider uses a instance image that has reached EOL on Dec 31 2023(deprecated) Use NAT instances to provide NAT services for your VPC.NAT instances are managed by you, but in return allow more configuration.
Be aware that instances created using this provider will not be automatically replaced if they are stopped for any reason. You should implement your own NatProvider based on AutoScaling groups if you need that.
- Parameters:
props
- This parameter is required.- See Also:
-
instanceV2
@Stability(Stable) @NotNull public static NatInstanceProviderV2 instanceV2(@NotNull NatInstanceProps props) Use NAT instances to provide NAT services for your VPC.NAT instances are managed by you, but in return allow more configuration.
Be aware that instances created using this provider will not be automatically replaced if they are stopped for any reason. You should implement your own NatProvider based on AutoScaling groups if you need that.
- Parameters:
props
- This parameter is required.- See Also:
-
configureNat
Called by the VPC to configure NAT.Don't call this directly, the VPC will call it automatically.
- Parameters:
options
- This parameter is required.
-
configureSubnet
Configures subnet with the gateway.Don't call this directly, the VPC will call it automatically.
- Parameters:
subnet
- This parameter is required.
-
getConfiguredGateways
Return list of gateways spawned by the provider.
-