Module Values.CreateAccessorOutputSource

Creates a new accessor for use with Amazon Managed Blockchain service that supports token based access. The accessor contains information required for token based access.

Sourcetype nonrec t = {
  1. accessorId : ResourceIdString.t option;
    (*

    The unique identifier of the accessor.

    *)
  2. billingToken : AccessorBillingTokenString.t option;
    (*

    The billing token is a property of the Accessor. Use this token to when making calls to the blockchain network. The billing token is used to track your accessor token for billing requests.

    *)
  3. networkType : AccessorNetworkType.t option;
    (*

    The blockchain network that the accessor token is created for.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServiceErrorException of InternalServiceErrorException.t
  3. | `InvalidRequestException of InvalidRequestException.t
  4. | `ResourceAlreadyExistsException of ResourceAlreadyExistsException.t
  5. | `ResourceLimitExceededException of ResourceLimitExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `TooManyTagsException of TooManyTagsException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?accessorId:??? -> ?billingToken:??? -> ?networkType:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of unit | `InvalidRequestException of InvalidRequestException.t | `ResourceAlreadyExistsException of ResourceAlreadyExistsException.t | `ResourceLimitExceededException of ResourceLimitExceededException.t | `ThrottlingException of unit | `TooManyTagsException of TooManyTagsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of unit | `InvalidRequestException of InvalidRequestException.t | `ResourceAlreadyExistsException of ResourceAlreadyExistsException.t | `ResourceLimitExceededException of ResourceLimitExceededException.t | `ThrottlingException of unit | `TooManyTagsException of TooManyTagsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceIdString.t ]) 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