Interface CfnSoftwarePackageVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSoftwarePackageVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-12-01T16:02:22.510Z")
@Stability(Stable)
public interface CfnSoftwarePackageVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSoftwarePackageVersion.
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.*;
CfnSoftwarePackageVersionProps cfnSoftwarePackageVersionProps = CfnSoftwarePackageVersionProps.builder()
.packageName("packageName")
// the properties below are optional
.artifact(PackageVersionArtifactProperty.builder()
.s3Location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
.version("version")
.build())
.build())
.attributes(Map.of(
"attributesKey", "attributes"))
.description("description")
.recipe("recipe")
.sbom(SbomProperty.builder()
.s3Location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
.version("version")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.versionName("versionName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSoftwarePackageVersionPropsstatic final classAn implementation forCfnSoftwarePackageVersionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe artifact location of the package version.default ObjectMetadata that can be used to define a package version’s configuration.default StringA summary of the package version being created.The name of the associated software package.default StringThe inline json job document associated with a software package version.default ObjectgetSbom()The sbom zip archive location of the package version.getTags()Metadata that can be used to manage the package version.default StringThe name of the new package version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPackageName
The name of the associated software package.- See Also:
-
getArtifact
The artifact location of the package version.Returns union: either
IResolvableorCfnSoftwarePackageVersion.PackageVersionArtifactProperty- See Also:
-
getAttributes
Metadata that can be used to define a package version’s configuration.For example, the S3 file location, configuration options that are being sent to the device or fleet.
The combined size of all the attributes on a package version is limited to 3KB.
Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getDescription
A summary of the package version being created.This can be used to outline the package's contents or purpose.
- See Also:
-
getRecipe
The inline json job document associated with a software package version.- See Also:
-
getSbom
The sbom zip archive location of the package version.Returns union: either
IResolvableorCfnSoftwarePackageVersion.SbomProperty- See Also:
-
getTags
Metadata that can be used to manage the package version.- See Also:
-
getVersionName
The name of the new package version.- See Also:
-
builder
-