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

Class: Aws::NetworkManager::Types::CreateSiteRequest

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of your site.

Length Constraints: Maximum length of 256 characters.

Returns:

  • (String)

    A description of your site.

#global_network_idString

The ID of the global network.

Returns:

  • (String)

    The ID of the global network.

#locationTypes::Location

The site location. This information is used for visualization in the Network Manager console. If you specify the address, the latitude and longitude are automatically calculated.

  • Address: The physical address of the site.

  • Latitude: The latitude of the site.

  • Longitude: The longitude of the site.

Returns:

#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.