Interface CfnSigningJobPropsMixin.SourceProperty

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

@Stability(Stable) public static interface CfnSigningJobPropsMixin.SourceProperty extends software.amazon.jsii.JsiiSerializable
Information about the 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.*;
 SourceProperty sourceProperty = SourceProperty.builder()
         .s3(S3SourceProperty.builder()
                 .bucketName("bucketName")
                 .key("key")
                 .version("version")
                 .build())
         .build();
 

See Also: