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();
 
  • Method Details

    • getActivate

      @Stability(Stable) @NotNull Object getActivate()
      A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
    • getDetectorId

      @Stability(Stable) @NotNull String getDetectorId()
      The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.
    • getFormat

      @Stability(Stable) @NotNull String getFormat()
      The format of the file that contains the ThreatIntelSet.
    • getLocation

      @Stability(Stable) @NotNull String getLocation()
      The URI of the file that contains the ThreatIntelSet.
    • getName

      @Stability(Stable) @Nullable 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

      @Stability(Stable) @Nullable default List<CfnTag> 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

      @Stability(Stable) static CfnThreatIntelSetProps.Builder builder()
      Returns:
      a CfnThreatIntelSetProps.Builder of CfnThreatIntelSetProps