import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Logging Options enable you to configure your IoT V2 logging role and default logging level so that you can monitor progress events logs as it passes from your devices through Iot core service. */ export declare function getLogging(args: GetLoggingArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetLoggingArgs { /** * Your 12-digit account ID (used as the primary identifier for the CloudFormation resource). */ accountId: string; } export interface GetLoggingResult { /** * The log level to use. Valid values are: ERROR, WARN, INFO, DEBUG, or DISABLED. */ readonly defaultLogLevel?: enums.iot.LoggingDefaultLogLevel; /** * Configurations for event-based logging that specifies which event types to log and their logging settings. Overrides account-level logging for the specified event */ readonly eventConfigurations?: outputs.iot.LoggingEventConfiguration[]; /** * The ARN of the role that allows IoT to write to Cloudwatch logs. */ readonly roleArn?: string; } /** * Logging Options enable you to configure your IoT V2 logging role and default logging level so that you can monitor progress events logs as it passes from your devices through Iot core service. */ export declare function getLoggingOutput(args: GetLoggingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetLoggingOutputArgs { /** * Your 12-digit account ID (used as the primary identifier for the CloudFormation resource). */ accountId: pulumi.Input; }