Module Values.DBClusterRoleSource

Describes an Identity and Access Management (IAM) role that is associated with a cluster.

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

    The Amazon Resource Name (ARN) of the IAMrole that is associated with the DB cluster.

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

    Describes the state of association between the IAMrole and the cluster. The Status property returns one of the following values: ACTIVE - The IAMrole ARN is associated with the cluster and can be used to access other Amazon Web Services services on your behalf. PENDING - The IAMrole ARN is being associated with the cluster. INVALID - The IAMrole ARN is associated with the cluster, but the cluster cannot assume the IAMrole to access other Amazon Web Services services on your behalf.

    *)
}
Sourceval make : ?roleArn:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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