CfnThreatIntelSetProps
- class aws_cdk.aws_guardduty.CfnThreatIntelSetProps(*, activate, detector_id, format, location, name=None, tags=None)
Bases:
object
Properties for defining a
CfnThreatIntelSet
.- Parameters:
activate (
Union
[bool
,IResolvable
]) – A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.detector_id (
str
) – The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.format (
str
) – The format of the file that contains the ThreatIntelSet.location (
str
) – The URI of the file that contains the ThreatIntelSet.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 .
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_guardduty as guardduty cfn_threat_intel_set_props = guardduty.CfnThreatIntelSetProps( activate=False, detector_id="detectorId", format="format", location="location", # the properties below are optional 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 that you want to create a threatIntelSet for.
- 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.