com.pulumi.aws.organizations.inputs.GetDelegatedServicesPlainArgs Maven / Gradle / Ivy
// *** 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.organizations.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetDelegatedServicesPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDelegatedServicesPlainArgs Empty = new GetDelegatedServicesPlainArgs();
/**
* Account ID number of a delegated administrator account in the organization.
*
*/
@Import(name="accountId", required=true)
private String accountId;
/**
* @return Account ID number of a delegated administrator account in the organization.
*
*/
public String accountId() {
return this.accountId;
}
private GetDelegatedServicesPlainArgs() {}
private GetDelegatedServicesPlainArgs(GetDelegatedServicesPlainArgs $) {
this.accountId = $.accountId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDelegatedServicesPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDelegatedServicesPlainArgs $;
public Builder() {
$ = new GetDelegatedServicesPlainArgs();
}
public Builder(GetDelegatedServicesPlainArgs defaults) {
$ = new GetDelegatedServicesPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountId Account ID number of a delegated administrator account in the organization.
*
* @return builder
*
*/
public Builder accountId(String accountId) {
$.accountId = accountId;
return this;
}
public GetDelegatedServicesPlainArgs build() {
if ($.accountId == null) {
throw new MissingRequiredPropertyException("GetDelegatedServicesPlainArgs", "accountId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy