Module Values_0.DBInstanceRoleSource

Information about an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB instance.

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

    The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.

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

    The name of the feature associated with the Amazon Web Services Identity and Access Management (IAM) role. For information about supported feature names, see DBEngineVersion.

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

    Information about the state of association between the IAM role and the DB instance. The Status property returns one of the following values: ACTIVE - the IAM role ARN is associated with the DB instance and can be used to access other Amazon Web Services services on your behalf. PENDING - the IAM role ARN is being associated with the DB instance. INVALID - the IAM role ARN is associated with the DB instance, but the DB instance is unable to assume the IAM role in order to access other Amazon Web Services services on your behalf.

    *)
}
Sourceval make : ?roleArn:??? -> ?featureName:??? -> ?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