Interface JobEngineVersion.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<JobEngineVersion.Builder,JobEngineVersion>
,SdkBuilder<JobEngineVersion.Builder,JobEngineVersion>
,SdkPojo
- Enclosing class:
- JobEngineVersion
public static interface JobEngineVersion.Builder extends SdkPojo, CopyableBuilder<JobEngineVersion.Builder,JobEngineVersion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobEngineVersion.Builder
expirationDate(Instant expirationDate)
The date that this Job engine version expires.JobEngineVersion.Builder
version(String version)
Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
expirationDate
JobEngineVersion.Builder expirationDate(Instant expirationDate)
The date that this Job engine version expires. Requests to create jobs with an expired version result in a regular job, as if no specific Job engine version was requested.- Parameters:
expirationDate
- The date that this Job engine version expires. Requests to create jobs with an expired version result in a regular job, as if no specific Job engine version was requested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
JobEngineVersion.Builder version(String version)
Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions are in a YYYY-MM-DD format.- Parameters:
version
- Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions are in a YYYY-MM-DD format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-