import * as pulumi from "@pulumi/pulumi"; /** * AWS::RoboMaker::Fleet resource creates an AWS RoboMaker fleet. Fleets contain robots and can receive deployments. */ export declare function getFleet(args: GetFleetArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetFleetArgs { /** * The Amazon Resource Name (ARN) of the fleet, such as `arn:aws:robomaker:us-west-2:123456789012:deployment-fleet/MyFleet/1539894765711` . */ arn: string; } export interface GetFleetResult { /** * The Amazon Resource Name (ARN) of the fleet, such as `arn:aws:robomaker:us-west-2:123456789012:deployment-fleet/MyFleet/1539894765711` . */ readonly arn?: string; /** * The list of all tags added to the fleet. */ readonly tags?: { [key: string]: string; }; } /** * AWS::RoboMaker::Fleet resource creates an AWS RoboMaker fleet. Fleets contain robots and can receive deployments. */ export declare function getFleetOutput(args: GetFleetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetFleetOutputArgs { /** * The Amazon Resource Name (ARN) of the fleet, such as `arn:aws:robomaker:us-west-2:123456789012:deployment-fleet/MyFleet/1539894765711` . */ arn: pulumi.Input; }