Interface CfnPlacementProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlacementProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.730Z")
@Stability(Stable)
public interface CfnPlacementProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPlacement.
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.iot1click.*;
Object associatedDevices;
Object attributes;
CfnPlacementProps cfnPlacementProps = CfnPlacementProps.builder()
.projectName("projectName")
// the properties below are optional
.associatedDevices(associatedDevices)
.attributes(attributes)
.placementName("placementName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlacementPropsstatic final classAn implementation forCfnPlacementProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPlacementProps.Builderbuilder()default ObjectThe devices to associate with the placement, as defined by a mapping of zero or more key-value pairs wherein the key is a template name and the value is a device ID.default ObjectThe user-defined attributes associated with the placement.default StringThe name of the placement.The name of the project containing the placement.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProjectName
The name of the project containing the placement. -
getAssociatedDevices
The devices to associate with the placement, as defined by a mapping of zero or more key-value pairs wherein the key is a template name and the value is a device ID. -
getAttributes
The user-defined attributes associated with the placement. -
getPlacementName
The name of the placement. -
builder
- Returns:
- a
CfnPlacementProps.BuilderofCfnPlacementProps
-