Class CfnSigningJob

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, IEnvironmentAware, ISigningJobRef, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:12.291Z") @Stability(Stable) public class CfnSigningJob extends CfnResource implements IInspectable, ISigningJobRef
Represents an AWS Signer signing job.

Signing jobs are initiated via StartSigningJob and are read-only resources that provide visibility into code signing operations.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.signer.*;
 CfnSigningJob cfnSigningJob = CfnSigningJob.Builder.create(this, "MyCfnSigningJob")
         .profileName("profileName")
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnSigningJob

      protected CfnSigningJob(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnSigningJob

      protected CfnSigningJob(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnSigningJob

      @Stability(Stable) public CfnSigningJob(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnSigningJobProps props)
      Create a new AWS::Signer::SigningJob.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • arnForSigningJob

      @Stability(Stable) @NotNull public static String arnForSigningJob(@NotNull ISigningJobRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnSigningJob

      @Stability(Stable) @NotNull public static Boolean isCfnSigningJob(@NotNull Object x)
      Checks whether the given object is a CfnSigningJob.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The ARN of the signing job.
    • getAttrCompletedAt

      @Stability(Stable) @NotNull public String getAttrCompletedAt()
      Date and time that the signing job was completed.
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      Date and time that the signing job was created.
    • getAttrJobId

      @Stability(Stable) @NotNull public String getAttrJobId()
      The ID of the signing job.
    • getAttrJobInvoker

      @Stability(Stable) @NotNull public String getAttrJobInvoker()
      The IAM entity that initiated the signing job.
    • getAttrJobOwner

      @Stability(Stable) @NotNull public String getAttrJobOwner()
      The AWS account ID of the job owner.
    • getAttrPlatformDisplayName

      @Stability(Stable) @NotNull public String getAttrPlatformDisplayName()
      A human-readable name for the signing platform associated with the signing job.
    • getAttrPlatformId

      @Stability(Stable) @NotNull public String getAttrPlatformId()
      The microcontroller platform to which the signed code image will be distributed.
    • getAttrProfileVersion

      @Stability(Stable) @NotNull public String getAttrProfileVersion()
      The version of the signing profile used to initiate the signing job.
    • getAttrRequestedBy

      @Stability(Stable) @NotNull public String getAttrRequestedBy()
      The IAM principal that requested the signing job.
    • getAttrSignatureExpiresAt

      @Stability(Stable) @NotNull public String getAttrSignatureExpiresAt()
      The expiration timestamp for the signature generated by the signing job.
    • getAttrSignedObject

      @Stability(Stable) @NotNull public IResolvable getAttrSignedObject()
      The S3 location of the signed code image.
    • getAttrSource

      @Stability(Stable) @NotNull public IResolvable getAttrSource()
      Information about the S3 bucket where unsigned code is stored.
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      Status of the signing job.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getSigningJobRef

      @Stability(Stable) @NotNull public SigningJobReference getSigningJobRef()
      A reference to a SigningJob resource.
      Specified by:
      getSigningJobRef in interface ISigningJobRef
    • getProfileName

      @Stability(Stable) @NotNull public String getProfileName()
      The name of the signing profile.
    • setProfileName

      @Stability(Stable) public void setProfileName(@NotNull String value)
      The name of the signing profile.