Module Values.GetClusterCredentialsWithIAMMessageSource

Returns a database user name and temporary password with temporary authorization to log in to an Amazon Redshift database. The database user is mapped 1:1 to the source Identity and Access Management (IAM) identity. For more information about IAM identities, see IAM Identities (users, user groups, and roles) in the Amazon Web Services Identity and Access Management User Guide. The Identity and Access Management (IAM) identity that runs this operation must have an IAM policy attached that allows access to all necessary actions and resources. For more information about permissions, see Using identity-based policies (IAM policies) in the Amazon Redshift Cluster Management Guide.

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

    The name of the database for which you are requesting credentials. If the database name is specified, the IAM policy must allow access to the resource dbname for the specified database name. If the database name is not specified, access to all databases is allowed.

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

    The unique identifier of the cluster that contains the database for which you are requesting credentials.

    *)
  3. durationSeconds : IntegerOptional.t option;
    (*

    The number of seconds until the returned temporary password expires. Range: 900-3600. Default: 900.

    *)
  4. customDomainName : String_.t option;
    (*

    The custom domain name for the IAM message cluster credentials.

    *)
}
Sourceval make : ?dbName:??? -> ?clusterIdentifier:??? -> ?durationSeconds:??? -> ?customDomainName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerOptional.t | `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