Class: Aws::GuardDuty::Types::DeleteMembersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::DeleteMembersRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_ids ⇒ Array<String>
A list of account IDs of the GuardDuty member accounts that you want to delete.
-
#detector_id ⇒ String
The unique ID of the detector of the GuardDuty account whose members you want to delete.
Instance Attribute Details
#account_ids ⇒ Array<String>
A list of account IDs of the GuardDuty member accounts that you want to delete.
2226 2227 2228 2229 2230 2231 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2226 class DeleteMembersRequest < Struct.new( :detector_id, :account_ids) SENSITIVE = [] include Aws::Structure end |
#detector_id ⇒ String
The unique ID of the detector of the GuardDuty account whose members you want to delete.
To find the ‘detectorId` in the current Region, see the Settings page in the GuardDuty console, or run the [ListDetectors] API.
[1]: docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
2226 2227 2228 2229 2230 2231 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2226 class DeleteMembersRequest < Struct.new( :detector_id, :account_ids) SENSITIVE = [] include Aws::Structure end |