com.pulumi.aws.finspace.outputs.KxEnvironmentTransitGatewayConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.finspace.outputs;
import com.pulumi.aws.finspace.outputs.KxEnvironmentTransitGatewayConfigurationAttachmentNetworkAclConfiguration;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class KxEnvironmentTransitGatewayConfiguration {
/**
* @return Rules that define how you manage outbound traffic from kdb network to your internal network. Defined below.
*
*/
private @Nullable List attachmentNetworkAclConfigurations;
/**
* @return Routing CIDR on behalf of KX environment. It could be any “/26 range in the 100.64.0.0 CIDR space. After providing, it will be added to the customer’s transit gateway routing table so that the traffics could be routed to KX network.
*
*/
private String routableCidrSpace;
/**
* @return Identifier of the transit gateway created by the customer to connect outbound traffics from KX network to your internal network.
*
*/
private String transitGatewayId;
private KxEnvironmentTransitGatewayConfiguration() {}
/**
* @return Rules that define how you manage outbound traffic from kdb network to your internal network. Defined below.
*
*/
public List attachmentNetworkAclConfigurations() {
return this.attachmentNetworkAclConfigurations == null ? List.of() : this.attachmentNetworkAclConfigurations;
}
/**
* @return Routing CIDR on behalf of KX environment. It could be any “/26 range in the 100.64.0.0 CIDR space. After providing, it will be added to the customer’s transit gateway routing table so that the traffics could be routed to KX network.
*
*/
public String routableCidrSpace() {
return this.routableCidrSpace;
}
/**
* @return Identifier of the transit gateway created by the customer to connect outbound traffics from KX network to your internal network.
*
*/
public String transitGatewayId() {
return this.transitGatewayId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(KxEnvironmentTransitGatewayConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List attachmentNetworkAclConfigurations;
private String routableCidrSpace;
private String transitGatewayId;
public Builder() {}
public Builder(KxEnvironmentTransitGatewayConfiguration defaults) {
Objects.requireNonNull(defaults);
this.attachmentNetworkAclConfigurations = defaults.attachmentNetworkAclConfigurations;
this.routableCidrSpace = defaults.routableCidrSpace;
this.transitGatewayId = defaults.transitGatewayId;
}
@CustomType.Setter
public Builder attachmentNetworkAclConfigurations(@Nullable List attachmentNetworkAclConfigurations) {
this.attachmentNetworkAclConfigurations = attachmentNetworkAclConfigurations;
return this;
}
public Builder attachmentNetworkAclConfigurations(KxEnvironmentTransitGatewayConfigurationAttachmentNetworkAclConfiguration... attachmentNetworkAclConfigurations) {
return attachmentNetworkAclConfigurations(List.of(attachmentNetworkAclConfigurations));
}
@CustomType.Setter
public Builder routableCidrSpace(String routableCidrSpace) {
if (routableCidrSpace == null) {
throw new MissingRequiredPropertyException("KxEnvironmentTransitGatewayConfiguration", "routableCidrSpace");
}
this.routableCidrSpace = routableCidrSpace;
return this;
}
@CustomType.Setter
public Builder transitGatewayId(String transitGatewayId) {
if (transitGatewayId == null) {
throw new MissingRequiredPropertyException("KxEnvironmentTransitGatewayConfiguration", "transitGatewayId");
}
this.transitGatewayId = transitGatewayId;
return this;
}
public KxEnvironmentTransitGatewayConfiguration build() {
final var _resultValue = new KxEnvironmentTransitGatewayConfiguration();
_resultValue.attachmentNetworkAclConfigurations = attachmentNetworkAclConfigurations;
_resultValue.routableCidrSpace = routableCidrSpace;
_resultValue.transitGatewayId = transitGatewayId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy