Get Member Detectors
guardduty_get_member_detectors | R Documentation |
Describes which data sources are enabled for the member account's detector¶
Description¶
Describes which data sources are enabled for the member account's detector.
There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
Usage¶
Arguments¶
DetectorId
[required] The detector ID for the administrator account.
To find the
detectorId
in the current Region, see the Settings page in the GuardDuty console, or run thelist_detectors
API.AccountIds
[required] A list of member account IDs.
Value¶
A list with the following syntax:
list(
MemberDataSourceConfigurations = list(
list(
AccountId = "string",
DataSources = list(
CloudTrail = list(
Status = "ENABLED"|"DISABLED"
),
DNSLogs = list(
Status = "ENABLED"|"DISABLED"
),
FlowLogs = list(
Status = "ENABLED"|"DISABLED"
),
S3Logs = list(
Status = "ENABLED"|"DISABLED"
),
Kubernetes = list(
AuditLogs = list(
Status = "ENABLED"|"DISABLED"
)
),
MalwareProtection = list(
ScanEc2InstanceWithFindings = list(
EbsVolumes = list(
Status = "ENABLED"|"DISABLED",
Reason = "string"
)
),
ServiceRole = "string"
)
),
Features = list(
list(
Name = "S3_DATA_EVENTS"|"EKS_AUDIT_LOGS"|"EBS_MALWARE_PROTECTION"|"RDS_LOGIN_EVENTS"|"EKS_RUNTIME_MONITORING"|"LAMBDA_NETWORK_LOGS"|"RUNTIME_MONITORING",
Status = "ENABLED"|"DISABLED",
UpdatedAt = as.POSIXct(
"2015-01-01"
),
AdditionalConfiguration = list(
list(
Name = "EKS_ADDON_MANAGEMENT"|"ECS_FARGATE_AGENT_MANAGEMENT"|"EC2_AGENT_MANAGEMENT",
Status = "ENABLED"|"DISABLED",
UpdatedAt = as.POSIXct(
"2015-01-01"
)
)
)
)
)
)
),
UnprocessedAccounts = list(
list(
AccountId = "string",
Result = "string"
)
)
)