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)

45 lines (44 loc) 1.54 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Resource schema for AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation. */ export declare function getResolverQueryLoggingConfigAssociation(args: GetResolverQueryLoggingConfigAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetResolverQueryLoggingConfigAssociationResult>; export interface GetResolverQueryLoggingConfigAssociationArgs { /** * Id */ id: string; } export interface GetResolverQueryLoggingConfigAssociationResult { /** * Rfc3339TimeString */ readonly creationTime?: string; /** * ResolverQueryLogConfigAssociationError */ readonly error?: enums.route53resolver.ResolverQueryLoggingConfigAssociationError; /** * ResolverQueryLogConfigAssociationErrorMessage */ readonly errorMessage?: string; /** * Id */ readonly id?: string; /** * ResolverQueryLogConfigAssociationStatus */ readonly status?: enums.route53resolver.ResolverQueryLoggingConfigAssociationStatus; } /** * Resource schema for AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation. */ export declare function getResolverQueryLoggingConfigAssociationOutput(args: GetResolverQueryLoggingConfigAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResolverQueryLoggingConfigAssociationResult>; export interface GetResolverQueryLoggingConfigAssociationOutputArgs { /** * Id */ id: pulumi.Input<string>; }