Create Trusted Entity Set
| guardduty_create_trusted_entity_set | R Documentation |
Creates a new trusted entity set¶
Description¶
Creates a new trusted entity set. In the trusted entity set, you can provide IP addresses and domains that you believe are secure for communication in your Amazon Web Services environment. GuardDuty will not generate findings for the entries that are specified in a trusted entity set. At any given time, you can have only one trusted entity set.
Only users of the administrator account can manage the entity sets, which automatically apply to member accounts.
Usage¶
guardduty_create_trusted_entity_set(DetectorId, Name, Format, Location,
ExpectedBucketOwner, Activate, ClientToken, Tags)
Arguments¶
DetectorId |
[required] The unique ID of the detector of the GuardDuty account for which you want to create a trusted entity set. To find the |
Name |
[required] A user-friendly name to identify the trusted entity set. The name of your list can include lowercase letters, uppercase letters, numbers, dash (-), and underscore (_). |
Format |
[required] The format of the file that contains the trusted entity set. |
Location |
[required] The URI of the file that contains the threat entity
set. The format of the |
ExpectedBucketOwner |
The Amazon Web Services account ID that owns the Amazon S3 bucket specified in the location parameter. |
Activate |
[required] A boolean value that indicates whether GuardDuty is to start using the uploaded trusted entity set. |
ClientToken |
The idempotency token for the create request. |
Tags |
The tags to be added to a new trusted entity set resource. |
Value¶
A list with the following syntax:
list(
TrustedEntitySetId = "string"
)
Request syntax¶
svc$create_trusted_entity_set(
DetectorId = "string",
Name = "string",
Format = "TXT"|"STIX"|"OTX_CSV"|"ALIEN_VAULT"|"PROOF_POINT"|"FIRE_EYE",
Location = "string",
ExpectedBucketOwner = "string",
Activate = TRUE|FALSE,
ClientToken = "string",
Tags = list(
"string"
)
)