Module Values.NamespaceSource

A collection of database objects and users.

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

    The Amazon Resource Name (ARN) for the namespace's admin user credentials secret.

    *)
  2. adminPasswordSecretKmsKeyId : KmsKeyId.t option;
    (*

    The ID of the Key Management Service (KMS) key used to encrypt and store the namespace's admin credentials secret.

    *)
  3. adminUsername : DbUser.t option;
    (*

    The username of the administrator for the first database created in the namespace.

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

    The Amazon Resource Name (ARN) of the Glue Data Catalog associated with the namespace enabled with Amazon Redshift federated permissions.

    *)
  5. creationDate : SyntheticTimestamp_date_time.t option;
    (*

    The date of when the namespace was created.

    *)
  6. dbName : String_.t option;
    (*

    The name of the first database created in the namespace.

    *)
  7. defaultIamRoleArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role to set as a default in the namespace.

    *)
  8. iamRoles : IamRoleArnList.t option;
    (*

    A list of IAM roles to associate with the namespace.

    *)
  9. kmsKeyId : String_.t option;
    (*

    The ID of the Amazon Web Services Key Management Service key used to encrypt your data.

    *)
  10. lakehouseRegistrationStatus : String_.t option;
    (*

    The status of the lakehouse registration for the namespace. Indicates whether the namespace is successfully registered with Amazon Redshift federated permissions.

    *)
  11. logExports : LogExportList.t option;
    (*

    The types of logs the namespace can export. Available export types are User log, Connection log, and User activity log.

    *)
  12. namespaceArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) associated with a namespace.

    *)
  13. namespaceId : String_.t option;
    (*

    The unique identifier of a namespace.

    *)
  14. namespaceName : NamespaceName.t option;
    (*

    The name of the namespace. Must be between 3-64 alphanumeric characters in lowercase, and it cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.

    *)
  15. status : NamespaceStatus.t option;
    (*

    The status of the namespace.

    *)
}
Sourceval make : ?adminPasswordSecretArn:??? -> ?adminPasswordSecretKmsKeyId:??? -> ?adminUsername:??? -> ?catalogArn:??? -> ?creationDate:??? -> ?dbName:??? -> ?defaultIamRoleArn:??? -> ?iamRoles:??? -> ?kmsKeyId:??? -> ?lakehouseRegistrationStatus:??? -> ?logExports:??? -> ?namespaceArn:??? -> ?namespaceId:??? -> ?namespaceName:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of IamRoleArn.t ] list | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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