CfnThreatIntelSetProps
- class aws_cdk.aws_guardduty.CfnThreatIntelSetProps(*, format, location, activate=None, detector_id=None, name=None, tags=None)
Bases:
object
Properties for defining a
CfnThreatIntelSet
.- Parameters:
format (
str
) – The format of the file that contains the ThreatIntelSet.location (
str
) – The URI of the file that contains the ThreatIntelSet.activate (
Union
[bool
,IResolvable
,None
]) – A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.detector_id (
Optional
[str
]) – The unique ID of the detector of the GuardDuty account for which you want to create aThreatIntelSet
. To find thedetectorId
in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.name (
Optional
[str
]) – A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags to be added to a new threat list resource. Each tag consists of a key and an optional value, both of which you define. For more information, see Tag .
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_guardduty as guardduty cfn_threat_intel_set_props = guardduty.CfnThreatIntelSetProps( format="format", location="location", # the properties below are optional activate=False, detector_id="detectorId", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- activate
A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
- detector_id
The unique ID of the detector of the GuardDuty account for which you want to create a
ThreatIntelSet
.To find the
detectorId
in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.
- format
The format of the file that contains the ThreatIntelSet.
- location
The URI of the file that contains the ThreatIntelSet.
- name
A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.