Interface CfnSoftwarePackageVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSoftwarePackageVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:11.251Z")
@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
.attributes(Map.of(
"attributesKey", "attributes"))
.description("description")
.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 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.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:
-
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.
- 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:
-
getTags
Metadata that can be used to manage the package version.- See Also:
-
getVersionName
The name of the new package version.- See Also:
-
builder
-