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)

32 lines (31 loc) 1.28 kB
import * as pulumi from "@pulumi/pulumi"; /** * Used to install the certificate authority certificate and update the certificate authority status. */ export declare function getCertificateAuthorityActivation(args: GetCertificateAuthorityActivationArgs, opts?: pulumi.InvokeOptions): Promise<GetCertificateAuthorityActivationResult>; export interface GetCertificateAuthorityActivationArgs { /** * Arn of the Certificate Authority. */ certificateAuthorityArn: string; } export interface GetCertificateAuthorityActivationResult { /** * The complete certificate chain, including the Certificate Authority certificate. */ readonly completeCertificateChain?: string; /** * The status of the Certificate Authority. */ readonly status?: string; } /** * Used to install the certificate authority certificate and update the certificate authority status. */ export declare function getCertificateAuthorityActivationOutput(args: GetCertificateAuthorityActivationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCertificateAuthorityActivationResult>; export interface GetCertificateAuthorityActivationOutputArgs { /** * Arn of the Certificate Authority. */ certificateAuthorityArn: pulumi.Input<string>; }