Struct aws_sdk_transcribe::model::JobExecutionSettings [−][src]
#[non_exhaustive]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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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.
Note that job queuing is enabled by default for call analytics jobs.
If you specify the AllowDeferredExecution field, you must specify the
DataAccessRoleArn field.
data_access_role_arn: Option<String>The Amazon Resource Name (ARN), in the form
arn:partition:service:region:account-id:resource-type/resource-id, 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.
Implementations
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.
Note that job queuing is enabled by default for call analytics jobs.
If you specify the AllowDeferredExecution field, you must specify the
DataAccessRoleArn field.
The Amazon Resource Name (ARN), in the form
arn:partition:service:region:account-id:resource-type/resource-id, 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.
Creates a new builder-style object to manufacture JobExecutionSettings
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for JobExecutionSettings
impl Send for JobExecutionSettings
impl Sync for JobExecutionSettings
impl Unpin for JobExecutionSettings
impl UnwindSafe for JobExecutionSettings
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more