import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Definition of AWS::AIOps::InvestigationGroup Resource Type */ export declare class InvestigationGroup extends pulumi.CustomResource { /** * Get an existing InvestigationGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): InvestigationGroup; /** * Returns true if the given object is an instance of InvestigationGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is InvestigationGroup; /** * The Amazon Resource Name (ARN) of the investigation group. */ readonly arn: pulumi.Output; /** * An array of key-value pairs of notification channels to apply to this resource. */ readonly chatbotNotificationChannels: pulumi.Output; /** * The date and time that the investigation group was created. */ readonly createdAt: pulumi.Output; /** * The name of the user who created the investigation group. */ readonly createdBy: pulumi.Output; /** * An array of cross account configurations. */ readonly crossAccountConfigurations: pulumi.Output; /** * Specifies the customer managed AWS key that the investigation group uses to encrypt data, if there is one. If not, the investigation group uses an AWS key to encrypt the data. */ readonly encryptionConfig: pulumi.Output; /** * Investigation Group policy */ readonly investigationGroupPolicy: pulumi.Output; /** * Flag to enable cloud trail history */ readonly isCloudTrailEventHistoryEnabled: pulumi.Output; /** * The date and time that the investigation group was most recently modified. */ readonly lastModifiedAt: pulumi.Output; /** * The name of the user who created the investigation group. */ readonly lastModifiedBy: pulumi.Output; /** * Specify either the name or the ARN of the investigation group that you want to view. This is used to set the name of the investigation group. */ readonly name: pulumi.Output; /** * The number of days to retain the investigation group */ readonly retentionInDays: pulumi.Output; /** * The ARN of the IAM role that the investigation group uses for permissions to gather data. */ readonly roleArn: pulumi.Output; /** * Displays the custom tag keys for custom applications in your system that you have specified in the investigation group. Resource tags help CloudWatch investigations narrow the search space when it is unable to discover definite relationships between resources. */ readonly tagKeyBoundaries: pulumi.Output; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output; /** * Create a InvestigationGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: InvestigationGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a InvestigationGroup resource. */ export interface InvestigationGroupArgs { /** * An array of key-value pairs of notification channels to apply to this resource. */ chatbotNotificationChannels?: pulumi.Input[]>; /** * An array of cross account configurations. */ crossAccountConfigurations?: pulumi.Input[]>; /** * Specifies the customer managed AWS key that the investigation group uses to encrypt data, if there is one. If not, the investigation group uses an AWS key to encrypt the data. */ encryptionConfig?: pulumi.Input; /** * Investigation Group policy */ investigationGroupPolicy?: pulumi.Input; /** * Flag to enable cloud trail history */ isCloudTrailEventHistoryEnabled?: pulumi.Input; /** * Specify either the name or the ARN of the investigation group that you want to view. This is used to set the name of the investigation group. */ name?: pulumi.Input; /** * The number of days to retain the investigation group */ retentionInDays?: pulumi.Input; /** * The ARN of the IAM role that the investigation group uses for permissions to gather data. */ roleArn?: pulumi.Input; /** * Displays the custom tag keys for custom applications in your system that you have specified in the investigation group. Resource tags help CloudWatch investigations narrow the search space when it is unable to discover definite relationships between resources. */ tagKeyBoundaries?: pulumi.Input[]>; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input[]>; }