Class: Aws::Glue::Types::S3Target
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::S3Target
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass S3Target data as a hash:
{
path: "Path",
exclusions: ["Path"],
connection_name: "ConnectionName",
}
Specifies a data store in Amazon Simple Storage Service (Amazon S3).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_name ⇒ String
The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).
-
#exclusions ⇒ Array<String>
A list of glob patterns used to exclude from the crawl.
-
#path ⇒ String
The path to the Amazon S3 target.
Instance Attribute Details
#connection_name ⇒ String
The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).
13062 13063 13064 13065 13066 13067 13068 |
# File 'lib/aws-sdk-glue/types.rb', line 13062 class S3Target < Struct.new( :path, :exclusions, :connection_name) SENSITIVE = [] include Aws::Structure end |
#exclusions ⇒ Array<String>
A list of glob patterns used to exclude from the crawl. For more information, see [Catalog Tables with a Crawler].
13062 13063 13064 13065 13066 13067 13068 |
# File 'lib/aws-sdk-glue/types.rb', line 13062 class S3Target < Struct.new( :path, :exclusions, :connection_name) SENSITIVE = [] include Aws::Structure end |