DelegatedAdministrator

Provides a resource to manage an AWS Organizations Delegated Administrator.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.organizations.DelegatedAdministrator;
import com.pulumi.aws.organizations.DelegatedAdministratorArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DelegatedAdministrator("example", DelegatedAdministratorArgs.builder()
.accountId("123456789012")
.servicePrincipal("principal")
.build());
}
}

Import

aws_organizations_delegated_administrator can be imported by using the account ID and its service principal, e.g.,

$ pulumi import aws:organizations/delegatedAdministrator:DelegatedAdministrator example 123456789012/config.amazonaws.com

Properties

Link copied to clipboard
val accountId: Output<String>

The account ID number of the member account in the organization to register as a delegated administrator.

Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name (ARN) of the delegated administrator's account.

Link copied to clipboard

The date when the account was made a delegated administrator.

Link copied to clipboard
val email: Output<String>

The email address that is associated with the delegated administrator's AWS account.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val joinedMethod: Output<String>

The method by which the delegated administrator's account joined the organization.

Link copied to clipboard
val joinedTimestamp: Output<String>

The date when the delegated administrator's account became a part of the organization.

Link copied to clipboard
val name: Output<String>

The friendly name of the delegated administrator's account.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The service principal of the AWS service for which you want to make the member account a delegated administrator.

Link copied to clipboard
val status: Output<String>

The status of the delegated administrator's account in the organization.

Link copied to clipboard
val urn: Output<String>