pub struct Link {
pub bandwidth: Option<Bandwidth>,
pub created_at: Option<f64>,
pub description: Option<String>,
pub global_network_id: Option<String>,
pub link_arn: Option<String>,
pub link_id: Option<String>,
pub provider: Option<String>,
pub site_id: Option<String>,
pub state: Option<String>,
pub tags: Option<Vec<Tag>>,
pub type_: Option<String>,
}
Expand description
Describes a link.
Fields§
§bandwidth: Option<Bandwidth>
The bandwidth for the link.
created_at: Option<f64>
The date and time that the link was created.
description: Option<String>
The description of the link.
global_network_id: Option<String>
The ID of the global network.
link_arn: Option<String>
The Amazon Resource Name (ARN) of the link.
link_id: Option<String>
The ID of the link.
provider: Option<String>
The provider of the link.
site_id: Option<String>
The ID of the site.
state: Option<String>
The state of the link.
The tags for the link.
type_: Option<String>
The type of the link.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Link
impl<'de> Deserialize<'de> for Link
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
impl StructuralPartialEq for Link
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnwindSafe for Link
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