You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoT1ClickProjects::Types::PlacementTemplate

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PlacementTemplate as input to an Aws::Client method, you can use a vanilla Hash:

{
  default_attributes: {
    "AttributeName" => "AttributeDefaultValue",
  },
  device_templates: {
    "DeviceTemplateName" => {
      device_type: "DeviceType",
      callback_overrides: {
        "DeviceCallbackKey" => "DeviceCallbackValue",
      },
    },
  },
}

An object defining the template for a placement.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#default_attributesHash<String,String>

The default attributes (key/value pairs) to be applied to all placements using this template.

Returns:

  • (Hash<String,String>)

    The default attributes (key/value pairs) to be applied to all placements using this template.

#device_templatesHash<String,Types::DeviceTemplate>

An object specifying the DeviceTemplate for all placements using this (PlacementTemplate) template.

Returns: