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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSigningJobPropsMixin.SourcePropertystatic final classAn implementation forCfnSigningJobPropsMixin.SourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
Information about the Amazon S3 bucket where unsigned code is stored.Returns union: either
IResolvableorCfnSigningJobPropsMixin.S3SourceProperty- See Also:
-
builder
-