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

com.pulumi.aws.ec2.inputs.NetworkInsightsAnalysisExplanationSubnetRouteTableArgs 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.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class NetworkInsightsAnalysisExplanationSubnetRouteTableArgs extends com.pulumi.resources.ResourceArgs {

    public static final NetworkInsightsAnalysisExplanationSubnetRouteTableArgs Empty = new NetworkInsightsAnalysisExplanationSubnetRouteTableArgs();

    /**
     * ARN of the Network Insights Analysis.
     * 
     */
    @Import(name="arn")
    private @Nullable Output arn;

    /**
     * @return ARN of the Network Insights Analysis.
     * 
     */
    public Optional> arn() {
        return Optional.ofNullable(this.arn);
    }

    /**
     * ID of the Network Insights Analysis.
     * 
     */
    @Import(name="id")
    private @Nullable Output id;

    /**
     * @return ID of the Network Insights Analysis.
     * 
     */
    public Optional> id() {
        return Optional.ofNullable(this.id);
    }

    @Import(name="name")
    private @Nullable Output name;

    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    private NetworkInsightsAnalysisExplanationSubnetRouteTableArgs() {}

    private NetworkInsightsAnalysisExplanationSubnetRouteTableArgs(NetworkInsightsAnalysisExplanationSubnetRouteTableArgs $) {
        this.arn = $.arn;
        this.id = $.id;
        this.name = $.name;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(NetworkInsightsAnalysisExplanationSubnetRouteTableArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private NetworkInsightsAnalysisExplanationSubnetRouteTableArgs $;

        public Builder() {
            $ = new NetworkInsightsAnalysisExplanationSubnetRouteTableArgs();
        }

        public Builder(NetworkInsightsAnalysisExplanationSubnetRouteTableArgs defaults) {
            $ = new NetworkInsightsAnalysisExplanationSubnetRouteTableArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param arn ARN of the Network Insights Analysis.
         * 
         * @return builder
         * 
         */
        public Builder arn(@Nullable Output arn) {
            $.arn = arn;
            return this;
        }

        /**
         * @param arn ARN of the Network Insights Analysis.
         * 
         * @return builder
         * 
         */
        public Builder arn(String arn) {
            return arn(Output.of(arn));
        }

        /**
         * @param id ID of the Network Insights Analysis.
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable Output id) {
            $.id = id;
            return this;
        }

        /**
         * @param id ID of the Network Insights Analysis.
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            return id(Output.of(id));
        }

        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        public Builder name(String name) {
            return name(Output.of(name));
        }

        public NetworkInsightsAnalysisExplanationSubnetRouteTableArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy