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();
 
  • Method Details

    • getProjectName

      @Stability(Stable) @NotNull String getProjectName()
      The name of the project containing the placement.
    • getAssociatedDevices

      @Stability(Stable) @Nullable default Object 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

      @Stability(Stable) @Nullable default Object getAttributes()
      The user-defined attributes associated with the placement.
    • getPlacementName

      @Stability(Stable) @Nullable default String getPlacementName()
      The name of the placement.
    • builder

      @Stability(Stable) static CfnPlacementProps.Builder builder()
      Returns:
      a CfnPlacementProps.Builder of CfnPlacementProps