interface S3SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Signer.CfnSigningJobPropsMixin.S3SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssigner#CfnSigningJobPropsMixin_S3SourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.signer.CfnSigningJobPropsMixin.S3SourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_signer.CfnSigningJobPropsMixin.S3SourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_signer » CfnSigningJobPropsMixin » S3SourceProperty |
Information about the Amazon 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 s3SourceProperty: signer.CfnSigningJobPropsMixin.S3SourceProperty = {
bucketName: 'bucketName',
key: 'key',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | Name of the S3 bucket. |
| key? | string | Key name of the bucket object that contains unsigned code. |
| version? | string | Version of the source image in the version-enabled S3 bucket. |
bucketName?
Type:
string
(optional)
Name of the S3 bucket.
key?
Type:
string
(optional)
Key name of the bucket object that contains unsigned code.
version?
Type:
string
(optional)
Version of the source image in the version-enabled S3 bucket.

.NET
Go
Java
Python
TypeScript