software.amazon.awscdk.services.ec2.alpha.IIpAddresses Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ec2-alpha Show documentation
Show all versions of ec2-alpha Show documentation
The CDK construct library for VPC V2
package software.amazon.awscdk.services.ec2.alpha;
/**
* (experimental) Implements ip address allocation according to the IPAdress type.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.102.0 (build e354887)", date = "2024-09-10T01:10:18.072Z")
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.ec2.alpha.$Module.class, fqn = "@aws-cdk/aws-ec2-alpha.IIpAddresses")
@software.amazon.jsii.Jsii.Proxy(IIpAddresses.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface IIpAddresses extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) Method to define the implementation logic of IP address allocation.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ec2.alpha.VpcCidrOptions allocateVpcCidr();
/**
* A proxy class which represents a concrete javascript instance of this type.
*/
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements software.amazon.awscdk.services.ec2.alpha.IIpAddresses.Jsii$Default {
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
/**
* (experimental) Method to define the implementation logic of IP address allocation.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public final @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ec2.alpha.VpcCidrOptions allocateVpcCidr() {
return software.amazon.jsii.Kernel.call(this, "allocateVpcCidr", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.alpha.VpcCidrOptions.class));
}
}
/**
* Internal default implementation for {@link IIpAddresses}.
*/
@software.amazon.jsii.Internal
interface Jsii$Default extends IIpAddresses {
/**
* (experimental) Method to define the implementation logic of IP address allocation.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
default @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ec2.alpha.VpcCidrOptions allocateVpcCidr() {
return software.amazon.jsii.Kernel.call(this, "allocateVpcCidr", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.alpha.VpcCidrOptions.class));
}
}
}