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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSigningJobPropsMixin.SignedObjectPropertystatic final classAn implementation forCfnSigningJobPropsMixin.SignedObjectProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
The Amazon S3 bucket name and key where Signer saved the signed code image.Returns union: either
IResolvableorCfnSigningJobPropsMixin.S3SignedObjectProperty- See Also:
-
builder
-