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)

28 lines (27 loc) 1.35 kB
import * as pulumi from "@pulumi/pulumi"; /** * This resource schema represents the LogAnomalyDetectionIntegration resource in the Amazon DevOps Guru. */ export declare function getLogAnomalyDetectionIntegration(args: GetLogAnomalyDetectionIntegrationArgs, opts?: pulumi.InvokeOptions): Promise<GetLogAnomalyDetectionIntegrationResult>; export interface GetLogAnomalyDetectionIntegrationArgs { /** * The account ID associated with the integration of DevOps Guru with CloudWatch log groups for log anomaly detection. */ accountId: string; } export interface GetLogAnomalyDetectionIntegrationResult { /** * The account ID associated with the integration of DevOps Guru with CloudWatch log groups for log anomaly detection. */ readonly accountId?: string; } /** * This resource schema represents the LogAnomalyDetectionIntegration resource in the Amazon DevOps Guru. */ export declare function getLogAnomalyDetectionIntegrationOutput(args: GetLogAnomalyDetectionIntegrationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLogAnomalyDetectionIntegrationResult>; export interface GetLogAnomalyDetectionIntegrationOutputArgs { /** * The account ID associated with the integration of DevOps Guru with CloudWatch log groups for log anomaly detection. */ accountId: pulumi.Input<string>; }