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

com.pulumi.aws.ecs.inputs.AccountSettingDefaultState 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.ecs.inputs;

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


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

    public static final AccountSettingDefaultState Empty = new AccountSettingDefaultState();

    /**
     * Name of the account setting to set.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name of the account setting to set.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    @Import(name="principalArn")
    private @Nullable Output principalArn;

    public Optional> principalArn() {
        return Optional.ofNullable(this.principalArn);
    }

    /**
     * State of the setting.
     * 
     */
    @Import(name="value")
    private @Nullable Output value;

    /**
     * @return State of the setting.
     * 
     */
    public Optional> value() {
        return Optional.ofNullable(this.value);
    }

    private AccountSettingDefaultState() {}

    private AccountSettingDefaultState(AccountSettingDefaultState $) {
        this.name = $.name;
        this.principalArn = $.principalArn;
        this.value = $.value;
    }

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

    public static final class Builder {
        private AccountSettingDefaultState $;

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

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

        /**
         * @param name Name of the account setting to set.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the account setting to set.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        public Builder principalArn(@Nullable Output principalArn) {
            $.principalArn = principalArn;
            return this;
        }

        public Builder principalArn(String principalArn) {
            return principalArn(Output.of(principalArn));
        }

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

        /**
         * @param value State of the setting.
         * 
         * @return builder
         * 
         */
        public Builder value(String value) {
            return value(Output.of(value));
        }

        public AccountSettingDefaultState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy