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

com.pulumi.aws.route53.HostedZoneDnsSecArgs 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.route53;

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


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

    public static final HostedZoneDnsSecArgs Empty = new HostedZoneDnsSecArgs();

    /**
     * Identifier of the Route 53 Hosted Zone.
     * 
     * The following arguments are optional:
     * 
     */
    @Import(name="hostedZoneId", required=true)
    private Output hostedZoneId;

    /**
     * @return Identifier of the Route 53 Hosted Zone.
     * 
     * The following arguments are optional:
     * 
     */
    public Output hostedZoneId() {
        return this.hostedZoneId;
    }

    /**
     * Hosted Zone signing status. Valid values: `SIGNING`, `NOT_SIGNING`. Defaults to `SIGNING`.
     * 
     */
    @Import(name="signingStatus")
    private @Nullable Output signingStatus;

    /**
     * @return Hosted Zone signing status. Valid values: `SIGNING`, `NOT_SIGNING`. Defaults to `SIGNING`.
     * 
     */
    public Optional> signingStatus() {
        return Optional.ofNullable(this.signingStatus);
    }

    private HostedZoneDnsSecArgs() {}

    private HostedZoneDnsSecArgs(HostedZoneDnsSecArgs $) {
        this.hostedZoneId = $.hostedZoneId;
        this.signingStatus = $.signingStatus;
    }

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

    public static final class Builder {
        private HostedZoneDnsSecArgs $;

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

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

        /**
         * @param hostedZoneId Identifier of the Route 53 Hosted Zone.
         * 
         * The following arguments are optional:
         * 
         * @return builder
         * 
         */
        public Builder hostedZoneId(Output hostedZoneId) {
            $.hostedZoneId = hostedZoneId;
            return this;
        }

        /**
         * @param hostedZoneId Identifier of the Route 53 Hosted Zone.
         * 
         * The following arguments are optional:
         * 
         * @return builder
         * 
         */
        public Builder hostedZoneId(String hostedZoneId) {
            return hostedZoneId(Output.of(hostedZoneId));
        }

        /**
         * @param signingStatus Hosted Zone signing status. Valid values: `SIGNING`, `NOT_SIGNING`. Defaults to `SIGNING`.
         * 
         * @return builder
         * 
         */
        public Builder signingStatus(@Nullable Output signingStatus) {
            $.signingStatus = signingStatus;
            return this;
        }

        /**
         * @param signingStatus Hosted Zone signing status. Valid values: `SIGNING`, `NOT_SIGNING`. Defaults to `SIGNING`.
         * 
         * @return builder
         * 
         */
        public Builder signingStatus(String signingStatus) {
            return signingStatus(Output.of(signingStatus));
        }

        public HostedZoneDnsSecArgs build() {
            if ($.hostedZoneId == null) {
                throw new MissingRequiredPropertyException("HostedZoneDnsSecArgs", "hostedZoneId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy