import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve the standard IAM permissions required for the AWS integration. This provides the minimum list of IAM actions that should be included in the AWS role policy for Datadog integration. */ export declare function getIntegrationIamPermissionsStandard(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getIntegrationIamPermissionsStandard. */ export interface GetIntegrationIamPermissionsStandardResult { /** * The list of standard IAM actions required for the AWS integration. */ readonly iamPermissions: string[]; /** * The ID of this resource. */ readonly id: string; } /** * Use this data source to retrieve the standard IAM permissions required for the AWS integration. This provides the minimum list of IAM actions that should be included in the AWS role policy for Datadog integration. */ export declare function getIntegrationIamPermissionsStandardOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;