interface SignedObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Signer.CfnSigningJobPropsMixin.SignedObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssigner#CfnSigningJobPropsMixin_SignedObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.signer.CfnSigningJobPropsMixin.SignedObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_signer.CfnSigningJobPropsMixin.SignedObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_signer » CfnSigningJobPropsMixin » 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/cfn-property-mixins';
const signedObjectProperty: signer.CfnSigningJobPropsMixin.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