Interface CfnThreatIntelSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnThreatIntelSetProps.Jsii$Proxy
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") .expectedBucketOwner("expectedBucketOwner") .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnThreatIntelSetProps
static final class
An implementation forCfnThreatIntelSetProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A boolean value that determines if GuardDuty can start using this list for custom threat detection.default String
The unique ID of the detector of the GuardDuty account for which you want to create athreatIntelSet
.default String
The AWS account ID that owns the Amazon S3 bucket specified in the Location field.The format of the file that contains theThreatIntelSet
.The URI of the file that contains the ThreatIntelSet.default String
getName()
The user-friendly name to identify the ThreatIntelSet.getTags()
The tags to be added to a new threat entity set resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFormat
The format of the file that contains theThreatIntelSet
.For information about supported formats, see List formats in the Amazon GuardDuty User Guide .
- See Also:
-
getLocation
The URI of the file that contains the ThreatIntelSet.- See Also:
-
getActivate
A boolean value that determines if GuardDuty can start using this list for custom threat detection.For GuardDuty to be able to generate findings based on an activity associated with these entries, this list must be active.
- 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:
-
getExpectedBucketOwner
The AWS account ID that owns the Amazon S3 bucket specified in the Location field.When you provide this account ID, GuardDuty will validate that the S3 bucket belongs to this account. If you don't specify an account ID owner, GuardDuty doesn't perform any validation.
- See Also:
-
getName
The user-friendly name to identify the ThreatIntelSet.The name of your list must be unique within an AWS account and Region. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
- See Also:
-
getTags
The tags to be added to a new threat entity set 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
-