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)

51 lines (50 loc) 1.41 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Resource schema for AWS::Omics::Configuration */ export declare function getConfiguration(args: GetConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationResult>; export interface GetConfigurationArgs { /** * User-friendly name for the configuration. */ name: string; } export interface GetConfigurationResult { /** * Unique resource identifier for the configuration. */ readonly arn?: string; /** * Configuration creation timestamp. */ readonly creationTime?: string; /** * Optional description for the configuration. */ readonly description?: string; /** * Current configuration status. */ readonly status?: enums.omics.ConfigurationStatus; /** * Tags for the configuration. */ readonly tags?: { [key: string]: string; }; /** * Unique identifier for the configuration. */ readonly uuid?: string; } /** * Resource schema for AWS::Omics::Configuration */ export declare function getConfigurationOutput(args: GetConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationResult>; export interface GetConfigurationOutputArgs { /** * User-friendly name for the configuration. */ name: pulumi.Input<string>; }