interface S3SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Signer.CfnSigningJob.S3SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssigner#CfnSigningJob_S3SourceProperty |
Java | software.amazon.awscdk.services.signer.CfnSigningJob.S3SourceProperty |
Python | aws_cdk.aws_signer.CfnSigningJob.S3SourceProperty |
TypeScript | aws-cdk-lib » aws_signer » CfnSigningJob » 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-lib';
const s3SourceProperty: signer.CfnSigningJob.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
Name of the S3 bucket.
key
Type:
string
Key name of the bucket object that contains unsigned code.
version
Type:
string
Version of the source image in the version-enabled S3 bucket.

.NET
Go
Java
Python
TypeScript