AWS Fundamentals Logo
AWS Fundamentals
AWS::Signer::SigningJob

Signer SigningJob

Represents an AWS Signer signing job. Signing jobs are initiated via StartSigningJob and are read-only resources that provide visibility into code signing operations.

Properties

1 configurable property. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
ProfileName
string
RequiredCreate-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe ARN of the signing job.
CompletedAtstringDate and time that the signing job was completed.
CreatedAtstringDate and time that the signing job was created.
JobIdstringThe ID of the signing job.
JobInvokerstringThe IAM entity that initiated the signing job.
JobOwnerstringThe AWS account ID of the job owner.
PlatformDisplayNamestringA human-readable name for the signing platform associated with the signing job.
PlatformIdstringThe microcontroller platform to which the signed code image will be distributed.
ProfileVersionstringThe version of the signing profile used to initiate the signing job.
RequestedBystringThe IAM principal that requested the signing job.
SignatureExpiresAtstringThe expiration timestamp for the signature generated by the signing job.
SignedObjectSignedObjectThe S3 location of the signed code image.
SourceSourceThe S3 bucket that contains the object to sign.
StatusstringStatus of the signing job.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Signer::SigningJob

Resources:
  MyResource:
    Type: AWS::Signer::SigningJob
    Properties:
      ProfileName: "my-profilename"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

read

signer:DescribeSigningJob

list

signer:ListSigningJobs

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceSigner
Properties15
Required1
TaggingNot supported
Primary IDArn

Supported Operations

ReadList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ProfileName

External Links