Interface CfnThreatIntelSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnThreatIntelSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.176Z")
@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() .activate(false) .detectorId("detectorId") .format("format") .location("location") // the properties below are optional .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnThreatIntelSetProps
static final class
An implementation forCfnThreatIntelSetProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.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
-
getActivate
A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet. -
getDetectorId
The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for. -
getFormat
The format of the file that contains the ThreatIntelSet. -
getLocation
The URI of the file that contains the ThreatIntelSet. -
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.Each tag consists of a key and an optional value, both of which you define.
For more information, see Tag .
-
builder
- Returns:
- a
CfnThreatIntelSetProps.Builder
ofCfnThreatIntelSetProps
-