Interface CfnSoftwarePackageVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSoftwarePackageVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-11T15:56:00.222Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSoftwarePackageVersionProps
static final class
An 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
-