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

com.pulumi.aws.ec2.outputs.NetworkInsightsAnalysisForwardPathComponentVpc Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** 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 NetworkInsightsAnalysisForwardPathComponentVpc {
    /**
     * @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 NetworkInsightsAnalysisForwardPathComponentVpc() {}
    /**
     * @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(NetworkInsightsAnalysisForwardPathComponentVpc 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(NetworkInsightsAnalysisForwardPathComponentVpc 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 NetworkInsightsAnalysisForwardPathComponentVpc build() {
            final var _resultValue = new NetworkInsightsAnalysisForwardPathComponentVpc();
            _resultValue.arn = arn;
            _resultValue.id = id;
            _resultValue.name = name;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy