OrganizationsAccessArgs

data class OrganizationsAccessArgs(val enabled: Output<Boolean>? = null) : ConvertibleToJava<OrganizationsAccessArgs>

Manages Service Catalog AWS Organizations Access, a portfolio sharing feature through AWS Organizations. This allows Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This resource will prompt AWS to set organizations:EnableAWSServiceAccess on your behalf so that your shares can be in sync with any changes in your AWS Organizations structure.

NOTE: This resource can only be used by the management account in the organization. In other words, a delegated administrator is not authorized to use the resource.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.servicecatalog.OrganizationsAccess;
import com.pulumi.aws.servicecatalog.OrganizationsAccessArgs;
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 OrganizationsAccess("example", OrganizationsAccessArgs.builder()
.enabled("true")
.build());
}
}

Constructors

Link copied to clipboard
constructor(enabled: Output<Boolean>? = null)

Properties

Link copied to clipboard
val enabled: Output<Boolean>? = null

Whether to enable AWS Organizations access.

Functions

Link copied to clipboard
open override fun toJava(): OrganizationsAccessArgs