@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)
57 lines (56 loc) • 1.67 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Definition of AWS::RefactorSpaces::Route Resource Type
*/
export declare function getRoute(args: GetRouteArgs, opts?: pulumi.InvokeOptions): Promise<GetRouteResult>;
export interface GetRouteArgs {
/**
* The unique identifier of the application.
*/
applicationIdentifier: string;
/**
* The unique identifier of the environment.
*/
environmentIdentifier: string;
/**
* The unique identifier of the route.
*/
routeIdentifier: string;
}
export interface GetRouteResult {
/**
* The Amazon Resource Name (ARN) of the route.
*/
readonly arn?: string;
/**
* A mapping of Amazon API Gateway path resources to resource IDs.
*/
readonly pathResourceToId?: string;
/**
* The unique identifier of the route.
*/
readonly routeIdentifier?: string;
/**
* Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair.
*/
readonly tags?: outputs.Tag[];
}
/**
* Definition of AWS::RefactorSpaces::Route Resource Type
*/
export declare function getRouteOutput(args: GetRouteOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRouteResult>;
export interface GetRouteOutputArgs {
/**
* The unique identifier of the application.
*/
applicationIdentifier: pulumi.Input<string>;
/**
* The unique identifier of the environment.
*/
environmentIdentifier: pulumi.Input<string>;
/**
* The unique identifier of the route.
*/
routeIdentifier: pulumi.Input<string>;
}