import * as pulumi from "@pulumi/pulumi"; /** * The AWS supported service data source queries for a full list of all supported services. * * ## Example Usage * * For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AwsService resource. */ export declare function getAwsSupportedServices(args?: GetAwsSupportedServicesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAwsSupportedServices. */ export interface GetAwsSupportedServicesArgs { /** * Services with the given names won't be included in the results */ excepts?: string[]; } /** * A collection of values returned by getAwsSupportedServices. */ export interface GetAwsSupportedServicesResult { /** * Services with the given names won't be included in the results */ readonly excepts?: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The keys are the names of the supported services. The values provide information whether that service is built in or not. */ readonly services: { [key: string]: boolean; }; } /** * The AWS supported service data source queries for a full list of all supported services. * * ## Example Usage * * For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AwsService resource. */ export declare function getAwsSupportedServicesOutput(args?: GetAwsSupportedServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAwsSupportedServices. */ export interface GetAwsSupportedServicesOutputArgs { /** * Services with the given names won't be included in the results */ excepts?: pulumi.Input[]>; }