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

com.pulumi.azurenative.awsconnector.outputs.ParameterResponse Maven / Gradle / Ivy

There is a newer version: 2.78.0
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.azurenative.awsconnector.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 ParameterResponse {
    /**
     * @return The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.
     * 
     */
    private @Nullable String parameterKey;
    /**
     * @return The name of the parameter.
     * 
     */
    private @Nullable String parameterName;
    /**
     * @return The value of the parameter. If `ParameterName` is `wlm_json_configuration`, then the maximum size of `ParameterValue` is 8000 characters.
     * 
     */
    private @Nullable String parameterValue;

    private ParameterResponse() {}
    /**
     * @return The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.
     * 
     */
    public Optional parameterKey() {
        return Optional.ofNullable(this.parameterKey);
    }
    /**
     * @return The name of the parameter.
     * 
     */
    public Optional parameterName() {
        return Optional.ofNullable(this.parameterName);
    }
    /**
     * @return The value of the parameter. If `ParameterName` is `wlm_json_configuration`, then the maximum size of `ParameterValue` is 8000 characters.
     * 
     */
    public Optional parameterValue() {
        return Optional.ofNullable(this.parameterValue);
    }

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

    public static Builder builder(ParameterResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String parameterKey;
        private @Nullable String parameterName;
        private @Nullable String parameterValue;
        public Builder() {}
        public Builder(ParameterResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.parameterKey = defaults.parameterKey;
    	      this.parameterName = defaults.parameterName;
    	      this.parameterValue = defaults.parameterValue;
        }

        @CustomType.Setter
        public Builder parameterKey(@Nullable String parameterKey) {

            this.parameterKey = parameterKey;
            return this;
        }
        @CustomType.Setter
        public Builder parameterName(@Nullable String parameterName) {

            this.parameterName = parameterName;
            return this;
        }
        @CustomType.Setter
        public Builder parameterValue(@Nullable String parameterValue) {

            this.parameterValue = parameterValue;
            return this;
        }
        public ParameterResponse build() {
            final var _resultValue = new ParameterResponse();
            _resultValue.parameterKey = parameterKey;
            _resultValue.parameterName = parameterName;
            _resultValue.parameterValue = parameterValue;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy