Module Values.ShareInvitationSummarySource

A share invitation summary return object.

Sourcetype nonrec t = {
  1. shareInvitationId : ShareInvitationId.t option;
    (*

    The ID assigned to the share invitation.

    *)
  2. sharedBy : AwsAccountId.t option;
  3. sharedWith : SharedWith.t option;
  4. permissionType : PermissionType.t option;
  5. shareResourceType : ShareResourceType.t option;
    (*

    The resource type of the share invitation.

    *)
  6. workloadName : WorkloadName.t option;
  7. workloadId : WorkloadId.t option;
  8. lensName : LensName.t option;
  9. lensArn : LensArn.t option;
    (*

    The ARN for the lens.

    *)
  10. profileName : ProfileName.t option;
    (*

    The profile name.

    *)
  11. profileArn : ProfileArn.t option;
    (*

    The profile ARN.

    *)
  12. templateName : TemplateName.t option;
    (*

    The name of the review template.

    *)
  13. templateArn : TemplateArn.t option;
    (*

    The review template ARN.

    *)
}
Sourceval make : ?shareInvitationId:??? -> ?sharedBy:??? -> ?sharedWith:??? -> ?permissionType:??? -> ?shareResourceType:??? -> ?workloadName:??? -> ?workloadId:??? -> ?lensName:??? -> ?lensArn:??? -> ?profileName:??? -> ?profileArn:??? -> ?templateName:??? -> ?templateArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ShareInvitationId.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