Struct rusoto_glue::UserDefinedFunction[][src]

pub struct UserDefinedFunction {
    pub class_name: Option<String>,
    pub create_time: Option<f64>,
    pub function_name: Option<String>,
    pub owner_name: Option<String>,
    pub owner_type: Option<String>,
    pub resource_uris: Option<Vec<ResourceUri>>,
}

Represents the equivalent of a Hive user-defined function (UDF) definition.

Fields

The Java class that contains the function code.

The time at which the function was created.

The name of the function.

The owner of the function.

The owner type.

The resource URIs for the function.

Trait Implementations

impl Default for UserDefinedFunction
[src]

Returns the "default value" for a type. Read more

impl Debug for UserDefinedFunction
[src]

Formats the value using the given formatter. Read more

impl Clone for UserDefinedFunction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UserDefinedFunction
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations