Module Values.UpdateSolNetworkInstanceInputSource

Update 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. Choose the updateType parameter to target the necessary update of the network instance.

Sourcetype nonrec t = {
  1. modifyVnfInfoData : UpdateSolNetworkModify.t option;
    (*

    Identifies the network function information parameters and/or the configurable properties of the network function to be modified. Include this property only if the update type is MODIFY_VNF_INFORMATION.

    *)
  2. nsInstanceId : NsInstanceId.t;
    (*

    ID of the network instance.

    *)
  3. tags : TagMap.t option;
    (*

    A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are only applied to the network operation that is created. These tags are not applied to the network instance. Use tags to search and filter your resources or track your Amazon Web Services costs.

    *)
  4. updateNs : UpdateSolNetworkServiceData.t option;
    (*

    Identifies the network service descriptor and the configurable properties of the descriptor, to be used for the update. Include this property only if the update type is UPDATE_NS.

    *)
  5. updateType : UpdateSolNetworkType.t;
    (*

    The type of update. Use the MODIFY_VNF_INFORMATION update type, to update a specific network function configuration, in the network instance. Use the UPDATE_NS update type, to update the network instance to a new network service descriptor.

    *)
}
Sourceval context_ : string
Sourceval make : ?modifyVnfInfoData:??? -> ?tags:??? -> ?updateNs:??? -> nsInstanceId:NsInstanceId.t -> updateType:UpdateSolNetworkType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NsInstanceId.t | `Structure of (string * [> `String of VnfInstanceId.t | `Structure of 'a list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t