[][src]Struct rusoto_glue::UserDefinedFunction

pub struct UserDefinedFunction {
    pub catalog_id: Option<String>,
    pub class_name: Option<String>,
    pub create_time: Option<f64>,
    pub database_name: Option<String>,
    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

catalog_id: Option<String>

The ID of the Data Catalog in which the function resides.

class_name: Option<String>

The Java class that contains the function code.

create_time: Option<f64>

The time at which the function was created.

database_name: Option<String>

The name of the catalog database that contains the function.

function_name: Option<String>

The name of the function.

owner_name: Option<String>

The owner of the function.

owner_type: Option<String>

The owner type.

resource_uris: Option<Vec<ResourceUri>>

The resource URIs for the function.

Trait Implementations

impl Clone for UserDefinedFunction[src]

impl Debug for UserDefinedFunction[src]

impl Default for UserDefinedFunction[src]

impl<'de> Deserialize<'de> for UserDefinedFunction[src]

impl PartialEq<UserDefinedFunction> for UserDefinedFunction[src]

impl StructuralPartialEq for UserDefinedFunction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.