com.pulumi.aws.ec2.outputs.GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail 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.ec2.outputs;
import com.pulumi.aws.ec2.outputs.GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetailComponent;
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 GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail {
private String additionalDetailType;
private List components;
private GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail() {}
public String additionalDetailType() {
return this.additionalDetailType;
}
public List components() {
return this.components;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String additionalDetailType;
private List components;
public Builder() {}
public Builder(GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail defaults) {
Objects.requireNonNull(defaults);
this.additionalDetailType = defaults.additionalDetailType;
this.components = defaults.components;
}
@CustomType.Setter
public Builder additionalDetailType(String additionalDetailType) {
if (additionalDetailType == null) {
throw new MissingRequiredPropertyException("GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail", "additionalDetailType");
}
this.additionalDetailType = additionalDetailType;
return this;
}
@CustomType.Setter
public Builder components(List components) {
if (components == null) {
throw new MissingRequiredPropertyException("GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail", "components");
}
this.components = components;
return this;
}
public Builder components(GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetailComponent... components) {
return components(List.of(components));
}
public GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail build() {
final var _resultValue = new GetNetworkInsightsAnalysisForwardPathComponentAdditionalDetail();
_resultValue.additionalDetailType = additionalDetailType;
_resultValue.components = components;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy