OrganizationConfigurationArgs constructor

const OrganizationConfigurationArgs({
  1. required Input<bool> autoEnable,
  2. Input<String?>? autoEnableStandards,
  3. Input<OrganizationConfigurationOrganizationConfiguration?>? organizationConfiguration,
  4. Input<String?>? region,
})

Creates a new OrganizationConfigurationArgs. autoEnable Whether to automatically enable Security Hub for new accounts in the organization. autoEnableStandards Whether to automatically enable Security Hub default standards for new member accounts in the organization. By default, this parameter is equal to DEFAULT, and new member accounts are automatically enabled with default Security Hub standards. To opt out of enabling default standards for new member accounts, set this parameter equal to NONE. organizationConfiguration Provides information about the way an organization is configured in Security Hub. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const OrganizationConfigurationArgs({
  required this.autoEnable,
  this.autoEnableStandards,
  this.organizationConfiguration,
  this.region,
});