Class CfnThreatIntelSetProps
Properties for defining a CfnThreatIntelSet
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.GuardDuty
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnThreatIntelSetProps : ICfnThreatIntelSetProps
Syntax (vb)
Public Class CfnThreatIntelSetProps Implements ICfnThreatIntelSetProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GuardDuty;
var cfnThreatIntelSetProps = new CfnThreatIntelSetProps {
Format = "format",
Location = "location",
// the properties below are optional
Activate = false,
DetectorId = "detectorId",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnThreatIntelSetProps() | Properties for defining a |
Properties
Activate | A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet. |
DetectorId | The unique ID of the detector of the GuardDuty account for which you want to create a |
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. |
Tags | The tags to be added to a new threat list resource. |
Constructors
CfnThreatIntelSetProps()
Properties for defining a CfnThreatIntelSet
.
public CfnThreatIntelSetProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GuardDuty;
var cfnThreatIntelSetProps = new CfnThreatIntelSetProps {
Format = "format",
Location = "location",
// the properties below are optional
Activate = false,
DetectorId = "detectorId",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Activate
A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
public object? Activate { get; set; }
Property Value
Remarks
DetectorId
The unique ID of the detector of the GuardDuty account for which you want to create a ThreatIntelSet
.
public string? DetectorId { get; set; }
Property Value
Remarks
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.
public string Format { get; set; }
Property Value
Remarks
Location
The URI of the file that contains the ThreatIntelSet.
public string Location { get; set; }
Property Value
Remarks
Name
A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.
public string? Name { get; set; }
Property Value
Remarks
Tags
The tags to be added to a new threat list resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Each tag consists of a key and an optional value, both of which you define.
For more information, see Tag .