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.17 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::MSK::Configuration */ export declare function getConfiguration(args: GetConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationResult>; export interface GetConfigurationArgs { /** * The Amazon Resource Name (ARN) of the configuration. */ arn: string; } export interface GetConfigurationResult { /** * The Amazon Resource Name (ARN) of the configuration. */ readonly arn?: string; /** * The description of the configuration. */ readonly description?: string; /** * Latest revision of the MSK configuration. */ readonly latestRevision?: outputs.msk.ConfigurationLatestRevision; } /** * Resource Type definition for AWS::MSK::Configuration */ export declare function getConfigurationOutput(args: GetConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationResult>; export interface GetConfigurationOutputArgs { /** * The Amazon Resource Name (ARN) of the configuration. */ arn: pulumi.Input<string>; }