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)

37 lines (36 loc) 1.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::ApplicationSignals::GroupingConfiguration */ export declare function getGroupingConfiguration(args: GetGroupingConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupingConfigurationResult>; export interface GetGroupingConfigurationArgs { /** * The 12 digit AWS Account ID for the account. */ accountId: string; } export interface GetGroupingConfigurationResult { /** * The 12 digit AWS Account ID for the account. */ readonly accountId?: string; /** * An array of grouping attribute definitions that specify how services should be grouped based on various attributes and source keys. */ readonly groupingAttributeDefinitions?: outputs.applicationsignals.GroupingConfigurationGroupingAttributeDefinition[]; /** * The timestamp when this grouping configuration was last updated. When used in a raw HTTP Query API, it is formatted as epoch time in seconds. */ readonly updatedAt?: string; } /** * Resource Type definition for AWS::ApplicationSignals::GroupingConfiguration */ export declare function getGroupingConfigurationOutput(args: GetGroupingConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupingConfigurationResult>; export interface GetGroupingConfigurationOutputArgs { /** * The 12 digit AWS Account ID for the account. */ accountId: pulumi.Input<string>; }