Show / Hide Table of Contents

Class GetCertificateAuthority

Inheritance
System.Object
GetCertificateAuthority
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Acmpca
Assembly: Pulumi.Aws.dll
Syntax
public static class GetCertificateAuthority

Methods

View Source

InvokeAsync(GetCertificateAuthorityArgs, InvokeOptions)

Get information on a AWS Certificate Manager Private Certificate Authority (ACM PCA Certificate Authority).

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = Output.Create(Aws.Acmpca.GetCertificateAuthority.InvokeAsync(new Aws.Acmpca.GetCertificateAuthorityArgs
    {
        Arn = "arn:aws:acm-pca:us-east-1:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetCertificateAuthorityResult> InvokeAsync(GetCertificateAuthorityArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetCertificateAuthorityArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetCertificateAuthorityResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.