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