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

com.pulumi.azurenative.awsconnector.outputs.AwsRoute53DomainsDomainSummaryPropertiesResponse 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.outputs;

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

@CustomType
public final class AwsRoute53DomainsDomainSummaryPropertiesResponse {
    /**
     * @return <p>Indicates whether the domain is automatically renewed upon expiration.</p>
     * 
     */
    private @Nullable Boolean autoRenew;
    /**
     * @return <p>The name of the domain that the summary information applies to.</p>
     * 
     */
    private @Nullable String domainName;
    /**
     * @return <p>Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).</p>
     * 
     */
    private @Nullable String expiry;
    /**
     * @return <p>Indicates whether a domain is locked from unauthorized transfer to another party.</p>
     * 
     */
    private @Nullable Boolean transferLock;

    private AwsRoute53DomainsDomainSummaryPropertiesResponse() {}
    /**
     * @return <p>Indicates whether the domain is automatically renewed upon expiration.</p>
     * 
     */
    public Optional autoRenew() {
        return Optional.ofNullable(this.autoRenew);
    }
    /**
     * @return <p>The name of the domain that the summary information applies to.</p>
     * 
     */
    public Optional domainName() {
        return Optional.ofNullable(this.domainName);
    }
    /**
     * @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);
    }
    /**
     * @return <p>Indicates whether a domain is locked from unauthorized transfer to another party.</p>
     * 
     */
    public Optional transferLock() {
        return Optional.ofNullable(this.transferLock);
    }

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

    public static Builder builder(AwsRoute53DomainsDomainSummaryPropertiesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Boolean autoRenew;
        private @Nullable String domainName;
        private @Nullable String expiry;
        private @Nullable Boolean transferLock;
        public Builder() {}
        public Builder(AwsRoute53DomainsDomainSummaryPropertiesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.autoRenew = defaults.autoRenew;
    	      this.domainName = defaults.domainName;
    	      this.expiry = defaults.expiry;
    	      this.transferLock = defaults.transferLock;
        }

        @CustomType.Setter
        public Builder autoRenew(@Nullable Boolean autoRenew) {

            this.autoRenew = autoRenew;
            return this;
        }
        @CustomType.Setter
        public Builder domainName(@Nullable String domainName) {

            this.domainName = domainName;
            return this;
        }
        @CustomType.Setter
        public Builder expiry(@Nullable String expiry) {

            this.expiry = expiry;
            return this;
        }
        @CustomType.Setter
        public Builder transferLock(@Nullable Boolean transferLock) {

            this.transferLock = transferLock;
            return this;
        }
        public AwsRoute53DomainsDomainSummaryPropertiesResponse build() {
            final var _resultValue = new AwsRoute53DomainsDomainSummaryPropertiesResponse();
            _resultValue.autoRenew = autoRenew;
            _resultValue.domainName = domainName;
            _resultValue.expiry = expiry;
            _resultValue.transferLock = transferLock;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy