@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)
32 lines (31 loc) • 1.31 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* AWS::RoboMaker::RobotApplicationVersion resource creates an AWS RoboMaker RobotApplicationVersion. This helps you control which code your robot uses.
*/
export declare function getRobotApplicationVersion(args: GetRobotApplicationVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetRobotApplicationVersionResult>;
export interface GetRobotApplicationVersionArgs {
/**
* The Amazon Resource Name (ARN) of the robot application version.
*/
arn: string;
}
export interface GetRobotApplicationVersionResult {
/**
* The robot application version.
*/
readonly applicationVersion?: string;
/**
* The Amazon Resource Name (ARN) of the robot application version.
*/
readonly arn?: string;
}
/**
* AWS::RoboMaker::RobotApplicationVersion resource creates an AWS RoboMaker RobotApplicationVersion. This helps you control which code your robot uses.
*/
export declare function getRobotApplicationVersionOutput(args: GetRobotApplicationVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRobotApplicationVersionResult>;
export interface GetRobotApplicationVersionOutputArgs {
/**
* The Amazon Resource Name (ARN) of the robot application version.
*/
arn: pulumi.Input<string>;
}