@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)
29 lines (28 loc) • 1.13 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
*/
export declare function getTransformer(args: GetTransformerArgs, opts?: pulumi.InvokeOptions): Promise<GetTransformerResult>;
export interface GetTransformerArgs {
/**
* Existing log group that you want to associate with this transformer.
*/
logGroupIdentifier: string;
}
export interface GetTransformerResult {
/**
* List of processors in a transformer
*/
readonly transformerConfig?: outputs.logs.TransformerProcessor[];
}
/**
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
*/
export declare function getTransformerOutput(args: GetTransformerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransformerResult>;
export interface GetTransformerOutputArgs {
/**
* Existing log group that you want to associate with this transformer.
*/
logGroupIdentifier: pulumi.Input<string>;
}