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

com.pulumi.aws.route53domains.inputs.DelegationSignerRecordState 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.route53domains.inputs;

import com.pulumi.aws.route53domains.inputs.DelegationSignerRecordSigningAttributesArgs;
import com.pulumi.aws.route53domains.inputs.DelegationSignerRecordTimeoutsArgs;
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 DelegationSignerRecordState extends com.pulumi.resources.ResourceArgs {

    public static final DelegationSignerRecordState Empty = new DelegationSignerRecordState();

    /**
     * An ID assigned to the created DS record.
     * 
     */
    @Import(name="dnssecKeyId")
    private @Nullable Output dnssecKeyId;

    /**
     * @return An ID assigned to the created DS record.
     * 
     */
    public Optional> dnssecKeyId() {
        return Optional.ofNullable(this.dnssecKeyId);
    }

    /**
     * The name of the domain that will have its parent DNS zone updated with the Delegation Signer record.
     * 
     */
    @Import(name="domainName")
    private @Nullable Output domainName;

    /**
     * @return The name of the domain that will have its parent DNS zone updated with the Delegation Signer record.
     * 
     */
    public Optional> domainName() {
        return Optional.ofNullable(this.domainName);
    }

    /**
     * The information about a key, including the algorithm, public key-value, and flags.
     * 
     */
    @Import(name="signingAttributes")
    private @Nullable Output signingAttributes;

    /**
     * @return The information about a key, including the algorithm, public key-value, and flags.
     * 
     */
    public Optional> signingAttributes() {
        return Optional.ofNullable(this.signingAttributes);
    }

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

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

    private DelegationSignerRecordState() {}

    private DelegationSignerRecordState(DelegationSignerRecordState $) {
        this.dnssecKeyId = $.dnssecKeyId;
        this.domainName = $.domainName;
        this.signingAttributes = $.signingAttributes;
        this.timeouts = $.timeouts;
    }

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

    public static final class Builder {
        private DelegationSignerRecordState $;

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

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

        /**
         * @param dnssecKeyId An ID assigned to the created DS record.
         * 
         * @return builder
         * 
         */
        public Builder dnssecKeyId(@Nullable Output dnssecKeyId) {
            $.dnssecKeyId = dnssecKeyId;
            return this;
        }

        /**
         * @param dnssecKeyId An ID assigned to the created DS record.
         * 
         * @return builder
         * 
         */
        public Builder dnssecKeyId(String dnssecKeyId) {
            return dnssecKeyId(Output.of(dnssecKeyId));
        }

        /**
         * @param domainName The name of the domain that will have its parent DNS zone updated with the Delegation Signer record.
         * 
         * @return builder
         * 
         */
        public Builder domainName(@Nullable Output domainName) {
            $.domainName = domainName;
            return this;
        }

        /**
         * @param domainName The name of the domain that will have its parent DNS zone updated with the Delegation Signer record.
         * 
         * @return builder
         * 
         */
        public Builder domainName(String domainName) {
            return domainName(Output.of(domainName));
        }

        /**
         * @param signingAttributes The information about a key, including the algorithm, public key-value, and flags.
         * 
         * @return builder
         * 
         */
        public Builder signingAttributes(@Nullable Output signingAttributes) {
            $.signingAttributes = signingAttributes;
            return this;
        }

        /**
         * @param signingAttributes The information about a key, including the algorithm, public key-value, and flags.
         * 
         * @return builder
         * 
         */
        public Builder signingAttributes(DelegationSignerRecordSigningAttributesArgs signingAttributes) {
            return signingAttributes(Output.of(signingAttributes));
        }

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

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

        public DelegationSignerRecordState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy