We recommend new projects start with resources from the AWS provider.
aws-native.robomaker.SimulationApplication
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
This schema is for testing purpose only.
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var basicSimulationApplication = new AwsNative.RoboMaker.SimulationApplication("basicSimulationApplication", new()
{
Name = "MySimulationApplication",
Environment = "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
RobotSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationRobotSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
SimulationSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationSimulationSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
Tags =
{
{ "name", "BasicSimulationApplication" },
{ "type", "CFN" },
},
});
return new Dictionary<string, object?>
{
["simulationApplication"] = "BasicSimulationApplication",
};
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/robomaker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := robomaker.NewSimulationApplication(ctx, "basicSimulationApplication", &robomaker.SimulationApplicationArgs{
Name: pulumi.String("MySimulationApplication"),
Environment: pulumi.String("111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest"),
RobotSoftwareSuite: &robomaker.SimulationApplicationRobotSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationRobotSoftwareSuiteNameGeneral,
},
SimulationSoftwareSuite: &robomaker.SimulationApplicationSimulationSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationSimulationSoftwareSuiteNameSimulationRuntime,
},
Tags: pulumi.StringMap{
"name": pulumi.String("BasicSimulationApplication"),
"type": pulumi.String("CFN"),
},
})
if err != nil {
return err
}
ctx.Export("simulationApplication", pulumi.String("BasicSimulationApplication"))
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
basic_simulation_application = aws_native.robomaker.SimulationApplication("basicSimulationApplication",
name="MySimulationApplication",
environment="111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robot_software_suite={
"name": aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.GENERAL,
},
simulation_software_suite={
"name": aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SIMULATION_RUNTIME,
},
tags={
"name": "BasicSimulationApplication",
"type": "CFN",
})
pulumi.export("simulationApplication", "BasicSimulationApplication")
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const basicSimulationApplication = new aws_native.robomaker.SimulationApplication("basicSimulationApplication", {
name: "MySimulationApplication",
environment: "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robotSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
simulationSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
tags: {
name: "BasicSimulationApplication",
type: "CFN",
},
});
export const simulationApplication = "BasicSimulationApplication";
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var basicSimulationApplication = new AwsNative.RoboMaker.SimulationApplication("basicSimulationApplication", new()
{
Name = "MySimulationApplication",
Environment = "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
RobotSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationRobotSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
SimulationSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationSimulationSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
Tags =
{
{ "name", "BasicSimulationApplication" },
{ "type", "CFN" },
},
});
return new Dictionary<string, object?>
{
["simulationApplication"] = basicSimulationApplication.Id,
};
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/robomaker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
basicSimulationApplication, err := robomaker.NewSimulationApplication(ctx, "basicSimulationApplication", &robomaker.SimulationApplicationArgs{
Name: pulumi.String("MySimulationApplication"),
Environment: pulumi.String("111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest"),
RobotSoftwareSuite: &robomaker.SimulationApplicationRobotSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationRobotSoftwareSuiteNameGeneral,
},
SimulationSoftwareSuite: &robomaker.SimulationApplicationSimulationSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationSimulationSoftwareSuiteNameSimulationRuntime,
},
Tags: pulumi.StringMap{
"name": pulumi.String("BasicSimulationApplication"),
"type": pulumi.String("CFN"),
},
})
if err != nil {
return err
}
ctx.Export("simulationApplication", basicSimulationApplication.ID())
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
basic_simulation_application = aws_native.robomaker.SimulationApplication("basicSimulationApplication",
name="MySimulationApplication",
environment="111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robot_software_suite={
"name": aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.GENERAL,
},
simulation_software_suite={
"name": aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SIMULATION_RUNTIME,
},
tags={
"name": "BasicSimulationApplication",
"type": "CFN",
})
pulumi.export("simulationApplication", basic_simulation_application.id)
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const basicSimulationApplication = new aws_native.robomaker.SimulationApplication("basicSimulationApplication", {
name: "MySimulationApplication",
environment: "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robotSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
simulationSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
tags: {
name: "BasicSimulationApplication",
type: "CFN",
},
});
export const simulationApplication = basicSimulationApplication.id;
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var basicSimulationApplication = new AwsNative.RoboMaker.SimulationApplication("basicSimulationApplication", new()
{
Name = "MySimulationApplication",
Environment = "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
RobotSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationRobotSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
SimulationSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationSimulationSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
});
var basicSimulationApplicationVersion = new AwsNative.RoboMaker.SimulationApplicationVersion("basicSimulationApplicationVersion", new()
{
Application = basicSimulationApplication.Arn,
CurrentRevisionId = basicSimulationApplication.CurrentRevisionId,
});
return new Dictionary<string, object?>
{
["simulationApplicationVersion"] = "BasicSimulationApplicationVersion",
};
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/robomaker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
basicSimulationApplication, err := robomaker.NewSimulationApplication(ctx, "basicSimulationApplication", &robomaker.SimulationApplicationArgs{
Name: pulumi.String("MySimulationApplication"),
Environment: pulumi.String("111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest"),
RobotSoftwareSuite: &robomaker.SimulationApplicationRobotSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationRobotSoftwareSuiteNameGeneral,
},
SimulationSoftwareSuite: &robomaker.SimulationApplicationSimulationSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationSimulationSoftwareSuiteNameSimulationRuntime,
},
})
if err != nil {
return err
}
_, err = robomaker.NewSimulationApplicationVersion(ctx, "basicSimulationApplicationVersion", &robomaker.SimulationApplicationVersionArgs{
Application: basicSimulationApplication.Arn,
CurrentRevisionId: basicSimulationApplication.CurrentRevisionId,
})
if err != nil {
return err
}
ctx.Export("simulationApplicationVersion", pulumi.String("BasicSimulationApplicationVersion"))
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
basic_simulation_application = aws_native.robomaker.SimulationApplication("basicSimulationApplication",
name="MySimulationApplication",
environment="111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robot_software_suite={
"name": aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.GENERAL,
},
simulation_software_suite={
"name": aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SIMULATION_RUNTIME,
})
basic_simulation_application_version = aws_native.robomaker.SimulationApplicationVersion("basicSimulationApplicationVersion",
application=basic_simulation_application.arn,
current_revision_id=basic_simulation_application.current_revision_id)
pulumi.export("simulationApplicationVersion", "BasicSimulationApplicationVersion")
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const basicSimulationApplication = new aws_native.robomaker.SimulationApplication("basicSimulationApplication", {
name: "MySimulationApplication",
environment: "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robotSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
simulationSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
});
const basicSimulationApplicationVersion = new aws_native.robomaker.SimulationApplicationVersion("basicSimulationApplicationVersion", {
application: basicSimulationApplication.arn,
currentRevisionId: basicSimulationApplication.currentRevisionId,
});
export const simulationApplicationVersion = "BasicSimulationApplicationVersion";
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var basicSimulationApplication = new AwsNative.RoboMaker.SimulationApplication("basicSimulationApplication", new()
{
Name = "MySimulationApplication",
Environment = "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
RobotSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationRobotSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
SimulationSoftwareSuite = new AwsNative.RoboMaker.Inputs.SimulationApplicationSimulationSoftwareSuiteArgs
{
Name = AwsNative.RoboMaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
});
var basicSimulationApplicationVersion = new AwsNative.RoboMaker.SimulationApplicationVersion("basicSimulationApplicationVersion", new()
{
Application = basicSimulationApplication.Arn,
CurrentRevisionId = basicSimulationApplication.CurrentRevisionId,
});
return new Dictionary<string, object?>
{
["simulationApplicationVersion"] = basicSimulationApplicationVersion.Id,
};
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/robomaker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
basicSimulationApplication, err := robomaker.NewSimulationApplication(ctx, "basicSimulationApplication", &robomaker.SimulationApplicationArgs{
Name: pulumi.String("MySimulationApplication"),
Environment: pulumi.String("111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest"),
RobotSoftwareSuite: &robomaker.SimulationApplicationRobotSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationRobotSoftwareSuiteNameGeneral,
},
SimulationSoftwareSuite: &robomaker.SimulationApplicationSimulationSoftwareSuiteArgs{
Name: robomaker.SimulationApplicationSimulationSoftwareSuiteNameSimulationRuntime,
},
})
if err != nil {
return err
}
basicSimulationApplicationVersion, err := robomaker.NewSimulationApplicationVersion(ctx, "basicSimulationApplicationVersion", &robomaker.SimulationApplicationVersionArgs{
Application: basicSimulationApplication.Arn,
CurrentRevisionId: basicSimulationApplication.CurrentRevisionId,
})
if err != nil {
return err
}
ctx.Export("simulationApplicationVersion", basicSimulationApplicationVersion.ID())
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
basic_simulation_application = aws_native.robomaker.SimulationApplication("basicSimulationApplication",
name="MySimulationApplication",
environment="111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robot_software_suite={
"name": aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.GENERAL,
},
simulation_software_suite={
"name": aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SIMULATION_RUNTIME,
})
basic_simulation_application_version = aws_native.robomaker.SimulationApplicationVersion("basicSimulationApplicationVersion",
application=basic_simulation_application.arn,
current_revision_id=basic_simulation_application.current_revision_id)
pulumi.export("simulationApplicationVersion", basic_simulation_application_version.id)
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const basicSimulationApplication = new aws_native.robomaker.SimulationApplication("basicSimulationApplication", {
name: "MySimulationApplication",
environment: "111122223333.dkr.ecr.us-west-2.amazonaws.com/my-sim-app:latest",
robotSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationRobotSoftwareSuiteName.General,
},
simulationSoftwareSuite: {
name: aws_native.robomaker.SimulationApplicationSimulationSoftwareSuiteName.SimulationRuntime,
},
});
const basicSimulationApplicationVersion = new aws_native.robomaker.SimulationApplicationVersion("basicSimulationApplicationVersion", {
application: basicSimulationApplication.arn,
currentRevisionId: basicSimulationApplication.currentRevisionId,
});
export const simulationApplicationVersion = basicSimulationApplicationVersion.id;
Coming soon!
Create SimulationApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SimulationApplication(name: string, args: SimulationApplicationArgs, opts?: CustomResourceOptions);
@overload
def SimulationApplication(resource_name: str,
args: SimulationApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SimulationApplication(resource_name: str,
opts: Optional[ResourceOptions] = None,
robot_software_suite: Optional[SimulationApplicationRobotSoftwareSuiteArgs] = None,
simulation_software_suite: Optional[SimulationApplicationSimulationSoftwareSuiteArgs] = None,
current_revision_id: Optional[str] = None,
environment: Optional[str] = None,
name: Optional[str] = None,
rendering_engine: Optional[SimulationApplicationRenderingEngineArgs] = None,
sources: Optional[Sequence[SimulationApplicationSourceConfigArgs]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewSimulationApplication(ctx *Context, name string, args SimulationApplicationArgs, opts ...ResourceOption) (*SimulationApplication, error)
public SimulationApplication(string name, SimulationApplicationArgs args, CustomResourceOptions? opts = null)
public SimulationApplication(String name, SimulationApplicationArgs args)
public SimulationApplication(String name, SimulationApplicationArgs args, CustomResourceOptions options)
type: aws-native:robomaker:SimulationApplication
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SimulationApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SimulationApplicationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SimulationApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SimulationApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SimulationApplicationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SimulationApplication Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SimulationApplication resource accepts the following input properties:
- Robot
Software Pulumi.Suite Aws Native. Robo Maker. Inputs. Simulation Application Robot Software Suite - The robot software suite used by the simulation application.
- Simulation
Software Pulumi.Suite Aws Native. Robo Maker. Inputs. Simulation Application Simulation Software Suite - The simulation software suite used by the simulation application.
- Current
Revision stringId - The current revision id.
- Environment string
- The URI of the Docker image for the robot application.
- Name string
- The name of the simulation application.
- Rendering
Engine Pulumi.Aws Native. Robo Maker. Inputs. Simulation Application Rendering Engine - The rendering engine for the simulation application.
- Sources
List<Pulumi.
Aws Native. Robo Maker. Inputs. Simulation Application Source Config> - The sources of the simulation application.
- Dictionary<string, string>
- A map that contains tag keys and tag values that are attached to the simulation application.
- Robot
Software SimulationSuite Application Robot Software Suite Args - The robot software suite used by the simulation application.
- Simulation
Software SimulationSuite Application Simulation Software Suite Args - The simulation software suite used by the simulation application.
- Current
Revision stringId - The current revision id.
- Environment string
- The URI of the Docker image for the robot application.
- Name string
- The name of the simulation application.
- Rendering
Engine SimulationApplication Rendering Engine Args - The rendering engine for the simulation application.
- Sources
[]Simulation
Application Source Config Args - The sources of the simulation application.
- map[string]string
- A map that contains tag keys and tag values that are attached to the simulation application.
- robot
Software SimulationSuite Application Robot Software Suite - The robot software suite used by the simulation application.
- simulation
Software SimulationSuite Application Simulation Software Suite - The simulation software suite used by the simulation application.
- current
Revision StringId - The current revision id.
- environment String
- The URI of the Docker image for the robot application.
- name String
- The name of the simulation application.
- rendering
Engine SimulationApplication Rendering Engine - The rendering engine for the simulation application.
- sources
List<Simulation
Application Source Config> - The sources of the simulation application.
- Map<String,String>
- A map that contains tag keys and tag values that are attached to the simulation application.
- robot
Software SimulationSuite Application Robot Software Suite - The robot software suite used by the simulation application.
- simulation
Software SimulationSuite Application Simulation Software Suite - The simulation software suite used by the simulation application.
- current
Revision stringId - The current revision id.
- environment string
- The URI of the Docker image for the robot application.
- name string
- The name of the simulation application.
- rendering
Engine SimulationApplication Rendering Engine - The rendering engine for the simulation application.
- sources
Simulation
Application Source Config[] - The sources of the simulation application.
- {[key: string]: string}
- A map that contains tag keys and tag values that are attached to the simulation application.
- robot_
software_ Simulationsuite Application Robot Software Suite Args - The robot software suite used by the simulation application.
- simulation_
software_ Simulationsuite Application Simulation Software Suite Args - The simulation software suite used by the simulation application.
- current_
revision_ strid - The current revision id.
- environment str
- The URI of the Docker image for the robot application.
- name str
- The name of the simulation application.
- rendering_
engine SimulationApplication Rendering Engine Args - The rendering engine for the simulation application.
- sources
Sequence[Simulation
Application Source Config Args] - The sources of the simulation application.
- Mapping[str, str]
- A map that contains tag keys and tag values that are attached to the simulation application.
- robot
Software Property MapSuite - The robot software suite used by the simulation application.
- simulation
Software Property MapSuite - The simulation software suite used by the simulation application.
- current
Revision StringId - The current revision id.
- environment String
- The URI of the Docker image for the robot application.
- name String
- The name of the simulation application.
- rendering
Engine Property Map - The rendering engine for the simulation application.
- sources List<Property Map>
- The sources of the simulation application.
- Map<String>
- A map that contains tag keys and tag values that are attached to the simulation application.
Outputs
All input properties are implicitly available as output properties. Additionally, the SimulationApplication resource produces the following output properties:
Supporting Types
SimulationApplicationRenderingEngine, SimulationApplicationRenderingEngineArgs
- Name
Pulumi.
Aws Native. Robo Maker. Simulation Application Rendering Engine Name - The name of the rendering engine.
- Version string
- The version of the rendering engine.
- Name
Simulation
Application Rendering Engine Name - The name of the rendering engine.
- Version string
- The version of the rendering engine.
- name
Simulation
Application Rendering Engine Name - The name of the rendering engine.
- version String
- The version of the rendering engine.
- name
Simulation
Application Rendering Engine Name - The name of the rendering engine.
- version string
- The version of the rendering engine.
- name
Simulation
Application Rendering Engine Name - The name of the rendering engine.
- version str
- The version of the rendering engine.
SimulationApplicationRenderingEngineName, SimulationApplicationRenderingEngineNameArgs
- Ogre
- OGRE
- Simulation
Application Rendering Engine Name Ogre - OGRE
- Ogre
- OGRE
- Ogre
- OGRE
- OGRE
- OGRE
- "OGRE"
- OGRE
SimulationApplicationRobotSoftwareSuite, SimulationApplicationRobotSoftwareSuiteArgs
- Name
Pulumi.
Aws Native. Robo Maker. Simulation Application Robot Software Suite Name - The name of the robot software suite.
- Version
Pulumi.
Aws Native. Robo Maker. Simulation Application Robot Software Suite Version - The version of the robot software suite.
- Name
Simulation
Application Robot Software Suite Name - The name of the robot software suite.
- Version
Simulation
Application Robot Software Suite Version - The version of the robot software suite.
- name
Simulation
Application Robot Software Suite Name - The name of the robot software suite.
- version
Simulation
Application Robot Software Suite Version - The version of the robot software suite.
- name
Simulation
Application Robot Software Suite Name - The name of the robot software suite.
- version
Simulation
Application Robot Software Suite Version - The version of the robot software suite.
- name
Simulation
Application Robot Software Suite Name - The name of the robot software suite.
- version
Simulation
Application Robot Software Suite Version - The version of the robot software suite.
- name "ROS" | "ROS2" | "General"
- The name of the robot software suite.
- version "Kinetic" | "Melodic" | "Dashing" | "Foxy"
- The version of the robot software suite.
SimulationApplicationRobotSoftwareSuiteName, SimulationApplicationRobotSoftwareSuiteNameArgs
- Ros
- ROS
- Ros2
- ROS2
- General
- General
- Simulation
Application Robot Software Suite Name Ros - ROS
- Simulation
Application Robot Software Suite Name Ros2 - ROS2
- Simulation
Application Robot Software Suite Name General - General
- Ros
- ROS
- Ros2
- ROS2
- General
- General
- Ros
- ROS
- Ros2
- ROS2
- General
- General
- ROS
- ROS
- ROS2
- ROS2
- GENERAL
- General
- "ROS"
- ROS
- "ROS2"
- ROS2
- "General"
- General
SimulationApplicationRobotSoftwareSuiteVersion, SimulationApplicationRobotSoftwareSuiteVersionArgs
- Kinetic
- Kinetic
- Melodic
- Melodic
- Dashing
- Dashing
- Foxy
- Foxy
- Simulation
Application Robot Software Suite Version Kinetic - Kinetic
- Simulation
Application Robot Software Suite Version Melodic - Melodic
- Simulation
Application Robot Software Suite Version Dashing - Dashing
- Simulation
Application Robot Software Suite Version Foxy - Foxy
- Kinetic
- Kinetic
- Melodic
- Melodic
- Dashing
- Dashing
- Foxy
- Foxy
- Kinetic
- Kinetic
- Melodic
- Melodic
- Dashing
- Dashing
- Foxy
- Foxy
- KINETIC
- Kinetic
- MELODIC
- Melodic
- DASHING
- Dashing
- FOXY
- Foxy
- "Kinetic"
- Kinetic
- "Melodic"
- Melodic
- "Dashing"
- Dashing
- "Foxy"
- Foxy
SimulationApplicationSimulationSoftwareSuite, SimulationApplicationSimulationSoftwareSuiteArgs
- Name
Pulumi.
Aws Native. Robo Maker. Simulation Application Simulation Software Suite Name - The name of the simulation software suite.
- Version
Pulumi.
Aws Native. Robo Maker. Simulation Application Simulation Software Suite Version - The version of the simulation software suite.
- Name
Simulation
Application Simulation Software Suite Name - The name of the simulation software suite.
- Version
Simulation
Application Simulation Software Suite Version - The version of the simulation software suite.
- name
Simulation
Application Simulation Software Suite Name - The name of the simulation software suite.
- version
Simulation
Application Simulation Software Suite Version - The version of the simulation software suite.
- name
Simulation
Application Simulation Software Suite Name - The name of the simulation software suite.
- version
Simulation
Application Simulation Software Suite Version - The version of the simulation software suite.
- name
Simulation
Application Simulation Software Suite Name - The name of the simulation software suite.
- version
Simulation
Application Simulation Software Suite Version - The version of the simulation software suite.
- name
"Gazebo" | "Rosbag
Play" | "Simulation Runtime" - The name of the simulation software suite.
- version "7" | "9" | "11" | "Kinetic" | "Melodic" | "Dashing" | "Foxy"
- The version of the simulation software suite.
SimulationApplicationSimulationSoftwareSuiteName, SimulationApplicationSimulationSoftwareSuiteNameArgs
- Gazebo
- Gazebo
- Rosbag
Play - RosbagPlay
- Simulation
Runtime - SimulationRuntime
- Simulation
Application Simulation Software Suite Name Gazebo - Gazebo
- Simulation
Application Simulation Software Suite Name Rosbag Play - RosbagPlay
- Simulation
Application Simulation Software Suite Name Simulation Runtime - SimulationRuntime
- Gazebo
- Gazebo
- Rosbag
Play - RosbagPlay
- Simulation
Runtime - SimulationRuntime
- Gazebo
- Gazebo
- Rosbag
Play - RosbagPlay
- Simulation
Runtime - SimulationRuntime
- GAZEBO
- Gazebo
- ROSBAG_PLAY
- RosbagPlay
- SIMULATION_RUNTIME
- SimulationRuntime
- "Gazebo"
- Gazebo
- "Rosbag
Play" - RosbagPlay
- "Simulation
Runtime" - SimulationRuntime
SimulationApplicationSimulationSoftwareSuiteVersion, SimulationApplicationSimulationSoftwareSuiteVersionArgs
- Seven
- 7
- Nine
- 9
- Simulation
Application Simulation Software Suite Version_11 - 11
- Kinetic
- Kinetic
- Melodic
- Melodic
- Dashing
- Dashing
- Foxy
- Foxy
- Simulation
Application Simulation Software Suite Version Seven - 7
- Simulation
Application Simulation Software Suite Version Nine - 9
- Simulation
Application Simulation Software Suite Version_11 - 11
- Simulation
Application Simulation Software Suite Version Kinetic - Kinetic
- Simulation
Application Simulation Software Suite Version Melodic - Melodic
- Simulation
Application Simulation Software Suite Version Dashing - Dashing
- Simulation
Application Simulation Software Suite Version Foxy - Foxy
- Seven
- 7
- Nine
- 9
- _11
- 11
- Kinetic
- Kinetic
- Melodic
- Melodic
- Dashing
- Dashing
- Foxy
- Foxy
- Seven
- 7
- Nine
- 9
- Simulation
Application Simulation Software Suite Version_11 - 11
- Kinetic
- Kinetic
- Melodic
- Melodic
- Dashing
- Dashing
- Foxy
- Foxy
- SEVEN
- 7
- NINE
- 9
- SIMULATION_APPLICATION_SIMULATION_SOFTWARE_SUITE_VERSION_11
- 11
- KINETIC
- Kinetic
- MELODIC
- Melodic
- DASHING
- Dashing
- FOXY
- Foxy
- "7"
- 7
- "9"
- 9
- "11"
- 11
- "Kinetic"
- Kinetic
- "Melodic"
- Melodic
- "Dashing"
- Dashing
- "Foxy"
- Foxy
SimulationApplicationSourceConfig, SimulationApplicationSourceConfigArgs
- Architecture
Pulumi.
Aws Native. Robo Maker. Simulation Application Source Config Architecture - The target processor architecture for the application.
- S3Bucket string
- The Amazon S3 bucket name.
- S3Key string
- The s3 object key.
- Architecture
Simulation
Application Source Config Architecture - The target processor architecture for the application.
- S3Bucket string
- The Amazon S3 bucket name.
- S3Key string
- The s3 object key.
- architecture
Simulation
Application Source Config Architecture - The target processor architecture for the application.
- s3Bucket String
- The Amazon S3 bucket name.
- s3Key String
- The s3 object key.
- architecture
Simulation
Application Source Config Architecture - The target processor architecture for the application.
- s3Bucket string
- The Amazon S3 bucket name.
- s3Key string
- The s3 object key.
- architecture
Simulation
Application Source Config Architecture - The target processor architecture for the application.
- s3_
bucket str - The Amazon S3 bucket name.
- s3_
key str - The s3 object key.
- architecture "X86_64" | "ARM64" | "ARMHF"
- The target processor architecture for the application.
- s3Bucket String
- The Amazon S3 bucket name.
- s3Key String
- The s3 object key.
SimulationApplicationSourceConfigArchitecture, SimulationApplicationSourceConfigArchitectureArgs
- X8664
- X86_64
- Arm64
- ARM64
- Armhf
- ARMHF
- Simulation
Application Source Config Architecture X8664 - X86_64
- Simulation
Application Source Config Architecture Arm64 - ARM64
- Simulation
Application Source Config Architecture Armhf - ARMHF
- X8664
- X86_64
- Arm64
- ARM64
- Armhf
- ARMHF
- X8664
- X86_64
- Arm64
- ARM64
- Armhf
- ARMHF
- X8664
- X86_64
- ARM64
- ARM64
- ARMHF
- ARMHF
- "X86_64"
- X86_64
- "ARM64"
- ARM64
- "ARMHF"
- ARMHF
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.