Module Values.GetSolFunctionInstanceOutputSource

Gets the details of a network function instance, including the instantiation state and metadata from the function package descriptor in the network function package. A network function instance is a function in a function package .

Sourcetype nonrec t = {
  1. arn : VnfInstanceArn.t option;
    (*

    Network function instance ARN.

    *)
  2. id : VnfInstanceId.t option;
    (*

    Network function instance ID.

    *)
  3. instantiatedVnfInfo : GetSolVnfInfo.t option;
  4. instantiationState : VnfInstantiationState.t option;
    (*

    Network function instantiation state.

    *)
  5. metadata : GetSolFunctionInstanceMetadata.t option;
  6. nsInstanceId : NsInstanceId.t option;
    (*

    Network instance ID.

    *)
  7. 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. You can use tags to search and filter your resources or track your Amazon Web Services costs.

    *)
  8. vnfPkgId : VnfPkgId.t option;
    (*

    Function package ID.

    *)
  9. vnfProductName : String_.t option;
    (*

    Network function product name.

    *)
  10. vnfProvider : String_.t option;
    (*

    Network function provider.

    *)
  11. vnfdId : VnfdId.t option;
    (*

    Function package descriptor ID.

    *)
  12. vnfdVersion : String_.t option;
    (*

    Function package descriptor version.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?id:??? -> ?instantiatedVnfInfo:??? -> ?instantiationState:??? -> ?metadata:??? -> ?nsInstanceId:??? -> ?tags:??? -> ?vnfPkgId:??? -> ?vnfProductName:??? -> ?vnfProvider:??? -> ?vnfdId:??? -> ?vnfdVersion:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of VnfInstanceArn.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `Timestamp of SyntheticTimestamp_date_time.t ]) 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