Class EgressOnlyInternetGateway
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.ec2.alpha.EgressOnlyInternetGateway
- All Implemented Interfaces:
IResource
,IRouteTarget
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-13T21:17:43.018Z")
@Stability(Experimental)
public class EgressOnlyInternetGateway
extends Resource
implements IRouteTarget
(experimental) Creates an egress-only internet gateway.
Example:
Stack stack = new Stack(); VpcV2 myVpc = VpcV2.Builder.create(this, "Vpc") .primaryAddressBlock(IpAddresses.ipv4("10.1.0.0/16")) .secondaryAddressBlocks(List.of(IpAddresses.amazonProvidedIpv6(SecondaryAddressProps.builder() .cidrBlockName("AmazonProvided") .build()))) .build(); EgressOnlyInternetGateway eigw = EgressOnlyInternetGateway.Builder.create(this, "EIGW") .vpc(myVpc) .build(); RouteTable routeTable = RouteTable.Builder.create(this, "RouteTable") .vpc(myVpc) .build(); routeTable.addRoute("EIGW", "::/0", Map.of("gateway", eigw));
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forEgressOnlyInternetGateway
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.ec2.alpha.IRouteTarget
IRouteTarget.Jsii$Default, IRouteTarget.Jsii$Proxy
-
Constructor Summary
ModifierConstructorDescriptionprotected
EgressOnlyInternetGateway
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
EgressOnlyInternetGateway
(software.amazon.jsii.JsiiObjectRef objRef) EgressOnlyInternetGateway
(software.constructs.Construct scope, String id, EgressOnlyInternetGatewayProps props) -
Method Summary
Modifier and TypeMethodDescription(experimental) The egress-only internet gateway CFN resource.(experimental) The ID of the route target.(experimental) The type of router used in the route.Methods inherited from class software.amazon.awscdk.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResource
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
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, wait, wait, wait
Methods inherited from interface software.constructs.IConstruct
getNode
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
EgressOnlyInternetGateway
protected EgressOnlyInternetGateway(software.amazon.jsii.JsiiObjectRef objRef) -
EgressOnlyInternetGateway
protected EgressOnlyInternetGateway(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
EgressOnlyInternetGateway
@Stability(Experimental) public EgressOnlyInternetGateway(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull EgressOnlyInternetGatewayProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
getResource
(experimental) The egress-only internet gateway CFN resource. -
getRouterTargetId
(experimental) The ID of the route target.- Specified by:
getRouterTargetId
in interfaceIRouteTarget
-
getRouterType
(experimental) The type of router used in the route.- Specified by:
getRouterType
in interfaceIRouteTarget
-