Update Organization Configuration
| inspector2_update_organization_configuration | R Documentation | 
Updates the configurations for your Amazon Inspector organization¶
Description¶
Updates the configurations for your Amazon Inspector organization.
Usage¶
inspector2_update_organization_configuration(autoEnable)
Arguments¶
| autoEnable | [required] Defines which scan types are enabled automatically for new members of your Amazon Inspector organization. | 
Value¶
A list with the following syntax:
list(
  autoEnable = list(
    ec2 = TRUE|FALSE,
    ecr = TRUE|FALSE,
    lambda = TRUE|FALSE,
    lambdaCode = TRUE|FALSE
  )
)
Request syntax¶
svc$update_organization_configuration(
  autoEnable = list(
    ec2 = TRUE|FALSE,
    ecr = TRUE|FALSE,
    lambda = TRUE|FALSE,
    lambdaCode = TRUE|FALSE
  )
)