Module Values.AwsIamInstanceProfileSource

Information about an instance profile.

Sourcetype nonrec t = {
  1. arn : NonEmptyString.t option;
    (*

    The ARN of the instance profile.

    *)
  2. createDate : NonEmptyString.t option;
    (*

    Indicates when the instance profile was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  3. instanceProfileId : NonEmptyString.t option;
    (*

    The identifier of the instance profile.

    *)
  4. instanceProfileName : NonEmptyString.t option;
    (*

    The name of the instance profile.

    *)
  5. path : NonEmptyString.t option;
    (*

    The path to the instance profile.

    *)
  6. roles : AwsIamInstanceProfileRoles.t option;
    (*

    The roles associated with the instance profile.

    *)
}
Sourceval make : ?arn:??? -> ?createDate:??? -> ?instanceProfileId:??? -> ?instanceProfileName:??? -> ?path:??? -> ?roles:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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