JobExecutionSettings

public struct JobExecutionSettings : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Indicates whether a job should be queued by Amazon Transcribe when the concurrent execution limit is exceeded. When the AllowDeferredExecution field is true, jobs are queued and executed when the number of executing jobs falls below the concurrent execution limit. If the field is false, Amazon Transcribe returns a LimitExceededException exception. If you specify the AllowDeferredExecution field, you must specify the DataAccessRoleArn field.

    Declaration

    Swift

    public let allowDeferredExecution: Bool?
  • The Amazon Resource Name (ARN) of a role that has access to the S3 bucket that contains the input files. Amazon Transcribe assumes this role to read queued media files. If you have specified an output S3 bucket for the transcription results, this role should have access to the output bucket as well. If you specify the AllowDeferredExecution field, you must specify the DataAccessRoleArn field.

    Declaration

    Swift

    public let dataAccessRoleArn: String?
  • Undocumented

    Declaration

    Swift

    public init(allowDeferredExecution: Bool? = nil, dataAccessRoleArn: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws