@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)
41 lines (40 loc) • 1.47 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::Config::AggregationAuthorization
*/
export declare function getAggregationAuthorization(args: GetAggregationAuthorizationArgs, opts?: pulumi.InvokeOptions): Promise<GetAggregationAuthorizationResult>;
export interface GetAggregationAuthorizationArgs {
/**
* The 12-digit account ID of the account authorized to aggregate data.
*/
authorizedAccountId: string;
/**
* The region authorized to collect aggregated data.
*/
authorizedAwsRegion: string;
}
export interface GetAggregationAuthorizationResult {
/**
* The ARN of the AggregationAuthorization.
*/
readonly aggregationAuthorizationArn?: string;
/**
* The tags for the AggregationAuthorization.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::Config::AggregationAuthorization
*/
export declare function getAggregationAuthorizationOutput(args: GetAggregationAuthorizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAggregationAuthorizationResult>;
export interface GetAggregationAuthorizationOutputArgs {
/**
* The 12-digit account ID of the account authorized to aggregate data.
*/
authorizedAccountId: pulumi.Input<string>;
/**
* The region authorized to collect aggregated data.
*/
authorizedAwsRegion: pulumi.Input<string>;
}