pub trait CreateAccessPointOps {
// Required method
fn create_access_point(
&self,
config: CreateAccessPointConfiguration,
) -> impl Future<Output = Result<CreateAccessPointResult>>;
}Required Methods§
Sourcefn create_access_point(
&self,
config: CreateAccessPointConfiguration,
) -> impl Future<Output = Result<CreateAccessPointResult>>
fn create_access_point( &self, config: CreateAccessPointConfiguration, ) -> impl Future<Output = Result<CreateAccessPointResult>>
Create an access point for the bucket.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/createaccesspoint
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.