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

com.pulumi.azurenative.awsconnector.inputs.AwsRoute53DomainsDomainSummaryPropertiesArgs 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.azurenative.awsconnector.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;


/**
 * Definition of awsRoute53DomainsDomainSummary
 * 
 */
public final class AwsRoute53DomainsDomainSummaryPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final AwsRoute53DomainsDomainSummaryPropertiesArgs Empty = new AwsRoute53DomainsDomainSummaryPropertiesArgs();

    /**
     * <p>Indicates whether the domain is automatically renewed upon expiration.</p>
     * 
     */
    @Import(name="autoRenew")
    private @Nullable Output autoRenew;

    /**
     * @return <p>Indicates whether the domain is automatically renewed upon expiration.</p>
     * 
     */
    public Optional> autoRenew() {
        return Optional.ofNullable(this.autoRenew);
    }

    /**
     * <p>The name of the domain that the summary information applies to.</p>
     * 
     */
    @Import(name="domainName")
    private @Nullable Output domainName;

    /**
     * @return <p>The name of the domain that the summary information applies to.</p>
     * 
     */
    public Optional> domainName() {
        return Optional.ofNullable(this.domainName);
    }

    /**
     * <p>Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).</p>
     * 
     */
    @Import(name="expiry")
    private @Nullable Output expiry;

    /**
     * @return <p>Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).</p>
     * 
     */
    public Optional> expiry() {
        return Optional.ofNullable(this.expiry);
    }

    /**
     * <p>Indicates whether a domain is locked from unauthorized transfer to another party.</p>
     * 
     */
    @Import(name="transferLock")
    private @Nullable Output transferLock;

    /**
     * @return <p>Indicates whether a domain is locked from unauthorized transfer to another party.</p>
     * 
     */
    public Optional> transferLock() {
        return Optional.ofNullable(this.transferLock);
    }

    private AwsRoute53DomainsDomainSummaryPropertiesArgs() {}

    private AwsRoute53DomainsDomainSummaryPropertiesArgs(AwsRoute53DomainsDomainSummaryPropertiesArgs $) {
        this.autoRenew = $.autoRenew;
        this.domainName = $.domainName;
        this.expiry = $.expiry;
        this.transferLock = $.transferLock;
    }

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

    public static final class Builder {
        private AwsRoute53DomainsDomainSummaryPropertiesArgs $;

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

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

        /**
         * @param autoRenew <p>Indicates whether the domain is automatically renewed upon expiration.</p>
         * 
         * @return builder
         * 
         */
        public Builder autoRenew(@Nullable Output autoRenew) {
            $.autoRenew = autoRenew;
            return this;
        }

        /**
         * @param autoRenew <p>Indicates whether the domain is automatically renewed upon expiration.</p>
         * 
         * @return builder
         * 
         */
        public Builder autoRenew(Boolean autoRenew) {
            return autoRenew(Output.of(autoRenew));
        }

        /**
         * @param domainName <p>The name of the domain that the summary information applies to.</p>
         * 
         * @return builder
         * 
         */
        public Builder domainName(@Nullable Output domainName) {
            $.domainName = domainName;
            return this;
        }

        /**
         * @param domainName <p>The name of the domain that the summary information applies to.</p>
         * 
         * @return builder
         * 
         */
        public Builder domainName(String domainName) {
            return domainName(Output.of(domainName));
        }

        /**
         * @param expiry <p>Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).</p>
         * 
         * @return builder
         * 
         */
        public Builder expiry(@Nullable Output expiry) {
            $.expiry = expiry;
            return this;
        }

        /**
         * @param expiry <p>Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).</p>
         * 
         * @return builder
         * 
         */
        public Builder expiry(String expiry) {
            return expiry(Output.of(expiry));
        }

        /**
         * @param transferLock <p>Indicates whether a domain is locked from unauthorized transfer to another party.</p>
         * 
         * @return builder
         * 
         */
        public Builder transferLock(@Nullable Output transferLock) {
            $.transferLock = transferLock;
            return this;
        }

        /**
         * @param transferLock <p>Indicates whether a domain is locked from unauthorized transfer to another party.</p>
         * 
         * @return builder
         * 
         */
        public Builder transferLock(Boolean transferLock) {
            return transferLock(Output.of(transferLock));
        }

        public AwsRoute53DomainsDomainSummaryPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy