OrganizationConfigurationArgs

data class OrganizationConfigurationArgs(val autoEnable: Output<Boolean>? = null, val graphArn: Output<String>? = null) : ConvertibleToJava<OrganizationConfigurationArgs>

Example Usage

resources:
example:
type: aws:detective:Graph
properties:
enable: true
exampleOrganizationConfiguration:
type: aws:detective:OrganizationConfiguration
name: example
properties:
autoEnable: true
graphArn: ${example.id}

Import

Using pulumi import, import aws_detective_organization_admin_account using the Detective Graph ID. For example:

$ pulumi import aws:detective/organizationConfiguration:OrganizationConfiguration example 00b00fd5aecc0ab60a708659477e9617

Constructors

Link copied to clipboard
constructor(autoEnable: Output<Boolean>? = null, graphArn: Output<String>? = null)

Properties

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

When this setting is enabled, all new accounts that are created in, or added to, the organization are added as a member accounts of the organization’s Detective delegated administrator and Detective is enabled in that AWS Region.

Link copied to clipboard
val graphArn: Output<String>? = null

ARN of the behavior graph.

Functions

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