Module Values.InstanceProfileSource

Contains information about an instance profile. This data type is used as a response element in the following operations: CreateInstanceProfile GetInstanceProfile ListInstanceProfiles ListInstanceProfilesForRole

Sourcetype nonrec t = {
  1. path : PathType.t option;
    (*

    The path to the instance profile. For more information about paths, see IAM identifiers in the IAM User Guide.

    *)
  2. instanceProfileName : InstanceProfileNameType.t option;
    (*

    The name identifying the instance profile.

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

    The stable and unique string identifying the instance profile. For more information about IDs, see IAM identifiers in the IAM User Guide.

    *)
  4. arn : ArnType.t option;
    (*

    The Amazon Resource Name (ARN) specifying the instance profile. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide.

    *)
  5. createDate : DateType.t option;
    (*

    The date when the instance profile was created.

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

    The role associated with the instance profile.

    *)
  7. tags : TagListType.t option;
    (*

    A list of tags that are attached to the instance profile. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

    *)
}
Sourceval make : ?path:??? -> ?instanceProfileName:??? -> ?instanceProfileId:??? -> ?arn:??? -> ?createDate:??? -> ?roles:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of RoleMaxSessionDurationType.t | `List of [> `Structure of (string * [> `String of TagKeyType.t ]) list ] list | `String of PathType.t | `Structure of (string * [> `Enum of string | `String of ArnType.t | `Timestamp of DateType.t ]) list | `Timestamp of DateType.t ]) list ] list | `String of PathType.t | `Timestamp of DateType.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