Class CfnVPCGatewayAttachment

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:56.820Z") @Stability(Stable) public class CfnVPCGatewayAttachment extends CfnResource implements IInspectable
Attaches an internet gateway, or a virtual private gateway to a VPC, enabling connectivity between the internet and the VPC.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 CfnVPCGatewayAttachment cfnVPCGatewayAttachment = CfnVPCGatewayAttachment.Builder.create(this, "MyCfnVPCGatewayAttachment")
         .vpcId("vpcId")
         // the properties below are optional
         .internetGatewayId("internetGatewayId")
         .vpnGatewayId("vpnGatewayId")
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnVPCGatewayAttachment

      protected CfnVPCGatewayAttachment(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnVPCGatewayAttachment

      protected CfnVPCGatewayAttachment(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnVPCGatewayAttachment

      @Stability(Stable) public CfnVPCGatewayAttachment(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnVPCGatewayAttachmentProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrAttachmentType

      @Stability(Stable) @NotNull public String getAttrAttachmentType()
      Used to identify if this resource is an Internet Gateway or Vpn Gateway Attachment.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getVpcId

      @Stability(Stable) @NotNull public String getVpcId()
      The ID of the VPC.
    • setVpcId

      @Stability(Stable) public void setVpcId(@NotNull String value)
      The ID of the VPC.
    • getInternetGatewayId

      @Stability(Stable) @Nullable public String getInternetGatewayId()
      The ID of the internet gateway.
    • setInternetGatewayId

      @Stability(Stable) public void setInternetGatewayId(@Nullable String value)
      The ID of the internet gateway.
    • getVpnGatewayId

      @Stability(Stable) @Nullable public String getVpnGatewayId()
      The ID of the virtual private gateway.
    • setVpnGatewayId

      @Stability(Stable) public void setVpnGatewayId(@Nullable String value)
      The ID of the virtual private gateway.