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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlacementProps
static final class
An implementation forCfnPlacementProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPlacementProps.Builder
builder()
default Object
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.default Object
The user-defined attributes associated with the placement.default String
The 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.Builder
ofCfnPlacementProps
-