// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { GetDatabaseCommand, GlueClient } from "@aws-sdk/client-glue"; /** snippet-start:[javascript.v3.glue.actions.GetDatabase] */ const getDatabase = (name) => { const client = new GlueClient({}); const command = new GetDatabaseCommand({ Name: name, }); return client.send(command); }; /** snippet-end:[javascript.v3.glue.actions.GetDatabase] */ export { getDatabase };