[][src]Struct rusoto_glue::UserDefinedFunctionInput

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

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

Fields

class_name: Option<String>

The Java class that contains the function code.

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 UserDefinedFunctionInput[src]

impl Debug for UserDefinedFunctionInput[src]

impl Default for UserDefinedFunctionInput[src]

impl PartialEq<UserDefinedFunctionInput> for UserDefinedFunctionInput[src]

impl Serialize for UserDefinedFunctionInput[src]

impl StructuralPartialEq for UserDefinedFunctionInput[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> 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.