Module Values.AssociatedResourceSource

Represents an AWS resource that is associated with a benefit application for tracking and management.

Sourcetype nonrec t = {
  1. resourceType : ResourceType.t option;
    (*

    The type of AWS resource (e.g., EC2 instance, S3 bucket, Lambda function).

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

    The unique identifier of the AWS resource within its service.

    *)
  3. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) that uniquely identifies the AWS resource.

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceIdentifier:??? -> ?resourceArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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