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

com.pulumi.aws.backup.GlobalSettingsArgs 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.66.3
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;

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


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

    public static final GlobalSettingsArgs Empty = new GlobalSettingsArgs();

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

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

    private GlobalSettingsArgs() {}

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

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

    public static final class Builder {
        private GlobalSettingsArgs $;

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

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

        /**
         * @param globalSettings A list of resources along with the opt-in preferences for the account.
         * 
         * @return builder
         * 
         */
        public Builder globalSettings(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 GlobalSettingsArgs build() {
            if ($.globalSettings == null) {
                throw new MissingRequiredPropertyException("GlobalSettingsArgs", "globalSettings");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy