CreateSimulationJobRequest

public struct CreateSimulationJobRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    Declaration

    Swift

    public let clientRequestToken: String?
  • Compute information for the simulation job.

    Declaration

    Swift

    public let compute: Compute?
  • Specify data sources to mount read-only files from S3 into your simulation. These files are available under /opt/robomaker/datasources/data_source_name. There is a limit of 100 files and a combined size of 25GB for all DataSourceConfig objects.

    Declaration

    Swift

    public let dataSources: [DataSourceConfig]?
  • The failure behavior the simulation job. Continue Restart the simulation job in the same host instance. Fail Stop the simulation job and terminate the instance.

    Declaration

    Swift

    public let failureBehavior: FailureBehavior?
  • The IAM role name that allows the simulation instance to call the AWS APIs that are specified in its associated policies on your behalf. This is how credentials are passed in to your simulation job.

    Declaration

    Swift

    public let iamRole: String
  • The logging configuration.

    Declaration

    Swift

    public let loggingConfig: LoggingConfig?
  • The maximum simulation job duration in seconds (up to 14 days or 1,209,600 seconds. When maxJobDurationInSeconds is reached, the simulation job will status will transition to Completed.

    Declaration

    Swift

    public let maxJobDurationInSeconds: Int64
  • Location for output files generated by the simulation job.

    Declaration

    Swift

    public let outputLocation: OutputLocation?
  • The robot application to use in the simulation job.

    Declaration

    Swift

    public let robotApplications: [RobotApplicationConfig]?
  • The simulation application to use in the simulation job.

    Declaration

    Swift

    public let simulationApplications: [SimulationApplicationConfig]?
  • A map that contains tag keys and tag values that are attached to the simulation job.

    Declaration

    Swift

    public let tags: [String : String]?
  • If your simulation job accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one subnet ID.

    Declaration

    Swift

    public let vpcConfig: VPCConfig?
  • Undocumented

    Declaration

    Swift

    public init(clientRequestToken: String? = CreateSimulationJobRequest.idempotencyToken(), compute: Compute? = nil, dataSources: [DataSourceConfig]? = nil, failureBehavior: FailureBehavior? = nil, iamRole: String, loggingConfig: LoggingConfig? = nil, maxJobDurationInSeconds: Int64, outputLocation: OutputLocation? = nil, robotApplications: [RobotApplicationConfig]? = nil, simulationApplications: [SimulationApplicationConfig]? = nil, tags: [String : String]? = nil, vpcConfig: VPCConfig? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws