getQueryLogConfig

aws.route53.ResolverQueryLogConfig provides details about a specific Route53 Resolver Query Logging Configuration.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53.Route53Functions;
import com.pulumi.aws.route53.inputs.GetQueryLogConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = Route53Functions.getQueryLogConfig(GetQueryLogConfigArgs.builder()
.resolverQueryLogConfigId("rqlc-1abc2345ef678g91h")
.build());
}
}

Return

A collection of values returned by getQueryLogConfig.

Parameters

argument

A collection of arguments for invoking getQueryLogConfig.


suspend fun getQueryLogConfig(filters: List<GetQueryLogConfigFilter>? = null, name: String? = null, resolverQueryLogConfigId: String? = null, tags: Map<String, String>? = null): GetQueryLogConfigResult

Return

A collection of values returned by getQueryLogConfig.

Parameters

filters

One or more name/value pairs to use as filters. There are several valid keys, for a full reference, check out 1. In addition to all arguments above, the following attributes are exported:

name

The name of the query logging configuration.

resolverQueryLogConfigId

ID of the Route53 Resolver Query Logging Configuration.

tags

Map of tags to assign to the service. 1: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_Filter.html

See also


Return

A collection of values returned by getQueryLogConfig.

Parameters

argument

Builder for com.pulumi.aws.route53.kotlin.inputs.GetQueryLogConfigPlainArgs.

See also