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
ConstructorsModifierConstructorDescriptionprotectedprotectedNatProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedNatProvider(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionabstract voidconfigureNat(ConfigureNatOptions options) Called by the VPC to configure NAT.abstract voidconfigureSubnet(PrivateSubnet subnet) Configures subnet with the gateway.static NatProvidergateway()Use NAT Gateways to provide NAT services for your VPC.static NatProvidergateway(NatGatewayProps props) Use NAT Gateways to provide NAT services for your VPC.abstract List<GatewayConfig>Return list of gateways spawned by the provider.static NatInstanceProviderinstance(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, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods 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.
-
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.
-