interface SignedObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Signer.CfnSigningJob.SignedObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssigner#CfnSigningJob_SignedObjectProperty |
Java | software.amazon.awscdk.services.signer.CfnSigningJob.SignedObjectProperty |
Python | aws_cdk.aws_signer.CfnSigningJob.SignedObjectProperty |
TypeScript | aws-cdk-lib » aws_signer » CfnSigningJob » SignedObjectProperty |
The S3 location of the signed code image.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_signer as signer } from 'aws-cdk-lib';
const signedObjectProperty: signer.CfnSigningJob.SignedObjectProperty = {
s3: {
bucketName: 'bucketName',
key: 'key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | S3 | The Amazon S3 bucket name and key where Signer saved the signed code image. |
s3?
Type:
IResolvable | S3
(optional)
The Amazon S3 bucket name and key where Signer saved the signed code image.

.NET
Go
Java
Python
TypeScript