Struct aws_sdk_glue::types::UserDefinedFunction
source · #[non_exhaustive]pub struct UserDefinedFunction { /* private fields */ }
Expand description
Represents the equivalent of a Hive user-defined function (UDF
) definition.
Implementations§
source§impl UserDefinedFunction
impl UserDefinedFunction
sourcepub fn function_name(&self) -> Option<&str>
pub fn function_name(&self) -> Option<&str>
The name of the function.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the catalog database that contains the function.
sourcepub fn class_name(&self) -> Option<&str>
pub fn class_name(&self) -> Option<&str>
The Java class that contains the function code.
sourcepub fn owner_name(&self) -> Option<&str>
pub fn owner_name(&self) -> Option<&str>
The owner of the function.
sourcepub fn owner_type(&self) -> Option<&PrincipalType>
pub fn owner_type(&self) -> Option<&PrincipalType>
The owner type.
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The time at which the function was created.
sourcepub fn resource_uris(&self) -> Option<&[ResourceUri]>
pub fn resource_uris(&self) -> Option<&[ResourceUri]>
The resource URIs for the function.
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog in which the function resides.
source§impl UserDefinedFunction
impl UserDefinedFunction
sourcepub fn builder() -> UserDefinedFunctionBuilder
pub fn builder() -> UserDefinedFunctionBuilder
Creates a new builder-style object to manufacture UserDefinedFunction
.
Trait Implementations§
source§impl Clone for UserDefinedFunction
impl Clone for UserDefinedFunction
source§fn clone(&self) -> UserDefinedFunction
fn clone(&self) -> UserDefinedFunction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UserDefinedFunction
impl Debug for UserDefinedFunction
source§impl PartialEq<UserDefinedFunction> for UserDefinedFunction
impl PartialEq<UserDefinedFunction> for UserDefinedFunction
source§fn eq(&self, other: &UserDefinedFunction) -> bool
fn eq(&self, other: &UserDefinedFunction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UserDefinedFunction
Auto Trait Implementations§
impl RefUnwindSafe for UserDefinedFunction
impl Send for UserDefinedFunction
impl Sync for UserDefinedFunction
impl Unpin for UserDefinedFunction
impl UnwindSafe for UserDefinedFunction
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more