Class: Aws::Glue::Types::ResourceUri

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 ResourceUri data as a hash:

{
  resource_type: "JAR", # accepts JAR, FILE, ARCHIVE
  uri: "URI",
}

The URIs for function resources.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_typeString

The type of the resource.

Returns:

  • (String)


12943
12944
12945
12946
12947
12948
# File 'lib/aws-sdk-glue/types.rb', line 12943

class ResourceUri < Struct.new(
  :resource_type,
  :uri)
  SENSITIVE = []
  include Aws::Structure
end

#uriString

The URI for accessing the resource.

Returns:

  • (String)


12943
12944
12945
12946
12947
12948
# File 'lib/aws-sdk-glue/types.rb', line 12943

class ResourceUri < Struct.new(
  :resource_type,
  :uri)
  SENSITIVE = []
  include Aws::Structure
end