Interface CfnThreatIntelSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnThreatIntelSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:20.022Z")
@Stability(Stable)
public interface CfnThreatIntelSetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnThreatIntelSet
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.guardduty.*; CfnThreatIntelSetProps cfnThreatIntelSetProps = CfnThreatIntelSetProps.builder() .format("format") .location("location") // the properties below are optional .activate(false) .detectorId("detectorId") .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnThreatIntelSetProps
static final class
An implementation forCfnThreatIntelSetProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.default String
The unique ID of the detector of the GuardDuty account for which you want to create aThreatIntelSet
.The format of the file that contains the ThreatIntelSet.The URI of the file that contains the ThreatIntelSet.default String
getName()
A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.getTags()
The tags to be added to a new threat list resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFormat
The format of the file that contains the ThreatIntelSet.- See Also:
-
getLocation
The URI of the file that contains the ThreatIntelSet.- See Also:
-
getActivate
A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.- See Also:
-
getDetectorId
The unique ID of the detector of the GuardDuty account for which you want to create aThreatIntelSet
.To find the
detectorId
in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.- See Also:
-
getName
A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.- See Also:
-
getTags
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 Also:
-
builder
- Returns:
- a
CfnThreatIntelSetProps.Builder
ofCfnThreatIntelSetProps
-