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

com.pulumi.aws.ssmincidents.inputs.ResponsePlanActionSsmAutomationParameterArgs Maven / Gradle / Ivy

Go to download

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

The 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.ssmincidents.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;


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

    public static final ResponsePlanActionSsmAutomationParameterArgs Empty = new ResponsePlanActionSsmAutomationParameterArgs();

    /**
     * The name of the response plan.
     * 
     */
    @Import(name="name", required=true)
    private Output name;

    /**
     * @return The name of the response plan.
     * 
     */
    public Output name() {
        return this.name;
    }

    /**
     * The values for the associated parameter name.
     * 
     */
    @Import(name="values", required=true)
    private Output> values;

    /**
     * @return The values for the associated parameter name.
     * 
     */
    public Output> values() {
        return this.values;
    }

    private ResponsePlanActionSsmAutomationParameterArgs() {}

    private ResponsePlanActionSsmAutomationParameterArgs(ResponsePlanActionSsmAutomationParameterArgs $) {
        this.name = $.name;
        this.values = $.values;
    }

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

    public static final class Builder {
        private ResponsePlanActionSsmAutomationParameterArgs $;

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

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

        /**
         * @param name The name of the response plan.
         * 
         * @return builder
         * 
         */
        public Builder name(Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name of the response plan.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param values The values for the associated parameter name.
         * 
         * @return builder
         * 
         */
        public Builder values(Output> values) {
            $.values = values;
            return this;
        }

        /**
         * @param values The values for the associated parameter name.
         * 
         * @return builder
         * 
         */
        public Builder values(List values) {
            return values(Output.of(values));
        }

        /**
         * @param values The values for the associated parameter name.
         * 
         * @return builder
         * 
         */
        public Builder values(String... values) {
            return values(List.of(values));
        }

        public ResponsePlanActionSsmAutomationParameterArgs build() {
            if ($.name == null) {
                throw new MissingRequiredPropertyException("ResponsePlanActionSsmAutomationParameterArgs", "name");
            }
            if ($.values == null) {
                throw new MissingRequiredPropertyException("ResponsePlanActionSsmAutomationParameterArgs", "values");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy