NatGateway
- class aws_cdk.aws_ec2_alpha.NatGateway(scope, id, *, vpc=None, subnet, allocation_id=None, connectivity_type=None, max_drain_duration=None, nat_gateway_name=None, private_ip_address=None, secondary_allocation_ids=None, secondary_private_ip_address_count=None, secondary_private_ip_addresses=None)
Bases:
Resource(experimental) Creates a network address translation (NAT) gateway.
- Stability:
experimental
- Resource:
AWS::EC2::NatGateway
- ExampleMetadata:
infused
Example:
my_vpc = VpcV2(self, "Vpc") route_table = RouteTable(self, "RouteTable", vpc=my_vpc ) subnet = SubnetV2(self, "Subnet", vpc=my_vpc, availability_zone="eu-west-2a", ipv4_cidr_block=IpCidr("10.0.0.0/24"), subnet_type=SubnetType.PRIVATE_ISOLATED ) natgw = NatGateway(self, "NatGW", subnet=subnet, vpc=my_vpc, connectivity_type=NatConnectivityType.PRIVATE, private_ip_address="10.0.0.42" ) Route(self, "NatGwRoute", route_table=route_table, destination="0.0.0.0/0", target={"gateway": natgw} )
- Parameters:
scope (
Construct)id (
str)vpc (
Optional[IVpcV2]) – (experimental) The ID of the VPC in which the NAT gateway is located. Default: - no elastic ip associated, required in case of public connectivity ifAllocationIdis not definedsubnet (
ISubnetV2) – (experimental) The subnet in which the NAT gateway is located.allocation_id (
Optional[str]) – (experimental) AllocationID of Elastic IP address that’s associated with the NAT gateway. This property is required for a public NAT gateway and cannot be specified with a private NAT gateway. Default: - attr.allocationID of a new Elastic IP created by default //TODO: ADD L2 for elastic ipconnectivity_type (
Optional[NatConnectivityType]) – (experimental) Indicates whether the NAT gateway supports public or private connectivity. Default: NatConnectivityType.Publicmax_drain_duration (
Optional[Duration]) – (experimental) The maximum amount of time to wait before forcibly releasing the IP addresses if connections are still in progress. Default: 350secondsnat_gateway_name (
Optional[str]) – (experimental) The resource name of the NAT gateway. Default: - NATGW provisioned without any nameprivate_ip_address (
Optional[str]) – (experimental) The private IPv4 address to assign to the NAT gateway. Default: - If you don’t provide an address, a private IPv4 address will be automatically assigned.secondary_allocation_ids (
Optional[Sequence[str]]) – (experimental) Secondary EIP allocation IDs. Default: - no secondary allocation IDs attached to NATGWsecondary_private_ip_address_count (
Union[int,float,None]) – (experimental) The number of secondary private IPv4 addresses you want to assign to the NAT gateway.SecondaryPrivateIpAddressCountandSecondaryPrivateIpAddressescannot be set at the same time. Default: - no secondary allocation IDs associated with NATGWsecondary_private_ip_addresses (
Optional[Sequence[str]]) – (experimental) Secondary private IPv4 addresses.SecondaryPrivateIpAddressCountandSecondaryPrivateIpAddressescannot be set at the same time. Default: - no secondary private IpAddresses associated with NATGW
- Stability:
experimental
Methods
- apply_removal_policy(policy)
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN).- Parameters:
policy (
RemovalPolicy)- Return type:
None
- to_string()
Returns a string representation of this construct.
- Return type:
str
Attributes
- PROPERTY_INJECTION_ID = '@aws-cdk.aws-ec2-alpha.NatGateway'
- connectivity_type
(experimental) Indicates whether the NAT gateway supports public or private connectivity.
- Default:
public
- Stability:
experimental
- eip
(experimental) Elastic IP created for allocation.
- Stability:
experimental
- env
The environment this resource belongs to.
For resources that are created and managed in a Stack (those created by creating new class instances like
new Role(),new Bucket(), etc.), this is always the same as the environment of the stack they belong to.For referenced resources (those obtained from referencing methods like
Role.fromRoleArn(),Bucket.fromBucketName(), etc.), they might be different than the stack they were imported into.
- max_drain_duration
(experimental) The maximum amount of time to wait before forcibly releasing the IP addresses if connections are still in progress.
- Default:
‘350 seconds’
- Stability:
experimental
- nat_gateway_id
(experimental) Id of the NatGateway.
- Stability:
experimental
- Attribute:
true
- node
The tree node.
- resource
(experimental) The NAT gateway CFN resource.
- Stability:
experimental
- router_target_id
(experimental) The ID of the route target.
- Stability:
experimental
- router_type
(experimental) The type of router used in the route.
- Stability:
experimental
- stack
The stack in which this resource is defined.
Static Methods
- classmethod is_construct(x)
Checks if
xis a construct.Use this method instead of
instanceofto properly detectConstructinstances, even when the construct library is symlinked.Explanation: in JavaScript, multiple copies of the
constructslibrary on disk are seen as independent, completely different libraries. As a consequence, the classConstructin each copy of theconstructslibrary is seen as a different class, and an instance of one class will not test asinstanceofthe other class.npm installwill not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of theconstructslibrary can be accidentally installed, andinstanceofwill behave unpredictably. It is safest to avoid usinginstanceof, and using this type-testing method instead.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsConstruct.
- classmethod is_owned_resource(construct)
Returns true if the construct was created by CDK, and false otherwise.
- Parameters:
construct (
IConstruct)- Return type:
bool
- classmethod is_resource(construct)
Check whether the given construct is a Resource.
- Parameters:
construct (
IConstruct)- Return type:
bool