pub struct CreateFunctionDefinitionResponse {
pub arn: Option<String>,
pub creation_timestamp: Option<String>,
pub id: Option<String>,
pub last_updated_timestamp: Option<String>,
pub latest_version: Option<String>,
pub latest_version_arn: Option<String>,
pub name: Option<String>,
}Fields§
§arn: Option<String>The ARN of the definition.
creation_timestamp: Option<String>The time, in milliseconds since the epoch, when the definition was created.
id: Option<String>The ID of the definition.
last_updated_timestamp: Option<String>The time, in milliseconds since the epoch, when the definition was last updated.
latest_version: Option<String>The ID of the latest version associated with the definition.
latest_version_arn: Option<String>The ARN of the latest version associated with the definition.
name: Option<String>The name of the definition.
Trait Implementations§
Source§impl Clone for CreateFunctionDefinitionResponse
impl Clone for CreateFunctionDefinitionResponse
Source§fn clone(&self) -> CreateFunctionDefinitionResponse
fn clone(&self) -> CreateFunctionDefinitionResponse
Returns a duplicate 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 Default for CreateFunctionDefinitionResponse
impl Default for CreateFunctionDefinitionResponse
Source§fn default() -> CreateFunctionDefinitionResponse
fn default() -> CreateFunctionDefinitionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFunctionDefinitionResponse
impl<'de> Deserialize<'de> for CreateFunctionDefinitionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateFunctionDefinitionResponse
impl PartialEq for CreateFunctionDefinitionResponse
Source§fn eq(&self, other: &CreateFunctionDefinitionResponse) -> bool
fn eq(&self, other: &CreateFunctionDefinitionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateFunctionDefinitionResponse
Auto Trait Implementations§
impl Freeze for CreateFunctionDefinitionResponse
impl RefUnwindSafe for CreateFunctionDefinitionResponse
impl Send for CreateFunctionDefinitionResponse
impl Sync for CreateFunctionDefinitionResponse
impl Unpin for CreateFunctionDefinitionResponse
impl UnwindSafe for CreateFunctionDefinitionResponse
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