import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::GuardDuty::ThreatIntelSet */ export declare function getThreatIntelSet(args: GetThreatIntelSetArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetThreatIntelSetArgs { /** * The unique ID of the detector of the GuardDuty account for which you want to create a `threatIntelSet` . * * To find the `detectorId` in the current Region, see the * Settings page in the GuardDuty console, or run the [ListDetectors](https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html) API. */ detectorId: string; /** * The unique ID of the `threatIntelSet` . */ id: string; } export interface GetThreatIntelSetResult { /** * 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. */ readonly expectedBucketOwner?: string; /** * The unique ID of the `threatIntelSet` . */ readonly id?: string; /** * The URI of the file that contains the ThreatIntelSet. */ readonly location?: string; /** * 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 (_). */ readonly name?: string; /** * 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](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::GuardDuty::ThreatIntelSet */ export declare function getThreatIntelSetOutput(args: GetThreatIntelSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetThreatIntelSetOutputArgs { /** * The unique ID of the detector of the GuardDuty account for which you want to create a `threatIntelSet` . * * To find the `detectorId` in the current Region, see the * Settings page in the GuardDuty console, or run the [ListDetectors](https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html) API. */ detectorId: pulumi.Input; /** * The unique ID of the `threatIntelSet` . */ id: pulumi.Input; }