DescribeWorldGenerationJobResponse

public struct DescribeWorldGenerationJobResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • arn

    The Amazon Resource Name (ARN) of the world generation job.

    Declaration

    Swift

    public let arn: String?
  • Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    Declaration

    Swift

    public let clientRequestToken: String?
  • The time, in milliseconds since the epoch, when the world generation job was created.

    Declaration

    Swift

    public let createdAt: TimeStamp?
  • The failure code of the world generation job if it failed: InternalServiceError Internal service error. LimitExceeded The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed. ResourceNotFound The specified resource could not be found. RequestThrottled The request was throttled. InvalidInput An input parameter in the request is not valid.

    Declaration

    Swift

    public let failureCode: WorldGenerationJobErrorCode?
  • The reason why the world generation job failed.

    Declaration

    Swift

    public let failureReason: String?
  • Summary information about finished worlds.

    Declaration

    Swift

    public let finishedWorldsSummary: FinishedWorldsSummary?
  • The status of the world generation job: Pending The world generation job request is pending. Running The world generation job is running. Completed The world generation job completed. Failed The world generation job failed. See failureCode for more information. PartialFailed Some worlds did not generate. Canceled The world generation job was cancelled. Canceling The world generation job is being cancelled.

    Declaration

    Swift

    public let status: WorldGenerationJobStatus?
  • A map that contains tag keys and tag values that are attached to the world generation job.

    Declaration

    Swift

    public let tags: [String : String]?
  • The Amazon Resource Name (arn) of the world template.

    Declaration

    Swift

    public let template: String?
  • Information about the world count.

    Declaration

    Swift

    public let worldCount: WorldCount?
  • Undocumented

    Declaration

    Swift

    public init(arn: String? = nil, clientRequestToken: String? = nil, createdAt: TimeStamp? = nil, failureCode: WorldGenerationJobErrorCode? = nil, failureReason: String? = nil, finishedWorldsSummary: FinishedWorldsSummary? = nil, status: WorldGenerationJobStatus? = nil, tags: [String : String]? = nil, template: String? = nil, worldCount: WorldCount? = nil)