Module Values.AssociatedSourceSource

Information about a source association in a resource share. Source associations control which sources can be used with service principals.

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

    The Amazon Resource Name (ARN) of the resource share that contains the source association.

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

    The identifier of the source. This can be an account ID, Amazon Resource Name (ARN), organization ID, or organization path.

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

    The type of source.

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

    The current status of the source association.

    *)
  5. lastUpdatedTime : DateTime.t option;
    (*

    The date and time when the source association was last updated.

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

    The date and time when the source association was created.

    *)
  7. statusMessage : String_.t option;
    (*

    A message about the status of the source association.

    *)
}
Sourceval make : ?resourceShareArn:??? -> ?sourceId:??? -> ?sourceType:??? -> ?status:??? -> ?lastUpdatedTime:??? -> ?creationTime:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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