import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::CertificateManager::AcmeEndpoint */ export declare function getAcmeEndpoint(args: GetAcmeEndpointArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAcmeEndpointArgs { /** * The Amazon Resource Name (ARN) of the ACME endpoint. */ acmeEndpointArn: string; } export interface GetAcmeEndpointResult { /** * The Amazon Resource Name (ARN) of the ACME endpoint. */ readonly acmeEndpointArn?: string; /** * The authorization behavior for the ACME endpoint. */ readonly authorizationBehavior?: string; readonly certificateAuthority?: outputs.certificatemanager.AcmeEndpointCertificateAuthority; /** * Whether contact information is required for the ACME endpoint. */ readonly contact?: string; /** * The ACME directory URL for the endpoint. */ readonly endpointUrl?: string; /** * Tags associated with the ACME endpoint. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::CertificateManager::AcmeEndpoint */ export declare function getAcmeEndpointOutput(args: GetAcmeEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAcmeEndpointOutputArgs { /** * The Amazon Resource Name (ARN) of the ACME endpoint. */ acmeEndpointArn: pulumi.Input; }