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

Class: Aws::IoT1ClickProjects::Types::UpdateProjectRequest

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

Overview

Note:

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

{
  project_name: "ProjectName", # required
  description: "Description",
  placement_template: {
    default_attributes: {
      "AttributeName" => "AttributeDefaultValue",
    },
    device_templates: {
      "DeviceTemplateName" => {
        device_type: "DeviceType",
        callback_overrides: {
          "DeviceCallbackKey" => "DeviceCallbackValue",
        },
      },
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

An optional user-defined description for the project.

Returns:

  • (String)

    An optional user-defined description for the project.

#placement_templateTypes::PlacementTemplate

An object defining the project update. Once a project has been created, you cannot add device template names to the project. However, for a given placementTemplate, you can update the associated callbackOverrides for the device definition using this API.

Returns:

#project_nameString

The name of the project to be updated.

Returns:

  • (String)

    The name of the project to be updated.