public static interface SigningJob.Builder extends SdkPojo, CopyableBuilder<SigningJob.Builder,SigningJob>
Modifier and Type | Method and Description |
---|---|
SigningJob.Builder |
createdAt(Instant createdAt)
The date and time that the signing job was created.
|
SigningJob.Builder |
jobId(String jobId)
The ID of the signing job.
|
default SigningJob.Builder |
signedObject(Consumer<SignedObject.Builder> signedObject)
A
SignedObject structure that contains information about a signing job's signed code image. |
SigningJob.Builder |
signedObject(SignedObject signedObject)
A
SignedObject structure that contains information about a signing job's signed code image. |
default SigningJob.Builder |
signingMaterial(Consumer<SigningMaterial.Builder> signingMaterial)
A
SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used
for the signing job. |
SigningJob.Builder |
signingMaterial(SigningMaterial signingMaterial)
A
SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used
for the signing job. |
default SigningJob.Builder |
source(Consumer<Source.Builder> source)
A
Source that contains information about a signing job's code image source. |
SigningJob.Builder |
source(Source source)
A
Source that contains information about a signing job's code image source. |
SigningJob.Builder |
status(SigningStatus status)
The status of the signing job.
|
SigningJob.Builder |
status(String status)
The status of the signing job.
|
copy
applyMutation, build
SigningJob.Builder jobId(String jobId)
The ID of the signing job.
jobId
- The ID of the signing job.SigningJob.Builder source(Source source)
A Source
that contains information about a signing job's code image source.
source
- A Source
that contains information about a signing job's code image source.default SigningJob.Builder source(Consumer<Source.Builder> source)
A Source
that contains information about a signing job's code image source.
Source.Builder
avoiding the need to create one
manually via Source.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result is
passed to source(Source)
.source
- a consumer that will call methods on Source.Builder
source(Source)
SigningJob.Builder signedObject(SignedObject signedObject)
A SignedObject
structure that contains information about a signing job's signed code image.
signedObject
- A SignedObject
structure that contains information about a signing job's signed code
image.default SigningJob.Builder signedObject(Consumer<SignedObject.Builder> signedObject)
A SignedObject
structure that contains information about a signing job's signed code image.
SignedObject.Builder
avoiding the need to
create one manually via SignedObject.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to signedObject(SignedObject)
.signedObject
- a consumer that will call methods on SignedObject.Builder
signedObject(SignedObject)
SigningJob.Builder signingMaterial(SigningMaterial signingMaterial)
A SigningMaterial
object that contains the Amazon Resource Name (ARN) of the certificate used
for the signing job.
signingMaterial
- A SigningMaterial
object that contains the Amazon Resource Name (ARN) of the certificate
used for the signing job.default SigningJob.Builder signingMaterial(Consumer<SigningMaterial.Builder> signingMaterial)
A SigningMaterial
object that contains the Amazon Resource Name (ARN) of the certificate used
for the signing job.
SigningMaterial.Builder
avoiding the need to
create one manually via SigningMaterial.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to signingMaterial(SigningMaterial)
.signingMaterial
- a consumer that will call methods on SigningMaterial.Builder
signingMaterial(SigningMaterial)
SigningJob.Builder createdAt(Instant createdAt)
The date and time that the signing job was created.
createdAt
- The date and time that the signing job was created.SigningJob.Builder status(String status)
The status of the signing job.
status
- The status of the signing job.SigningStatus
,
SigningStatus
SigningJob.Builder status(SigningStatus status)
The status of the signing job.
status
- The status of the signing job.SigningStatus
,
SigningStatus
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.