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

com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersInvocationHttpParametersHeaderArgs 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.cloudwatch.inputs;

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


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

    public static final EventConnectionAuthParametersInvocationHttpParametersHeaderArgs Empty = new EventConnectionAuthParametersInvocationHttpParametersHeaderArgs();

    /**
     * Specified whether the value is secret.
     * 
     */
    @Import(name="isValueSecret")
    private @Nullable Output isValueSecret;

    /**
     * @return Specified whether the value is secret.
     * 
     */
    public Optional> isValueSecret() {
        return Optional.ofNullable(this.isValueSecret);
    }

    /**
     * The key for the parameter.
     * 
     */
    @Import(name="key")
    private @Nullable Output key;

    /**
     * @return The key for the parameter.
     * 
     */
    public Optional> key() {
        return Optional.ofNullable(this.key);
    }

    /**
     * The value associated with the key. Created and stored in AWS Secrets Manager if is secret.
     * 
     */
    @Import(name="value")
    private @Nullable Output value;

    /**
     * @return The value associated with the key. Created and stored in AWS Secrets Manager if is secret.
     * 
     */
    public Optional> value() {
        return Optional.ofNullable(this.value);
    }

    private EventConnectionAuthParametersInvocationHttpParametersHeaderArgs() {}

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

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

    public static final class Builder {
        private EventConnectionAuthParametersInvocationHttpParametersHeaderArgs $;

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

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

        /**
         * @param isValueSecret Specified whether the value is secret.
         * 
         * @return builder
         * 
         */
        public Builder isValueSecret(@Nullable Output isValueSecret) {
            $.isValueSecret = isValueSecret;
            return this;
        }

        /**
         * @param isValueSecret Specified whether the value is secret.
         * 
         * @return builder
         * 
         */
        public Builder isValueSecret(Boolean isValueSecret) {
            return isValueSecret(Output.of(isValueSecret));
        }

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

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

        /**
         * @param value The value associated with the key. Created and stored in AWS Secrets Manager if is secret.
         * 
         * @return builder
         * 
         */
        public Builder value(@Nullable Output value) {
            $.value = value;
            return this;
        }

        /**
         * @param value The value associated with the key. Created and stored in AWS Secrets Manager if is secret.
         * 
         * @return builder
         * 
         */
        public Builder value(String value) {
            return value(Output.of(value));
        }

        public EventConnectionAuthParametersInvocationHttpParametersHeaderArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy