Class JobDescriptor
- All Implemented Interfaces:
- Serializable,- SdkPojo,- ToCopyableBuilder<JobDescriptor.Builder,- JobDescriptor> 
 A container element for the job configuration and status information returned by a Describe Job request.
 
- See Also:
- 
Nested Class SummaryNested Classes
- 
Method SummaryModifier and TypeMethodDescriptionstatic JobDescriptor.Builderbuilder()final BooleanIndicates whether confirmation is required before Amazon S3 begins running the specified job.final InstantA timestamp indicating when this job was created.final StringThe description for this job, if one was provided in this job'sCreate Jobrequest.final booleanfinal booleanequalsBySdkFields(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final List<JobFailure> If the specified job failed, this field contains information describing the failure.The attribute of the JobDescriptor containing details about the job's generated manifest.final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) final booleanFor responses, this returns true if the service returned a value for the FailureReasons property.final inthashCode()final StringjobArn()The Amazon Resource Name (ARN) for this job.final StringjobId()The ID for the specified job.final JobManifestmanifest()The configuration information for the specified job's manifest object.final JobManifestGeneratorThe manifest generator that was used to generate a job manifest for this job.final JobOperationThe operation that the specified job is configured to run on the objects listed in the manifest.final Integerpriority()The priority of the specified job.final JobProgressSummaryDescribes the total number of tasks that the specified job has run, the number of tasks that succeeded, and the number of tasks that failed.final JobReportreport()Contains the configuration information for the job-completion report if you requested one in theCreate Jobrequest.final StringroleArn()The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role assigned to run the tasks for this job.static Class<? extends JobDescriptor.Builder> final JobStatusstatus()The current status of the specified job.final StringThe current status of the specified job.final StringThe reason for updating the job.final StringThe reason why the specified job was suspended.final InstantThe timestamp when this job was suspended, if it has been suspended.final InstantA timestamp indicating when this job terminated.Take this object and create a builder that contains all of the current property values of this object.final StringtoString()Returns a string representation of this object.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuildercopy
- 
Method Details- 
jobId
- 
confirmationRequiredIndicates whether confirmation is required before Amazon S3 begins running the specified job. Confirmation is required only for jobs created through the Amazon S3 console. - Returns:
- Indicates whether confirmation is required before Amazon S3 begins running the specified job. Confirmation is required only for jobs created through the Amazon S3 console.
 
- 
descriptionThe description for this job, if one was provided in this job's Create Jobrequest.- Returns:
- The description for this job, if one was provided in this job's Create Jobrequest.
 
- 
jobArnThe Amazon Resource Name (ARN) for this job. - Returns:
- The Amazon Resource Name (ARN) for this job.
 
- 
statusThe current status of the specified job. If the service returns an enum value that is not available in the current SDK version, statuswill returnJobStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromstatusAsString().- Returns:
- The current status of the specified job.
- See Also:
 
- 
statusAsStringThe current status of the specified job. If the service returns an enum value that is not available in the current SDK version, statuswill returnJobStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromstatusAsString().- Returns:
- The current status of the specified job.
- See Also:
 
- 
manifestThe configuration information for the specified job's manifest object. - Returns:
- The configuration information for the specified job's manifest object.
 
- 
operationThe operation that the specified job is configured to run on the objects listed in the manifest. - Returns:
- The operation that the specified job is configured to run on the objects listed in the manifest.
 
- 
priorityThe priority of the specified job. - Returns:
- The priority of the specified job.
 
- 
progressSummaryDescribes the total number of tasks that the specified job has run, the number of tasks that succeeded, and the number of tasks that failed. - Returns:
- Describes the total number of tasks that the specified job has run, the number of tasks that succeeded, and the number of tasks that failed.
 
- 
statusUpdateReasonThe reason for updating the job. - Returns:
- The reason for updating the job.
 
- 
hasFailureReasonspublic final boolean hasFailureReasons()For responses, this returns true if the service returned a value for the FailureReasons property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
- 
failureReasonsIf the specified job failed, this field contains information describing the failure. Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the hasFailureReasons()method.- Returns:
- If the specified job failed, this field contains information describing the failure.
 
- 
reportContains the configuration information for the job-completion report if you requested one in the Create Jobrequest.- Returns:
- Contains the configuration information for the job-completion report if you requested one in the
         Create Jobrequest.
 
- 
creationTimeA timestamp indicating when this job was created. - Returns:
- A timestamp indicating when this job was created.
 
- 
terminationDateA timestamp indicating when this job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled. - Returns:
- A timestamp indicating when this job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled.
 
- 
roleArnThe Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role assigned to run the tasks for this job. - Returns:
- The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role assigned to run the tasks for this job.
 
- 
suspendedDateThe timestamp when this job was suspended, if it has been suspended. - Returns:
- The timestamp when this job was suspended, if it has been suspended.
 
- 
suspendedCauseThe reason why the specified job was suspended. A job is only suspended if you create it through the Amazon S3 console. When you create the job, it enters the Suspendedstate to await confirmation before running. After you confirm the job, it automatically exits theSuspendedstate.- Returns:
- The reason why the specified job was suspended. A job is only suspended if you create it through the
         Amazon S3 console. When you create the job, it enters the Suspendedstate to await confirmation before running. After you confirm the job, it automatically exits theSuspendedstate.
 
- 
manifestGeneratorThe manifest generator that was used to generate a job manifest for this job. - Returns:
- The manifest generator that was used to generate a job manifest for this job.
 
- 
generatedManifestDescriptorThe attribute of the JobDescriptor containing details about the job's generated manifest. - Returns:
- The attribute of the JobDescriptor containing details about the job's generated manifest.
 
- 
toBuilderDescription copied from interface:ToCopyableBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
- toBuilderin interface- ToCopyableBuilder<JobDescriptor.Builder,- JobDescriptor> 
- Returns:
- a builder for type T
 
- 
builder
- 
serializableBuilderClass
- 
hashCode
- 
equals
- 
equalsBySdkFieldsDescription copied from interface:SdkPojoIndicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojoclass, and is generated based on a service model.If an SdkPojoclass does not have any inherited fields,equalsBySdkFieldsandequalsare essentially the same.- Specified by:
- equalsBySdkFieldsin interface- SdkPojo
- Parameters:
- obj- the object to be compared with
- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
 
- 
toString
- 
getValueForField
- 
sdkFields
- 
sdkFieldNameToField- Specified by:
- sdkFieldNameToFieldin interface- SdkPojo
- Returns:
- The mapping between the field name and its corresponding field.
 
 
-