Class: Aws::GuardDuty::Types::UsageCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::UsageCriteria
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Note:
When making an API call, you may pass UsageCriteria data as a hash:
{
account_ids: ["AccountId"],
data_sources: ["FLOW_LOGS"], # required, accepts FLOW_LOGS, CLOUD_TRAIL, DNS_LOGS, S3_LOGS
resources: ["String"],
}
Contains information about the criteria used to query usage statistics.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_ids ⇒ Array<String>
The account IDs to aggregate usage statistics from.
-
#data_sources ⇒ Array<String>
The data sources to aggregate usage statistics from.
-
#resources ⇒ Array<String>
The resources to aggregate usage statistics from.
Instance Attribute Details
#account_ids ⇒ Array<String>
The account IDs to aggregate usage statistics from.
4812 4813 4814 4815 4816 4817 4818 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4812 class UsageCriteria < Struct.new( :account_ids, :data_sources, :resources) SENSITIVE = [] include Aws::Structure end |
#data_sources ⇒ Array<String>
The data sources to aggregate usage statistics from.
4812 4813 4814 4815 4816 4817 4818 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4812 class UsageCriteria < Struct.new( :account_ids, :data_sources, :resources) SENSITIVE = [] include Aws::Structure end |
#resources ⇒ Array<String>
The resources to aggregate usage statistics from. Only accepts exact resource names.
4812 4813 4814 4815 4816 4817 4818 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4812 class UsageCriteria < Struct.new( :account_ids, :data_sources, :resources) SENSITIVE = [] include Aws::Structure end |