Class JobExecutionSettings
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<JobExecutionSettings.Builder,
JobExecutionSettings>
Makes it possible to control how your transcription job is processed. Currently, the only
JobExecutionSettings
modification you can choose is enabling job queueing using the
AllowDeferredExecution
sub-parameter.
If you include JobExecutionSettings
in your request, you must also include the sub-parameters:
AllowDeferredExecution
and DataAccessRoleArn
.
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionfinal Boolean
Makes it possible to enable job queuing when your concurrent request limit is exceeded.static JobExecutionSettings.Builder
builder()
final String
The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files.final boolean
final boolean
equalsBySdkFields
(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final <T> Optional
<T> getValueForField
(String fieldName, Class<T> clazz) final int
hashCode()
static Class
<? extends JobExecutionSettings.Builder> Take this object and create a builder that contains all of the current property values of this object.final String
toString()
Returns a string representation of this object.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
allowDeferredExecution
Makes it possible to enable job queuing when your concurrent request limit is exceeded. When
AllowDeferredExecution
is set totrue
, transcription job requests are placed in a queue until the number of jobs falls below the concurrent request limit. IfAllowDeferredExecution
is set tofalse
and the number of transcription job requests exceed the concurrent request limit, you get aLimitExceededException
error.If you include
AllowDeferredExecution
in your request, you must also includeDataAccessRoleArn
.- Returns:
- Makes it possible to enable job queuing when your concurrent request limit is exceeded. When
AllowDeferredExecution
is set totrue
, transcription job requests are placed in a queue until the number of jobs falls below the concurrent request limit. IfAllowDeferredExecution
is set tofalse
and the number of transcription job requests exceed the concurrent request limit, you get aLimitExceededException
error.If you include
AllowDeferredExecution
in your request, you must also includeDataAccessRoleArn
.
-
dataAccessRoleArn
The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files. If the role that you specify doesn’t have the appropriate permissions to access the specified Amazon S3 location, your request fails.
IAM role ARNs have the format
arn:partition:iam::account:role/role-name-with-path
. For example:arn:aws:iam::111122223333:role/Admin
. For more information, see IAM ARNs.Note that if you include
DataAccessRoleArn
in your request, you must also includeAllowDeferredExecution
.- Returns:
- The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that
contains your input files. If the role that you specify doesn’t have the appropriate permissions to
access the specified Amazon S3 location, your request fails.
IAM role ARNs have the format
arn:partition:iam::account:role/role-name-with-path
. For example:arn:aws:iam::111122223333:role/Admin
. For more information, see IAM ARNs.Note that if you include
DataAccessRoleArn
in your request, you must also includeAllowDeferredExecution
.
-
toBuilder
Description copied from interface:ToCopyableBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToCopyableBuilder<JobExecutionSettings.Builder,
JobExecutionSettings> - Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
public final int hashCode() -
equals
-
equalsBySdkFields
Description copied from interface:SdkPojo
Indicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojo
class, and is generated based on a service model.If an
SdkPojo
class does not have any inherited fields,equalsBySdkFields
andequals
are essentially the same.- Specified by:
equalsBySdkFields
in interfaceSdkPojo
- Parameters:
obj
- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value. -
getValueForField
-
sdkFields
-