Module Values.DescribedProfileSource

The details for a local or partner AS2 profile.

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

    The unique Amazon Resource Name (ARN) for the profile.

    *)
  2. profileId : ProfileId.t option;
    (*

    A unique identifier for the local or partner AS2 profile.

    *)
  3. profileType : ProfileType.t option;
    (*

    Indicates whether to list only LOCAL type profiles or only PARTNER type profiles. If not supplied in the request, the command lists all types of profiles.

    *)
  4. as2Id : As2Id.t option;
    (*

    The As2Id is the AS2-name, as defined in the RFC 4130. For inbound transfers, this is the AS2-From header for the AS2 messages sent from the partner. For outbound connectors, this is the AS2-To header for the AS2 messages sent to the partner using the StartFileTransfer API operation. This ID cannot include spaces.

    *)
  5. certificateIds : CertificateIds.t option;
    (*

    An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.

    *)
  6. tags : Tags.t option;
    (*

    Key-value pairs that can be used to group and search for profiles.

    *)
}
Sourceval make : ?arn:??? -> ?profileId:??? -> ?profileType:??? -> ?as2Id:??? -> ?certificateIds:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of CertificateId.t | `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Arn.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