software.amazon.awscdk.services.ec2.alpha.InternetGatewayProps Maven / Gradle / Ivy
Show all versions of ec2-alpha Show documentation
package software.amazon.awscdk.services.ec2.alpha;
/**
* (experimental) Properties to define an internet gateway.
*
* Example:
*
*
* Stack stack = new Stack();
* VpcV2 myVpc = new VpcV2(this, "Vpc");
* RouteTable routeTable = RouteTable.Builder.create(this, "RouteTable")
* .vpc(myVpc)
* .build();
* SubnetV2 subnet = SubnetV2.Builder.create(this, "Subnet")
* .vpc(myVpc)
* .availabilityZone("eu-west-2a")
* .ipv4CidrBlock(new IpCidr("10.0.0.0/24"))
* .subnetType(SubnetType.PRIVATE_ISOLATED)
* .build();
* InternetGateway igw = InternetGateway.Builder.create(this, "IGW")
* .vpc(myVpc)
* .build();
* Route.Builder.create(this, "IgwRoute")
* .routeTable(routeTable)
* .destination("0.0.0.0/0")
* .target(Map.of("gateway", igw))
* .build();
*
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-10-11T15:56:07.916Z")
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.ec2.alpha.$Module.class, fqn = "@aws-cdk/aws-ec2-alpha.InternetGatewayProps")
@software.amazon.jsii.Jsii.Proxy(InternetGatewayProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface InternetGatewayProps extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) The ID of the VPC for which to create the internet gateway.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ec2.alpha.IVpcV2 getVpc();
/**
* (experimental) The resource name of the internet gateway.
*
* Default: - provisioned without a resource name
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getInternetGatewayName() {
return null;
}
/**
* @return a {@link Builder} of {@link InternetGatewayProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link InternetGatewayProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
software.amazon.awscdk.services.ec2.alpha.IVpcV2 vpc;
java.lang.String internetGatewayName;
/**
* Sets the value of {@link InternetGatewayProps#getVpc}
* @param vpc The ID of the VPC for which to create the internet gateway. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder vpc(software.amazon.awscdk.services.ec2.alpha.IVpcV2 vpc) {
this.vpc = vpc;
return this;
}
/**
* Sets the value of {@link InternetGatewayProps#getInternetGatewayName}
* @param internetGatewayName The resource name of the internet gateway.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder internetGatewayName(java.lang.String internetGatewayName) {
this.internetGatewayName = internetGatewayName;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link InternetGatewayProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public InternetGatewayProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link InternetGatewayProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements InternetGatewayProps {
private final software.amazon.awscdk.services.ec2.alpha.IVpcV2 vpc;
private final java.lang.String internetGatewayName;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.vpc = software.amazon.jsii.Kernel.get(this, "vpc", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.alpha.IVpcV2.class));
this.internetGatewayName = software.amazon.jsii.Kernel.get(this, "internetGatewayName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.vpc = java.util.Objects.requireNonNull(builder.vpc, "vpc is required");
this.internetGatewayName = builder.internetGatewayName;
}
@Override
public final software.amazon.awscdk.services.ec2.alpha.IVpcV2 getVpc() {
return this.vpc;
}
@Override
public final java.lang.String getInternetGatewayName() {
return this.internetGatewayName;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("vpc", om.valueToTree(this.getVpc()));
if (this.getInternetGatewayName() != null) {
data.set("internetGatewayName", om.valueToTree(this.getInternetGatewayName()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@aws-cdk/aws-ec2-alpha.InternetGatewayProps"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
InternetGatewayProps.Jsii$Proxy that = (InternetGatewayProps.Jsii$Proxy) o;
if (!vpc.equals(that.vpc)) return false;
return this.internetGatewayName != null ? this.internetGatewayName.equals(that.internetGatewayName) : that.internetGatewayName == null;
}
@Override
public final int hashCode() {
int result = this.vpc.hashCode();
result = 31 * result + (this.internetGatewayName != null ? this.internetGatewayName.hashCode() : 0);
return result;
}
}
}