import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Represents a template that defines certificate configurations, both for issuance and client handling */ export declare function getTemplate(args: GetTemplateArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTemplateArgs { /** * The Amazon Resource Name (ARN) that was returned when you called [CreateTemplate](https://docs.aws.amazon.com/pca-connector-ad/latest/APIReference/API_CreateTemplate.html) . */ templateArn: string; } export interface GetTemplateResult { /** * Template configuration to define the information included in certificates. Define certificate validity and renewal periods, certificate request handling and enrollment options, key usage extensions, application policies, and cryptography settings. */ readonly definition?: outputs.pcaconnectorad.TemplateDefinition0Properties | outputs.pcaconnectorad.TemplateDefinition1Properties | outputs.pcaconnectorad.TemplateDefinition2Properties; /** * Metadata assigned to a template consisting of a key-value pair. */ readonly tags?: { [key: string]: string; }; /** * The Amazon Resource Name (ARN) that was returned when you called [CreateTemplate](https://docs.aws.amazon.com/pca-connector-ad/latest/APIReference/API_CreateTemplate.html) . */ readonly templateArn?: string; } /** * Represents a template that defines certificate configurations, both for issuance and client handling */ export declare function getTemplateOutput(args: GetTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTemplateOutputArgs { /** * The Amazon Resource Name (ARN) that was returned when you called [CreateTemplate](https://docs.aws.amazon.com/pca-connector-ad/latest/APIReference/API_CreateTemplate.html) . */ templateArn: pulumi.Input; }