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)

49 lines (48 loc) 1.43 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::RolesAnywhere::CRL Resource Type */ export declare function getCrl(args: GetCrlArgs, opts?: pulumi.InvokeOptions): Promise<GetCrlResult>; export interface GetCrlArgs { /** * The unique primary identifier of the Crl */ crlId: string; } export interface GetCrlResult { /** * The x509 v3 specified certificate revocation list (CRL). */ readonly crlData?: string; /** * The unique primary identifier of the Crl */ readonly crlId?: string; /** * Specifies whether the certificate revocation list (CRL) is enabled. */ readonly enabled?: boolean; /** * The name of the certificate revocation list (CRL). */ readonly name?: string; /** * A list of tags to attach to the certificate revocation list (CRL). */ readonly tags?: outputs.Tag[]; /** * The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for. */ readonly trustAnchorArn?: string; } /** * Definition of AWS::RolesAnywhere::CRL Resource Type */ export declare function getCrlOutput(args: GetCrlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCrlResult>; export interface GetCrlOutputArgs { /** * The unique primary identifier of the Crl */ crlId: pulumi.Input<string>; }