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

io.linguarobot.aws.cdk.maven.context.VpcContext Maven / Gradle / Ivy

Go to download

The AWS CDK Maven plugin produces and deploys CloudFormation templates based on the cloud infrastructure defined by means of CDK. The goal of the project is to improve the experience of Java developers while working with CDK by eliminating the need for installing Node.js and interacting with the CDK application by means of CDK Toolkit.

There is a newer version: 0.0.8
Show newest version
package io.linguarobot.aws.cdk.maven.context;

import lombok.Builder;
import lombok.Value;
import software.amazon.awscdk.cxapi.VpcContextResponse;
import software.amazon.awscdk.cxapi.VpcSubnetGroup;

import java.util.List;

@Value
@Builder(builderClassName = "Builder")
class VpcContext implements VpcContextResponse {

    String vpcId;
    String vpcCidrBlock;
    String vpnGatewayId;
    List availabilityZones;
    List isolatedSubnetIds;
    List isolatedSubnetNames;
    List isolatedSubnetRouteTableIds;
    List privateSubnetIds;
    List privateSubnetNames;
    List privateSubnetRouteTableIds;
    List publicSubnetIds;
    List publicSubnetNames;
    List publicSubnetRouteTableIds;
    List subnetGroups;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy