Interface CfnSoftwarePackageVersion.SbomProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSoftwarePackageVersion.SbomProperty.Jsii$Proxy
- Enclosing class:
CfnSoftwarePackageVersion
@Stability(Stable)
public static interface CfnSoftwarePackageVersion.SbomProperty
extends software.amazon.jsii.JsiiSerializable
The sbom zip archive location of the package version.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iot.*;
SbomProperty sbomProperty = SbomProperty.builder()
.s3Location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
.version("version")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSoftwarePackageVersion.SbomPropertystatic final classAn implementation forCfnSoftwarePackageVersion.SbomProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Location
The Amazon S3 location.Returns union: either
IResolvableorCfnSoftwarePackageVersion.S3LocationProperty- See Also:
-
builder
-