com.pulumi.aws.ec2.outputs.NetworkInsightsAnalysisExplanationNatGateway 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.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class NetworkInsightsAnalysisExplanationNatGateway {
/**
* @return ARN of the Network Insights Analysis.
*
*/
private @Nullable String arn;
/**
* @return ID of the Network Insights Analysis.
*
*/
private @Nullable String id;
private @Nullable String name;
private NetworkInsightsAnalysisExplanationNatGateway() {}
/**
* @return ARN of the Network Insights Analysis.
*
*/
public Optional arn() {
return Optional.ofNullable(this.arn);
}
/**
* @return ID of the Network Insights Analysis.
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(NetworkInsightsAnalysisExplanationNatGateway defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String arn;
private @Nullable String id;
private @Nullable String name;
public Builder() {}
public Builder(NetworkInsightsAnalysisExplanationNatGateway defaults) {
Objects.requireNonNull(defaults);
this.arn = defaults.arn;
this.id = defaults.id;
this.name = defaults.name;
}
@CustomType.Setter
public Builder arn(@Nullable String arn) {
this.arn = arn;
return this;
}
@CustomType.Setter
public Builder id(@Nullable String id) {
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public NetworkInsightsAnalysisExplanationNatGateway build() {
final var _resultValue = new NetworkInsightsAnalysisExplanationNatGateway();
_resultValue.arn = arn;
_resultValue.id = id;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy