interface SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Signer.CfnSigningJobPropsMixin.SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssigner#CfnSigningJobPropsMixin_SourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.signer.CfnSigningJobPropsMixin.SourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_signer.CfnSigningJobPropsMixin.SourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_signer » CfnSigningJobPropsMixin » SourceProperty |
Information about the S3 bucket where unsigned code is stored.
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 sourceProperty: signer.CfnSigningJobPropsMixin.SourceProperty = {
s3: {
bucketName: 'bucketName',
key: 'key',
version: 'version',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | S3 | Information about the Amazon S3 bucket where unsigned code is stored. |
s3?
Type:
IResolvable | S3
(optional)
Information about the Amazon S3 bucket where unsigned code is stored.

.NET
Go
Java
Python
TypeScript