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

com.pulumi.aws.datazone.inputs.DomainState Maven / Gradle / Ivy

// *** 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.datazone.inputs;

import com.pulumi.aws.datazone.inputs.DomainSingleSignOnArgs;
import com.pulumi.aws.datazone.inputs.DomainTimeoutsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final DomainState Empty = new DomainState();

    /**
     * ARN of the Domain.
     * 
     */
    @Import(name="arn")
    private @Nullable Output arn;

    /**
     * @return ARN of the Domain.
     * 
     */
    public Optional> arn() {
        return Optional.ofNullable(this.arn);
    }

    /**
     * Description of the Domain.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Description of the Domain.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * ARN of the role used by DataZone to configure the Domain.
     * 
     * The following arguments are optional:
     * 
     */
    @Import(name="domainExecutionRole")
    private @Nullable Output domainExecutionRole;

    /**
     * @return ARN of the role used by DataZone to configure the Domain.
     * 
     * The following arguments are optional:
     * 
     */
    public Optional> domainExecutionRole() {
        return Optional.ofNullable(this.domainExecutionRole);
    }

    /**
     * ARN of the KMS key used to encrypt the Amazon DataZone domain, metadata and reporting data.
     * 
     */
    @Import(name="kmsKeyIdentifier")
    private @Nullable Output kmsKeyIdentifier;

    /**
     * @return ARN of the KMS key used to encrypt the Amazon DataZone domain, metadata and reporting data.
     * 
     */
    public Optional> kmsKeyIdentifier() {
        return Optional.ofNullable(this.kmsKeyIdentifier);
    }

    /**
     * Name of the Domain.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name of the Domain.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * URL of the data portal for the Domain.
     * 
     */
    @Import(name="portalUrl")
    private @Nullable Output portalUrl;

    /**
     * @return URL of the data portal for the Domain.
     * 
     */
    public Optional> portalUrl() {
        return Optional.ofNullable(this.portalUrl);
    }

    /**
     * Single sign on options, used to [enable AWS IAM Identity Center](https://docs.aws.amazon.com/datazone/latest/userguide/enable-IAM-identity-center-for-datazone.html) for DataZone.
     * 
     */
    @Import(name="singleSignOn")
    private @Nullable Output singleSignOn;

    /**
     * @return Single sign on options, used to [enable AWS IAM Identity Center](https://docs.aws.amazon.com/datazone/latest/userguide/enable-IAM-identity-center-for-datazone.html) for DataZone.
     * 
     */
    public Optional> singleSignOn() {
        return Optional.ofNullable(this.singleSignOn);
    }

    /**
     * Whether to skip the deletion check for the Domain.
     * 
     */
    @Import(name="skipDeletionCheck")
    private @Nullable Output skipDeletionCheck;

    /**
     * @return Whether to skip the deletion check for the Domain.
     * 
     */
    public Optional> skipDeletionCheck() {
        return Optional.ofNullable(this.skipDeletionCheck);
    }

    @Import(name="tags")
    private @Nullable Output> tags;

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

    /**
     * Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
     * 
     * @deprecated
     * Please use `tags` instead.
     * 
     */
    @Deprecated /* Please use `tags` instead. */
    @Import(name="tagsAll")
    private @Nullable Output> tagsAll;

    /**
     * @return Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
     * 
     * @deprecated
     * Please use `tags` instead.
     * 
     */
    @Deprecated /* Please use `tags` instead. */
    public Optional>> tagsAll() {
        return Optional.ofNullable(this.tagsAll);
    }

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

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

    private DomainState() {}

    private DomainState(DomainState $) {
        this.arn = $.arn;
        this.description = $.description;
        this.domainExecutionRole = $.domainExecutionRole;
        this.kmsKeyIdentifier = $.kmsKeyIdentifier;
        this.name = $.name;
        this.portalUrl = $.portalUrl;
        this.singleSignOn = $.singleSignOn;
        this.skipDeletionCheck = $.skipDeletionCheck;
        this.tags = $.tags;
        this.tagsAll = $.tagsAll;
        this.timeouts = $.timeouts;
    }

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

    public static final class Builder {
        private DomainState $;

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

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

        /**
         * @param arn ARN of the Domain.
         * 
         * @return builder
         * 
         */
        public Builder arn(@Nullable Output arn) {
            $.arn = arn;
            return this;
        }

        /**
         * @param arn ARN of the Domain.
         * 
         * @return builder
         * 
         */
        public Builder arn(String arn) {
            return arn(Output.of(arn));
        }

        /**
         * @param description Description of the Domain.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Description of the Domain.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param domainExecutionRole ARN of the role used by DataZone to configure the Domain.
         * 
         * The following arguments are optional:
         * 
         * @return builder
         * 
         */
        public Builder domainExecutionRole(@Nullable Output domainExecutionRole) {
            $.domainExecutionRole = domainExecutionRole;
            return this;
        }

        /**
         * @param domainExecutionRole ARN of the role used by DataZone to configure the Domain.
         * 
         * The following arguments are optional:
         * 
         * @return builder
         * 
         */
        public Builder domainExecutionRole(String domainExecutionRole) {
            return domainExecutionRole(Output.of(domainExecutionRole));
        }

        /**
         * @param kmsKeyIdentifier ARN of the KMS key used to encrypt the Amazon DataZone domain, metadata and reporting data.
         * 
         * @return builder
         * 
         */
        public Builder kmsKeyIdentifier(@Nullable Output kmsKeyIdentifier) {
            $.kmsKeyIdentifier = kmsKeyIdentifier;
            return this;
        }

        /**
         * @param kmsKeyIdentifier ARN of the KMS key used to encrypt the Amazon DataZone domain, metadata and reporting data.
         * 
         * @return builder
         * 
         */
        public Builder kmsKeyIdentifier(String kmsKeyIdentifier) {
            return kmsKeyIdentifier(Output.of(kmsKeyIdentifier));
        }

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

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

        /**
         * @param portalUrl URL of the data portal for the Domain.
         * 
         * @return builder
         * 
         */
        public Builder portalUrl(@Nullable Output portalUrl) {
            $.portalUrl = portalUrl;
            return this;
        }

        /**
         * @param portalUrl URL of the data portal for the Domain.
         * 
         * @return builder
         * 
         */
        public Builder portalUrl(String portalUrl) {
            return portalUrl(Output.of(portalUrl));
        }

        /**
         * @param singleSignOn Single sign on options, used to [enable AWS IAM Identity Center](https://docs.aws.amazon.com/datazone/latest/userguide/enable-IAM-identity-center-for-datazone.html) for DataZone.
         * 
         * @return builder
         * 
         */
        public Builder singleSignOn(@Nullable Output singleSignOn) {
            $.singleSignOn = singleSignOn;
            return this;
        }

        /**
         * @param singleSignOn Single sign on options, used to [enable AWS IAM Identity Center](https://docs.aws.amazon.com/datazone/latest/userguide/enable-IAM-identity-center-for-datazone.html) for DataZone.
         * 
         * @return builder
         * 
         */
        public Builder singleSignOn(DomainSingleSignOnArgs singleSignOn) {
            return singleSignOn(Output.of(singleSignOn));
        }

        /**
         * @param skipDeletionCheck Whether to skip the deletion check for the Domain.
         * 
         * @return builder
         * 
         */
        public Builder skipDeletionCheck(@Nullable Output skipDeletionCheck) {
            $.skipDeletionCheck = skipDeletionCheck;
            return this;
        }

        /**
         * @param skipDeletionCheck Whether to skip the deletion check for the Domain.
         * 
         * @return builder
         * 
         */
        public Builder skipDeletionCheck(Boolean skipDeletionCheck) {
            return skipDeletionCheck(Output.of(skipDeletionCheck));
        }

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

        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param tagsAll Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
         * 
         * @return builder
         * 
         * @deprecated
         * Please use `tags` instead.
         * 
         */
        @Deprecated /* Please use `tags` instead. */
        public Builder tagsAll(@Nullable Output> tagsAll) {
            $.tagsAll = tagsAll;
            return this;
        }

        /**
         * @param tagsAll Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
         * 
         * @return builder
         * 
         * @deprecated
         * Please use `tags` instead.
         * 
         */
        @Deprecated /* Please use `tags` instead. */
        public Builder tagsAll(Map tagsAll) {
            return tagsAll(Output.of(tagsAll));
        }

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

        public Builder timeouts(DomainTimeoutsArgs timeouts) {
            return timeouts(Output.of(timeouts));
        }

        public DomainState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy