interface S3SignedObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Signer.CfnSigningJob.S3SignedObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssigner#CfnSigningJob_S3SignedObjectProperty |
Java | software.amazon.awscdk.services.signer.CfnSigningJob.S3SignedObjectProperty |
Python | aws_cdk.aws_signer.CfnSigningJob.S3SignedObjectProperty |
TypeScript | aws-cdk-lib » aws_signer » CfnSigningJob » S3SignedObjectProperty |
The Amazon S3 bucket name and key where Signer saved 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 s3SignedObjectProperty: signer.CfnSigningJob.S3SignedObjectProperty = {
bucketName: 'bucketName',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | Name of the S3 bucket. |
| key? | string | Key name that uniquely identifies a signed code image in the bucket. |
bucketName?
Type:
string
(optional)
Name of the S3 bucket.
key?
Type:
string
(optional)
Key name that uniquely identifies a signed code image in the bucket.

.NET
Go
Java
Python
TypeScript