Module Values.IamRoleSource

Information about an Amazon Web Services Identity and Access Management (IAM) service role associated with a resource.

Sourcetype nonrec t = {
  1. iamRoleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) service role.

    *)
  2. status : IamRoleStatus.t option;
    (*

    The current status of the Amazon Web Services Identity and Access Management (IAM) service role.

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

    Additional information about the current status of the Amazon Web Services Identity and Access Management (IAM) service role, if applicable.

    *)
  4. awsIntegration : SupportedAwsIntegration.t option;
    (*

    The Amazon Web Services integration configuration settings for the Amazon Web Services Identity and Access Management (IAM) service role.

    *)
}
Sourceval make : ?iamRoleArn:??? -> ?status:??? -> ?statusReason:??? -> ?awsIntegration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RoleArn.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