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

com.pulumi.aws.sagemaker.inputs.ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs 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.sagemaker.inputs;

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


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

    public static final ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs Empty = new ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs();

    /**
     * The key that identifies a provisioning parameter.
     * 
     */
    @Import(name="key", required=true)
    private Output key;

    /**
     * @return The key that identifies a provisioning parameter.
     * 
     */
    public Output key() {
        return this.key;
    }

    /**
     * The value of the provisioning parameter.
     * 
     */
    @Import(name="value")
    private @Nullable Output value;

    /**
     * @return The value of the provisioning parameter.
     * 
     */
    public Optional> value() {
        return Optional.ofNullable(this.value);
    }

    private ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs() {}

    private ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs(ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs $) {
        this.key = $.key;
        this.value = $.value;
    }

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

    public static final class Builder {
        private ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs $;

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

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

        /**
         * @param key The key that identifies a provisioning parameter.
         * 
         * @return builder
         * 
         */
        public Builder key(Output key) {
            $.key = key;
            return this;
        }

        /**
         * @param key The key that identifies a provisioning parameter.
         * 
         * @return builder
         * 
         */
        public Builder key(String key) {
            return key(Output.of(key));
        }

        /**
         * @param value The value of the provisioning parameter.
         * 
         * @return builder
         * 
         */
        public Builder value(@Nullable Output value) {
            $.value = value;
            return this;
        }

        /**
         * @param value The value of the provisioning parameter.
         * 
         * @return builder
         * 
         */
        public Builder value(String value) {
            return value(Output.of(value));
        }

        public ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs build() {
            if ($.key == null) {
                throw new MissingRequiredPropertyException("ProjectServiceCatalogProvisioningDetailsProvisioningParameterArgs", "key");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy