UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

65 lines (64 loc) 2.77 kB
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<GetThreatIntelSetResult>; 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<GetThreatIntelSetResult>; 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<string>; /** * The unique ID of the `threatIntelSet` . */ id: pulumi.Input<string>; }