Class NatProvider
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.ec2.NatProvider
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
- Direct Known Subclasses:
NatInstanceProvider
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.476Z")
@Stability(Stable)
public abstract class NatProvider
extends software.amazon.jsii.JsiiObject
NAT providers.
Determines what type of NAT provider to create, either NAT gateways or NAT instance.
Example:
// Configure the `natGatewayProvider` when defining a Vpc NatInstanceProvider natGatewayProvider = NatProvider.instance(NatInstanceProps.builder() .instanceType(new InstanceType("t3.small")) .build()); Vpc vpc = Vpc.Builder.create(this, "MyVpc") .natGatewayProvider(natGatewayProvider) // The 'natGateways' parameter now controls the number of NAT instances .natGateways(2) .build();
-
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) 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(Stable) @NotNull public static NatInstanceProvider instance(@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.
-