Class: Aws::Glue::Types::S3Target

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#connection_nameString

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).

Returns:

  • (String)


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

#exclusionsArray<String>

A list of glob patterns used to exclude from the crawl. For more information, see [Catalog Tables with a Crawler].

[1]: docs.aws.amazon.com/glue/latest/dg/add-crawler.html

Returns:

  • (Array<String>)


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

#pathString

The path to the Amazon S3 target.

Returns:

  • (String)


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