Interface CfnSigningJobPropsMixin.S3SourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSigningJobPropsMixin.S3SourceProperty.Jsii$Proxy
Enclosing class:
CfnSigningJobPropsMixin

@Stability(Stable) public static interface CfnSigningJobPropsMixin.S3SourceProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.signer.*;
 S3SourceProperty s3SourceProperty = S3SourceProperty.builder()
         .bucketName("bucketName")
         .key("key")
         .version("version")
         .build();
 

See Also: