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