Module Values.AwsIamInstanceProfileRoleSource

Information about a role associated with an instance profile.

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

    The ARN of the role.

    *)
  2. assumeRolePolicyDocument : AwsIamRoleAssumeRolePolicyDocument.t option;
    (*

    The policy that grants an entity permission to assume the role.

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

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

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

    The path to the role.

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

    The identifier of the role.

    *)
  6. roleName : NonEmptyString.t option;
    (*

    The name of the role.

    *)
}
Sourceval make : ?arn:??? -> ?assumeRolePolicyDocument:??? -> ?createDate:??? -> ?path:??? -> ?roleId:??? -> ?roleName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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