All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.services.ec2.alpha.InternetGatewayOptions Maven / Gradle / Ivy

There is a newer version: 2.167.2-alpha.0
Show newest version
package software.amazon.awscdk.services.ec2.alpha;

/**
 * (experimental) Options to define InternetGateway for VPC.
 * 

* Example: *

*

 * Stack stack = new Stack();
 * VpcV2 myVpc = new VpcV2(this, "Vpc");
 * SubnetV2 subnet = SubnetV2.Builder.create(this, "Subnet")
 *         .vpc(myVpc)
 *         .availabilityZone("eu-west-2a")
 *         .ipv4CidrBlock(new IpCidr("10.0.0.0/24"))
 *         .subnetType(SubnetType.PUBLIC)
 *         .build();
 * myVpc.addInternetGateway(InternetGatewayOptions.builder()
 *         .ipv4Destination("192.168.0.0/16")
 *         .build());
 * 
*/ @javax.annotation.Generated(value = "jsii-pacmak/1.104.0 (build e79254c)", date = "2024-11-15T10:25:09.183Z") @software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.ec2.alpha.$Module.class, fqn = "@aws-cdk/aws-ec2-alpha.InternetGatewayOptions") @software.amazon.jsii.Jsii.Proxy(InternetGatewayOptions.Jsii$Proxy.class) @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public interface InternetGatewayOptions extends software.amazon.jsii.JsiiSerializable { /** * (experimental) Destination Ipv6 address for EGW route. *

* Default: - '0.0.0.0' all Ipv4 traffic */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable java.lang.String getIpv4Destination() { return null; } /** * (experimental) Destination Ipv6 address for EGW route. *

* Default: - '::/0' all Ipv6 traffic */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable java.lang.String getIpv6Destination() { return null; } /** * @return a {@link Builder} of {@link InternetGatewayOptions} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) static Builder builder() { return new Builder(); } /** * A builder for {@link InternetGatewayOptions} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static final class Builder implements software.amazon.jsii.Builder { java.lang.String ipv4Destination; java.lang.String ipv6Destination; /** * Sets the value of {@link InternetGatewayOptions#getIpv4Destination} * @param ipv4Destination Destination Ipv6 address for EGW route. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder ipv4Destination(java.lang.String ipv4Destination) { this.ipv4Destination = ipv4Destination; return this; } /** * Sets the value of {@link InternetGatewayOptions#getIpv6Destination} * @param ipv6Destination Destination Ipv6 address for EGW route. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder ipv6Destination(java.lang.String ipv6Destination) { this.ipv6Destination = ipv6Destination; return this; } /** * Builds the configured instance. * @return a new instance of {@link InternetGatewayOptions} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public InternetGatewayOptions build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link InternetGatewayOptions} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements InternetGatewayOptions { private final java.lang.String ipv4Destination; private final java.lang.String ipv6Destination; /** * 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.ipv4Destination = software.amazon.jsii.Kernel.get(this, "ipv4Destination", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.ipv6Destination = software.amazon.jsii.Kernel.get(this, "ipv6Destination", 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.ipv4Destination = builder.ipv4Destination; this.ipv6Destination = builder.ipv6Destination; } @Override public final java.lang.String getIpv4Destination() { return this.ipv4Destination; } @Override public final java.lang.String getIpv6Destination() { return this.ipv6Destination; } @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(); if (this.getIpv4Destination() != null) { data.set("ipv4Destination", om.valueToTree(this.getIpv4Destination())); } if (this.getIpv6Destination() != null) { data.set("ipv6Destination", om.valueToTree(this.getIpv6Destination())); } 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.InternetGatewayOptions")); 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; InternetGatewayOptions.Jsii$Proxy that = (InternetGatewayOptions.Jsii$Proxy) o; if (this.ipv4Destination != null ? !this.ipv4Destination.equals(that.ipv4Destination) : that.ipv4Destination != null) return false; return this.ipv6Destination != null ? this.ipv6Destination.equals(that.ipv6Destination) : that.ipv6Destination == null; } @Override public final int hashCode() { int result = this.ipv4Destination != null ? this.ipv4Destination.hashCode() : 0; result = 31 * result + (this.ipv6Destination != null ? this.ipv6Destination.hashCode() : 0); return result; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy