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

com.pulumi.aws.backup.inputs.GlobalSettingsState 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.72.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.aws.backup.inputs;

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


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

    public static final GlobalSettingsState Empty = new GlobalSettingsState();

    /**
     * A list of resources along with the opt-in preferences for the account.
     * 
     */
    @Import(name="globalSettings")
    private @Nullable Output> globalSettings;

    /**
     * @return A list of resources along with the opt-in preferences for the account.
     * 
     */
    public Optional>> globalSettings() {
        return Optional.ofNullable(this.globalSettings);
    }

    private GlobalSettingsState() {}

    private GlobalSettingsState(GlobalSettingsState $) {
        this.globalSettings = $.globalSettings;
    }

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

    public static final class Builder {
        private GlobalSettingsState $;

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

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

        /**
         * @param globalSettings A list of resources along with the opt-in preferences for the account.
         * 
         * @return builder
         * 
         */
        public Builder globalSettings(@Nullable Output> globalSettings) {
            $.globalSettings = globalSettings;
            return this;
        }

        /**
         * @param globalSettings A list of resources along with the opt-in preferences for the account.
         * 
         * @return builder
         * 
         */
        public Builder globalSettings(Map globalSettings) {
            return globalSettings(Output.of(globalSettings));
        }

        public GlobalSettingsState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy