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