Skip to main content

sol_network_package_descriptors

Creates, updates, deletes, gets or lists a sol_network_package_descriptors resource.

Overview

Namesol_network_package_descriptors
TypeResource
Idaws.tnb.sol_network_package_descriptors

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
content_typestringIndicates the media type of the resource. (text/plain)
nsdstring (byte)Contents of the network service descriptor in the network package.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_sol_network_package_descriptorselectnsd_info_id, regionGets the content of the network service descriptor. A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
nsd_info_idstringID of the network service descriptor in the network package.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the content of the network service descriptor. A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.

SELECT
content_type,
nsd
FROM aws.tnb.sol_network_package_descriptors
WHERE nsd_info_id = '{{ nsd_info_id }}' -- required
AND region = '{{ region }}' -- required
;