Interface CfnSigningJobPropsMixin.SignedObjectProperty

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

@Stability(Stable) public static interface CfnSigningJobPropsMixin.SignedObjectProperty extends software.amazon.jsii.JsiiSerializable
The S3 location of 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 software.amazon.awscdk.cfnpropertymixins.services.signer.*;
 SignedObjectProperty signedObjectProperty = SignedObjectProperty.builder()
         .s3(S3SignedObjectProperty.builder()
                 .bucketName("bucketName")
                 .key("key")
                 .build())
         .build();
 

See Also: