Module Values.LicenseConfigurationAssociationSource

Describes an association with a license configuration.

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

    Amazon Resource Name (ARN) of the resource.

    *)
  2. resourceType : ResourceType.t option;
    (*

    Type of server resource.

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

    ID of the Amazon Web Services account that owns the resource consuming licenses.

    *)
  4. associationTime : DateTime.t option;
    (*

    Time when the license configuration was associated with the resource.

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

    Scope of AMI associations. The possible value is cross-account.

    *)
}
Sourceval make : ?resourceArn:??? -> ?resourceType:??? -> ?resourceOwnerId:??? -> ?associationTime:??? -> ?amiAssociationScope:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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