paws.analytics (version 0.1.0)

glue_create_database: Creates a new database in a Data Catalog

Description

Creates a new database in a Data Catalog.

Usage

glue_create_database(CatalogId, DatabaseInput)

Arguments

CatalogId

The ID of the Data Catalog in which to create the database. If none is supplied, the AWS account ID is used by default.

DatabaseInput

[required] A DatabaseInput object defining the metadata database to create in the catalog.

Request syntax

svc$create_database(
  CatalogId = "string",
  DatabaseInput = list(
    Name = "string",
    Description = "string",
    LocationUri = "string",
    Parameters = list(
      "string"
    )
  )
)