Struct rusoto_glue::UserDefinedFunctionInput [] [src]

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 updata a user-defined function.

Fields

The Java class that contains the function code.

The name of the function.

The owner of the function.

The owner type.

The resource URIs for the function.

Trait Implementations

impl Default for UserDefinedFunctionInput
[src]

[src]

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

impl Debug for UserDefinedFunctionInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UserDefinedFunctionInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations