Skip to content

Create Sol Network Instance

telconetworkbuilder_create_sol_network_instance R Documentation

Creates a network instance

Description

Creates a network instance.

A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed. Creating a network instance is the third step after creating a network package. For more information about network instances, Network instances in the Amazon Web Services Telco Network Builder User Guide.

Once you create a network instance, you can instantiate it. To instantiate a network, see instantiate_sol_network_instance.

Usage

telconetworkbuilder_create_sol_network_instance(nsDescription, nsName,
  nsdInfoId, tags)

Arguments

nsDescription

Network instance description.

nsName

[required] Network instance name.

nsdInfoId

[required] ID for network service descriptor.

tags

A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.

Value

A list with the following syntax:

list(
  arn = "string",
  id = "string",
  nsInstanceName = "string",
  nsdInfoId = "string",
  tags = list(
    "string"
  )
)

Request syntax

svc$create_sol_network_instance(
  nsDescription = "string",
  nsName = "string",
  nsdInfoId = "string",
  tags = list(
    "string"
  )
)