pub struct Endpoint {
pub name: String,
pub arn: String,
pub endpoint_id: String,
pub endpoint_url: Option<String>,
pub description: Option<String>,
pub routing_config: Value,
pub replication_config: Option<Value>,
pub event_buses: Vec<Value>,
pub role_arn: Option<String>,
pub state: String,
pub creation_time: DateTime<Utc>,
pub last_modified_time: DateTime<Utc>,
}Fields§
§name: String§arn: String§endpoint_id: String§endpoint_url: Option<String>§description: Option<String>§routing_config: Value§replication_config: Option<Value>§event_buses: Vec<Value>§role_arn: Option<String>§state: String§creation_time: DateTime<Utc>§last_modified_time: DateTime<Utc>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Endpoint
impl<'de> Deserialize<'de> for Endpoint
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
Auto Trait Implementations§
impl Freeze for Endpoint
impl RefUnwindSafe for Endpoint
impl Send for Endpoint
impl Sync for Endpoint
impl Unpin for Endpoint
impl UnsafeUnpin for Endpoint
impl UnwindSafe for Endpoint
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