You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::UserDefinedFunctionInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UserDefinedFunctionInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  function_name: "NameString",
  class_name: "NameString",
  owner_name: "NameString",
  owner_type: "USER", # accepts USER, ROLE, GROUP
  resource_uris: [
    {
      resource_type: "JAR", # accepts JAR, FILE, ARCHIVE
      uri: "URI",
    },
  ],
}

A structure used to create or update a user-defined function.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#class_nameString

The Java class that contains the function code.

Returns:

  • (String)

    The Java class that contains the function code.

#function_nameString

The name of the function.

Returns:

  • (String)

    The name of the function.

#owner_nameString

The owner of the function.

Returns:

  • (String)

    The owner of the function.

#owner_typeString

The owner type.

Possible values:

  • USER
  • ROLE
  • GROUP

Returns:

  • (String)

    The owner type.

#resource_urisArray<Types::ResourceUri>

The resource URIs for the function.

Returns: