Module Values_2.IamInstanceProfileAssociationSource

Describes an association between an IAM instance profile and an instance.

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

    The ID of the association.

    *)
  2. instanceId : Values_0.String_.t option;
    (*

    The ID of the instance.

    *)
  3. iamInstanceProfile : Values_0.IamInstanceProfile.t option;
    (*

    The IAM instance profile.

    *)
  4. state : Values_1.IamInstanceProfileAssociationState.t option;
    (*

    The state of the association.

    *)
  5. timestamp : Values_0.DateTime.t option;
    (*

    The time the IAM instance profile was associated with the instance.

    *)
}
Sourceval make : ?associationId:??? -> ?instanceId:??? -> ?iamInstanceProfile:??? -> ?state:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.t | `Structure of (string * [> `String of string ]) list | `Timestamp of Values_0.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