Interface CfnSoftwarePackageVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSoftwarePackageVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:21:56.533Z")
@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
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPackageName
- See Also:
-
getAttributes
- See Also:
-
getDescription
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
getVersionName
- See Also:
-
builder
-