DescribeCompilationJobResponse

public struct DescribeCompilationJobResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The time when the model compilation job on a compilation job instance ended. For a successful or stopped job, this is when the job’s model artifacts have finished uploading. For a failed job, this is when Amazon SageMaker detected that the job failed.

    Declaration

    Swift

    public let compilationEndTime: TimeStamp?
  • The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker assumes to perform the model compilation job.

    Declaration

    Swift

    public let compilationJobArn: String
  • The name of the model compilation job.

    Declaration

    Swift

    public let compilationJobName: String
  • The status of the model compilation job.

    Declaration

    Swift

    public let compilationJobStatus: CompilationJobStatus
  • The time when the model compilation job started the CompilationJob instances. You are billed for the time between this timestamp and the timestamp in the DescribeCompilationJobResponse$CompilationEndTime field. In Amazon CloudWatch Logs, the start time might be later than this time. That’s because it takes time to download the compilation job, which depends on the size of the compilation job container.

    Declaration

    Swift

    public let compilationStartTime: TimeStamp?
  • The time that the model compilation job was created.

    Declaration

    Swift

    public let creationTime: TimeStamp
  • If a model compilation job failed, the reason it failed.

    Declaration

    Swift

    public let failureReason: String
  • Information about the location in Amazon S3 of the input model artifacts, the name and shape of the expected data inputs, and the framework in which the model was trained.

    Declaration

    Swift

    public let inputConfig: InputConfig
  • The time that the status of the model compilation job was last modified.

    Declaration

    Swift

    public let lastModifiedTime: TimeStamp
  • Information about the location in Amazon S3 that has been configured for storing the model artifacts used in the compilation job.

    Declaration

    Swift

    public let modelArtifacts: ModelArtifacts
  • Information about the output location for the compiled model and the target device that the model runs on.

    Declaration

    Swift

    public let outputConfig: OutputConfig
  • The Amazon Resource Name (ARN) of the model compilation job.

    Declaration

    Swift

    public let roleArn: String
  • Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training costs.

    Declaration

    Swift

    public let stoppingCondition: StoppingCondition
  • Undocumented

    Declaration

    Swift

    public init(compilationEndTime: TimeStamp? = nil, compilationJobArn: String, compilationJobName: String, compilationJobStatus: CompilationJobStatus, compilationStartTime: TimeStamp? = nil, creationTime: TimeStamp, failureReason: String, inputConfig: InputConfig, lastModifiedTime: TimeStamp, modelArtifacts: ModelArtifacts, outputConfig: OutputConfig, roleArn: String, stoppingCondition: StoppingCondition)