pub struct FunctionUrlConfig {
pub function_name: String,
pub function_arn: String,
pub function_url: String,
pub auth_type: String,
pub cors: Option<Value>,
pub creation_time: String,
pub last_modified_time: String,
}Expand description
A function URL configuration.
Fields§
§function_name: StringKept for potential admin console use.
function_arn: String§function_url: String§auth_type: String§cors: Option<Value>§creation_time: String§last_modified_time: StringTrait Implementations§
Source§impl Clone for FunctionUrlConfig
impl Clone for FunctionUrlConfig
Source§fn clone(&self) -> FunctionUrlConfig
fn clone(&self) -> FunctionUrlConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FunctionUrlConfig
impl RefUnwindSafe for FunctionUrlConfig
impl Send for FunctionUrlConfig
impl Sync for FunctionUrlConfig
impl Unpin for FunctionUrlConfig
impl UnsafeUnpin for FunctionUrlConfig
impl UnwindSafe for FunctionUrlConfig
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