pub struct Builder {}
Expand description
A builder for DeleteBucketReplicationOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> DeleteBucketReplicationOutput
pub fn build(self) -> DeleteBucketReplicationOutput
Consumes the builder and constructs a DeleteBucketReplicationOutput
.
Examples found in repository?
src/operation_deser.rs (line 669)
659 660 661 662 663 664 665 666 667 668 669 670 671
pub fn parse_delete_bucket_replication_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DeleteBucketReplicationOutput,
crate::error::DeleteBucketReplicationError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::delete_bucket_replication_output::Builder::default();
let _ = response;
output.build()
})
}