@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)
33 lines (32 loc) • 1.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Resource-specific logging allows you to specify a logging level for a specific thing group.
*/
export declare function getResourceSpecificLogging(args: GetResourceSpecificLoggingArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceSpecificLoggingResult>;
export interface GetResourceSpecificLoggingArgs {
/**
* Unique Id for a Target (TargetType:TargetName), this will be internally built to serve as primary identifier for a log target.
*/
targetId: string;
}
export interface GetResourceSpecificLoggingResult {
/**
* The log level for a specific target. Valid values are: ERROR, WARN, INFO, DEBUG, or DISABLED.
*/
readonly logLevel?: enums.iot.ResourceSpecificLoggingLogLevel;
/**
* Unique Id for a Target (TargetType:TargetName), this will be internally built to serve as primary identifier for a log target.
*/
readonly targetId?: string;
}
/**
* Resource-specific logging allows you to specify a logging level for a specific thing group.
*/
export declare function getResourceSpecificLoggingOutput(args: GetResourceSpecificLoggingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResourceSpecificLoggingResult>;
export interface GetResourceSpecificLoggingOutputArgs {
/**
* Unique Id for a Target (TargetType:TargetName), this will be internally built to serve as primary identifier for a log target.
*/
targetId: pulumi.Input<string>;
}