Class: Aws::GuardDuty::Types::OrganizationDataSourceConfigurations
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::OrganizationDataSourceConfigurations
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Note:
When making an API call, you may pass OrganizationDataSourceConfigurations data as a hash:
{
s3_logs: {
auto_enable: false, # required
},
}
An object that contains information on which data sources will be configured to be automatically enabled for new members within the organization.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_logs ⇒ Types::OrganizationS3LogsConfiguration
Describes whether S3 data event logs are enabled for new members of the organization.
Instance Attribute Details
#s3_logs ⇒ Types::OrganizationS3LogsConfiguration
Describes whether S3 data event logs are enabled for new members of the organization.
3630 3631 3632 3633 3634 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3630 class OrganizationDataSourceConfigurations < Struct.new( :s3_logs) SENSITIVE = [] include Aws::Structure end |