aws-cdk-lib.aws_guardduty.CfnThreatIntelSetProps

interface CfnThreatIntelSetProps

LanguageType name
.NETAmazon.CDK.AWS.GuardDuty.CfnThreatIntelSetProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsguardduty#CfnThreatIntelSetProps
Javasoftware.amazon.awscdk.services.guardduty.CfnThreatIntelSetProps
Pythonaws_cdk.aws_guardduty.CfnThreatIntelSetProps
TypeScript aws-cdk-lib » aws_guardduty » CfnThreatIntelSetProps

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 { aws_guardduty as guardduty } from 'aws-cdk-lib';
const cfnThreatIntelSetProps: guardduty.CfnThreatIntelSetProps = {
  activate: false,
  detectorId: 'detectorId',
  format: 'format',
  location: 'location',

  // the properties below are optional
  name: 'name',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
activateboolean | IResolvableA Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
detectorIdstringThe unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.
formatstringThe format of the file that contains the ThreatIntelSet.
locationstringThe URI of the file that contains the ThreatIntelSet.
name?stringA user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.
tags?CfnTag[]The tags to be added to a new threat list resource.

activate

Type: boolean | IResolvable

A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.


detectorId

Type: string

The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.


format

Type: string

The format of the file that contains the ThreatIntelSet.


location

Type: string

The URI of the file that contains the ThreatIntelSet.


name?

Type: string (optional)

A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.


tags?

Type: CfnTag[] (optional)

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 .