Interface CfnPlacementProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlacementProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:11.318Z")
@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();
- See Also:
-
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.- See Also:
-
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.- See Also:
-
getAttributes
The user-defined attributes associated with the placement.- See Also:
-
getPlacementName
The name of the placement.- See Also:
-
builder
- Returns:
- a
CfnPlacementProps.BuilderofCfnPlacementProps
-