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)

37 lines (36 loc) 1 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::IVS::PublicKey */ export declare function getPublicKey(args: GetPublicKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetPublicKeyResult>; export interface GetPublicKeyArgs { /** * Key-pair identifier. */ arn: string; } export interface GetPublicKeyResult { /** * Key-pair identifier. */ readonly arn?: string; /** * Key-pair identifier. */ readonly fingerprint?: string; /** * A list of key-value pairs that contain metadata for the asset model. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::IVS::PublicKey */ export declare function getPublicKeyOutput(args: GetPublicKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPublicKeyResult>; export interface GetPublicKeyOutputArgs { /** * Key-pair identifier. */ arn: pulumi.Input<string>; }