com.pulumi.aws.devicefarm.outputs.TestGridProjectVpcConfig 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.devicefarm.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class TestGridProjectVpcConfig {
/**
* @return A list of VPC security group IDs in your Amazon VPC.
*
*/
private List securityGroupIds;
/**
* @return A list of VPC subnet IDs in your Amazon VPC.
*
*/
private List subnetIds;
/**
* @return The ID of the Amazon VPC.
*
*/
private String vpcId;
private TestGridProjectVpcConfig() {}
/**
* @return A list of VPC security group IDs in your Amazon VPC.
*
*/
public List securityGroupIds() {
return this.securityGroupIds;
}
/**
* @return A list of VPC subnet IDs in your Amazon VPC.
*
*/
public List subnetIds() {
return this.subnetIds;
}
/**
* @return The ID of the Amazon VPC.
*
*/
public String vpcId() {
return this.vpcId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(TestGridProjectVpcConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List securityGroupIds;
private List subnetIds;
private String vpcId;
public Builder() {}
public Builder(TestGridProjectVpcConfig defaults) {
Objects.requireNonNull(defaults);
this.securityGroupIds = defaults.securityGroupIds;
this.subnetIds = defaults.subnetIds;
this.vpcId = defaults.vpcId;
}
@CustomType.Setter
public Builder securityGroupIds(List securityGroupIds) {
if (securityGroupIds == null) {
throw new MissingRequiredPropertyException("TestGridProjectVpcConfig", "securityGroupIds");
}
this.securityGroupIds = securityGroupIds;
return this;
}
public Builder securityGroupIds(String... securityGroupIds) {
return securityGroupIds(List.of(securityGroupIds));
}
@CustomType.Setter
public Builder subnetIds(List subnetIds) {
if (subnetIds == null) {
throw new MissingRequiredPropertyException("TestGridProjectVpcConfig", "subnetIds");
}
this.subnetIds = subnetIds;
return this;
}
public Builder subnetIds(String... subnetIds) {
return subnetIds(List.of(subnetIds));
}
@CustomType.Setter
public Builder vpcId(String vpcId) {
if (vpcId == null) {
throw new MissingRequiredPropertyException("TestGridProjectVpcConfig", "vpcId");
}
this.vpcId = vpcId;
return this;
}
public TestGridProjectVpcConfig build() {
final var _resultValue = new TestGridProjectVpcConfig();
_resultValue.securityGroupIds = securityGroupIds;
_resultValue.subnetIds = subnetIds;
_resultValue.vpcId = vpcId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy