Module Values.ResourceShareInvitationSource

Describes an invitation for an Amazon Web Services account to join a resource share.

Sourcetype nonrec t = {
  1. resourceShareInvitationArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the invitation.

    *)
  2. resourceShareName : String_.t option;
    (*

    The name of the resource share.

    *)
  3. resourceShareArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the resource share

    *)
  4. senderAccountId : String_.t option;
    (*

    The ID of the Amazon Web Services account that sent the invitation.

    *)
  5. receiverAccountId : String_.t option;
    (*

    The ID of the Amazon Web Services account that received the invitation.

    *)
  6. invitationTimestamp : DateTime.t option;
    (*

    The date and time when the invitation was sent.

    *)
  7. status : ResourceShareInvitationStatus.t option;
    (*

    The current status of the invitation.

    *)
  8. resourceShareAssociations : ResourceShareAssociationList.t option;
    (*

    To view the resources associated with a pending resource share invitation, use ListPendingInvitationResources.

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

    The Amazon Resource Name (ARN) of the IAM user or role that received the invitation.

    *)
}
Sourceval make : ?resourceShareInvitationArn:??? -> ?resourceShareName:??? -> ?resourceShareArn:??? -> ?senderAccountId:??? -> ?receiverAccountId:??? -> ?invitationTimestamp:??? -> ?status:??? -> ?resourceShareAssociations:??? -> ?receiverArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of String_.t | `Timestamp of DateTime.t ]) list ] list | `String of String_.t | `Timestamp of DateTime.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