com.pulumi.aws.ses.inputs.GetDomainIdentityArgs 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.ses.inputs;
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 GetDomainIdentityArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDomainIdentityArgs Empty = new GetDomainIdentityArgs();
/**
* Name of the domain
*
*/
@Import(name="domain", required=true)
private Output domain;
/**
* @return Name of the domain
*
*/
public Output domain() {
return this.domain;
}
private GetDomainIdentityArgs() {}
private GetDomainIdentityArgs(GetDomainIdentityArgs $) {
this.domain = $.domain;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDomainIdentityArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDomainIdentityArgs $;
public Builder() {
$ = new GetDomainIdentityArgs();
}
public Builder(GetDomainIdentityArgs defaults) {
$ = new GetDomainIdentityArgs(Objects.requireNonNull(defaults));
}
/**
* @param domain Name of the domain
*
* @return builder
*
*/
public Builder domain(Output domain) {
$.domain = domain;
return this;
}
/**
* @param domain Name of the domain
*
* @return builder
*
*/
public Builder domain(String domain) {
return domain(Output.of(domain));
}
public GetDomainIdentityArgs build() {
if ($.domain == null) {
throw new MissingRequiredPropertyException("GetDomainIdentityArgs", "domain");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy