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.24 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Schema for the AWS Route53 Recovery Readiness ResourceSet Resource and API. */ export declare function getResourceSet(args: GetResourceSetArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceSetResult>; export interface GetResourceSetArgs { /** * The name of the resource set to create. */ resourceSetName: string; } export interface GetResourceSetResult { /** * The Amazon Resource Name (ARN) of the resource set. */ readonly resourceSetArn?: string; /** * A list of resource objects in the resource set. */ readonly resources?: outputs.route53recoveryreadiness.ResourceSetResource[]; /** * A tag to associate with the parameters for a resource set. */ readonly tags?: outputs.Tag[]; } /** * Schema for the AWS Route53 Recovery Readiness ResourceSet Resource and API. */ export declare function getResourceSetOutput(args: GetResourceSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResourceSetResult>; export interface GetResourceSetOutputArgs { /** * The name of the resource set to create. */ resourceSetName: pulumi.Input<string>; }