Class: Aws::Glue::Types::CatalogTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CatalogTarget
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass CatalogTarget data as a hash:
{
database_name: "NameString", # required
tables: ["NameString"], # required
connection_name: "ConnectionName",
}
Specifies an Glue Data Catalog target.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_name ⇒ String
The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a
Catalog
connection type paired with aNETWORK
Connection type. -
#database_name ⇒ String
The name of the database to be synchronized.
-
#tables ⇒ Array<String>
A list of the tables to be synchronized.
Instance Attribute Details
#connection_name ⇒ String
The name of the connection for an Amazon S3-backed Data Catalog
table to be a target of the crawl when using a Catalog
connection
type paired with a NETWORK
Connection type.
2019 2020 2021 2022 2023 2024 2025 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2019 class CatalogTarget < Struct.new( :database_name, :tables, :connection_name) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The name of the database to be synchronized.
2019 2020 2021 2022 2023 2024 2025 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2019 class CatalogTarget < Struct.new( :database_name, :tables, :connection_name) SENSITIVE = [] include Aws::Structure end |
#tables ⇒ Array<String>
A list of the tables to be synchronized.
2019 2020 2021 2022 2023 2024 2025 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2019 class CatalogTarget < Struct.new( :database_name, :tables, :connection_name) SENSITIVE = [] include Aws::Structure end |