com.pulumi.aws.route53.ResolverDnsSecConfigArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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;
public final class ResolverDnsSecConfigArgs extends com.pulumi.resources.ResourceArgs {
public static final ResolverDnsSecConfigArgs Empty = new ResolverDnsSecConfigArgs();
/**
* The ID of the virtual private cloud (VPC) that you're updating the DNSSEC validation status for.
*
*/
@Import(name="resourceId", required=true)
private Output resourceId;
/**
* @return The ID of the virtual private cloud (VPC) that you're updating the DNSSEC validation status for.
*
*/
public Output resourceId() {
return this.resourceId;
}
private ResolverDnsSecConfigArgs() {}
private ResolverDnsSecConfigArgs(ResolverDnsSecConfigArgs $) {
this.resourceId = $.resourceId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ResolverDnsSecConfigArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ResolverDnsSecConfigArgs $;
public Builder() {
$ = new ResolverDnsSecConfigArgs();
}
public Builder(ResolverDnsSecConfigArgs defaults) {
$ = new ResolverDnsSecConfigArgs(Objects.requireNonNull(defaults));
}
/**
* @param resourceId The ID of the virtual private cloud (VPC) that you're updating the DNSSEC validation status for.
*
* @return builder
*
*/
public Builder resourceId(Output resourceId) {
$.resourceId = resourceId;
return this;
}
/**
* @param resourceId The ID of the virtual private cloud (VPC) that you're updating the DNSSEC validation status for.
*
* @return builder
*
*/
public Builder resourceId(String resourceId) {
return resourceId(Output.of(resourceId));
}
public ResolverDnsSecConfigArgs build() {
if ($.resourceId == null) {
throw new MissingRequiredPropertyException("ResolverDnsSecConfigArgs", "resourceId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy