pub struct JobExecutionSettings {
pub allow_deferred_execution: Option<bool>,
pub data_access_role_arn: Option<String>,
}Expand description
Provides information about when a transcription job should be executed.
Fields§
§allow_deferred_execution: Option<bool>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.
data_access_role_arn: Option<String>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.
Trait Implementations§
Source§impl Clone for JobExecutionSettings
impl Clone for JobExecutionSettings
Source§fn clone(&self) -> JobExecutionSettings
fn clone(&self) -> JobExecutionSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more