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)

31 lines (30 loc) 964 B
import * as pulumi from "@pulumi/pulumi"; /** * Represents a SCEP Challenge that is used for certificate enrollment */ export declare function getChallenge(args: GetChallengeArgs, opts?: pulumi.InvokeOptions): Promise<GetChallengeResult>; export interface GetChallengeArgs { /** * The Amazon Resource Name (ARN) of the challenge. */ challengeArn: string; } export interface GetChallengeResult { /** * The Amazon Resource Name (ARN) of the challenge. */ readonly challengeArn?: string; readonly tags?: { [key: string]: string; }; } /** * Represents a SCEP Challenge that is used for certificate enrollment */ export declare function getChallengeOutput(args: GetChallengeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetChallengeResult>; export interface GetChallengeOutputArgs { /** * The Amazon Resource Name (ARN) of the challenge. */ challengeArn: pulumi.Input<string>; }