pub struct GetLayerVersionResponse {
pub compatible_runtimes: Option<Vec<String>>,
pub content: Option<LayerVersionContentOutput>,
pub created_date: Option<String>,
pub description: Option<String>,
pub layer_arn: Option<String>,
pub layer_version_arn: Option<String>,
pub license_info: Option<String>,
pub version: Option<i64>,
}
Fields§
§compatible_runtimes: Option<Vec<String>>
The layer's compatible runtimes.
content: Option<LayerVersionContentOutput>
Details about the layer version.
created_date: Option<String>
The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
description: Option<String>
The description of the version.
layer_arn: Option<String>
The ARN of the layer.
layer_version_arn: Option<String>
The ARN of the layer version.
license_info: Option<String>
The layer's software license.
version: Option<i64>
The version number.
Trait Implementations§
Source§impl Clone for GetLayerVersionResponse
impl Clone for GetLayerVersionResponse
Source§fn clone(&self) -> GetLayerVersionResponse
fn clone(&self) -> GetLayerVersionResponse
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 GetLayerVersionResponse
impl Debug for GetLayerVersionResponse
Source§impl Default for GetLayerVersionResponse
impl Default for GetLayerVersionResponse
Source§fn default() -> GetLayerVersionResponse
fn default() -> GetLayerVersionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetLayerVersionResponse
impl<'de> Deserialize<'de> for GetLayerVersionResponse
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 GetLayerVersionResponse
impl PartialEq for GetLayerVersionResponse
impl StructuralPartialEq for GetLayerVersionResponse
Auto Trait Implementations§
impl Freeze for GetLayerVersionResponse
impl RefUnwindSafe for GetLayerVersionResponse
impl Send for GetLayerVersionResponse
impl Sync for GetLayerVersionResponse
impl Unpin for GetLayerVersionResponse
impl UnwindSafe for GetLayerVersionResponse
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