pub struct FunctionsAccessKeyListResponseAccessKeysItem {
pub created_at: Option<DateTime<Utc>>,
pub expires_at: Option<DateTime<Utc>>,
pub id: Option<String>,
pub name: Option<String>,
pub updated_at: Option<DateTime<Utc>>,
}Expand description
FunctionsAccessKeyListResponseAccessKeysItem
JSON schema
{
"type": "object",
"properties": {
"created_at": {
"description": "The date and time the key was created.",
"readOnly": true,
"examples": [
"2025-12-19T10:30:00Z"
],
"type": "string",
"format": "date-time"
},
"expires_at": {
"description": "When the key expires (null for non-expiring keys).",
"readOnly": true,
"examples": [
"2026-12-19T10:30:00Z"
],
"type": [
"string",
"null"
],
"format": "date-time"
},
"id": {
"description": "The access key's unique identifier with prefix 'dof_v1_'.",
"readOnly": true,
"examples": [
"dof_v1_d79e8aeb42e5476893c7d4c59a166264"
],
"type": "string"
},
"name": {
"description": "The access key's name.",
"examples": [
"my-function-access-key"
],
"type": "string"
},
"updated_at": {
"description": "The date and time the key was last updated.",
"readOnly": true,
"examples": [
"2025-12-19T10:30:00Z"
],
"type": "string",
"format": "date-time"
}
}
}Fields§
§created_at: Option<DateTime<Utc>>The date and time the key was created.
expires_at: Option<DateTime<Utc>>When the key expires (null for non-expiring keys).
id: Option<String>The access key’s unique identifier with prefix ‘dof_v1_’.
name: Option<String>The access key’s name.
updated_at: Option<DateTime<Utc>>The date and time the key was last updated.
Trait Implementations§
Source§impl Clone for FunctionsAccessKeyListResponseAccessKeysItem
impl Clone for FunctionsAccessKeyListResponseAccessKeysItem
Source§fn clone(&self) -> FunctionsAccessKeyListResponseAccessKeysItem
fn clone(&self) -> FunctionsAccessKeyListResponseAccessKeysItem
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 moreSource§impl<'de> Deserialize<'de> for FunctionsAccessKeyListResponseAccessKeysItem
impl<'de> Deserialize<'de> for FunctionsAccessKeyListResponseAccessKeysItem
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 From<&FunctionsAccessKeyListResponseAccessKeysItem> for FunctionsAccessKeyListResponseAccessKeysItem
impl From<&FunctionsAccessKeyListResponseAccessKeysItem> for FunctionsAccessKeyListResponseAccessKeysItem
Source§fn from(value: &FunctionsAccessKeyListResponseAccessKeysItem) -> Self
fn from(value: &FunctionsAccessKeyListResponseAccessKeysItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FunctionsAccessKeyListResponseAccessKeysItem
impl RefUnwindSafe for FunctionsAccessKeyListResponseAccessKeysItem
impl Send for FunctionsAccessKeyListResponseAccessKeysItem
impl Sync for FunctionsAccessKeyListResponseAccessKeysItem
impl Unpin for FunctionsAccessKeyListResponseAccessKeysItem
impl UnsafeUnpin for FunctionsAccessKeyListResponseAccessKeysItem
impl UnwindSafe for FunctionsAccessKeyListResponseAccessKeysItem
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