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

Class: Aws::NetworkManager::Types::CreateDeviceRequest

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

Overview

Note:

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

{
  global_network_id: "String", # required
  description: "String",
  type: "String",
  vendor: "String",
  model: "String",
  serial_number: "String",
  location: {
    address: "String",
    latitude: "String",
    longitude: "String",
  },
  site_id: "String",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of the device.

Length Constraints: Maximum length of 256 characters.

Returns:

  • (String)

    A description of the device.

#global_network_idString

The ID of the global network.

Returns:

  • (String)

    The ID of the global network.

#locationTypes::Location

The location of the device.

Returns:

#modelString

The model of the device.

Length Constraints: Maximum length of 128 characters.

Returns:

  • (String)

    The model of the device.

#serial_numberString

The serial number of the device.

Length Constraints: Maximum length of 128 characters.

Returns:

  • (String)

    The serial number of the device.

#site_idString

The ID of the site.

Returns:

  • (String)

    The ID of the site.

#tagsArray<Types::Tag>

The tags to apply to the resource during creation.

Returns:

  • (Array<Types::Tag>)

    The tags to apply to the resource during creation.

#typeString

The type of the device.

Returns:

  • (String)

    The type of the device.

#vendorString

The vendor of the device.

Length Constraints: Maximum length of 128 characters.

Returns:

  • (String)

    The vendor of the device.