pub trait CloudResourceReader:
Debug
+ Send
+ Sync {
// Required method
fn read<'life0, 'async_trait>(
&'life0 self,
id: CatalogItemId,
) -> Pin<Box<dyn Future<Output = Result<VpcEndpointStatus, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Required Methods§
sourcefn read<'life0, 'async_trait>(
&'life0 self,
id: CatalogItemId,
) -> Pin<Box<dyn Future<Output = Result<VpcEndpointStatus, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn read<'life0, 'async_trait>(
&'life0 self,
id: CatalogItemId,
) -> Pin<Box<dyn Future<Output = Result<VpcEndpointStatus, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Reads the specified VpcEndpoint
Kubernetes object.