You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::RoboMaker::Types::CreateWorldExportJobRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateWorldExportJobRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  client_request_token: "ClientRequestToken",
  worlds: ["Arn"], # required
  output_location: { # required
    s3_bucket: "S3Bucket",
    s3_prefix: "S3Key",
  },
  iam_role: "IamRole", # required
  tags: {
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#client_request_tokenString

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

Returns:

  • (String)

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

#iam_roleString

The IAM role that the world export process uses to access the Amazon S3 bucket and put the export.

Returns:

  • (String)

    The IAM role that the world export process uses to access the Amazon S3 bucket and put the export.

#output_locationTypes::OutputLocation

The output location.

Returns:

#tagsHash<String,String>

A map that contains tag keys and tag values that are attached to the world export job.

Returns:

  • (Hash<String,String>)

    A map that contains tag keys and tag values that are attached to the world export job.

#worldsArray<String>

A list of Amazon Resource Names (arns) that correspond to worlds to export.

Returns:

  • (Array<String>)

    A list of Amazon Resource Names (arns) that correspond to worlds to export.