import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::CertificateManager::AcmeExternalAccountBinding */ export declare function getAcmeExternalAccountBinding(args: GetAcmeExternalAccountBindingArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAcmeExternalAccountBindingArgs { /** * The Amazon Resource Name (ARN) of the external account binding. */ acmeExternalAccountBindingArn: string; } export interface GetAcmeExternalAccountBindingResult { /** * The Amazon Resource Name (ARN) of the external account binding. */ readonly acmeExternalAccountBindingArn?: string; /** * Tags associated with the external account binding. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::CertificateManager::AcmeExternalAccountBinding */ export declare function getAcmeExternalAccountBindingOutput(args: GetAcmeExternalAccountBindingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAcmeExternalAccountBindingOutputArgs { /** * The Amazon Resource Name (ARN) of the external account binding. */ acmeExternalAccountBindingArn: pulumi.Input; }