Struct aws_sdk_ec2::output::reset_image_attribute_output::Builder
source · pub struct Builder {}
Expand description
A builder for ResetImageAttributeOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> ResetImageAttributeOutput
pub fn build(self) -> ResetImageAttributeOutput
Consumes the builder and constructs a ResetImageAttributeOutput
.
Examples found in repository?
src/operation_deser.rs (line 15674)
15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676
pub fn parse_reset_image_attribute_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::ResetImageAttributeOutput,
crate::error::ResetImageAttributeError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::reset_image_attribute_output::Builder::default();
let _ = response;
output.build()
})
}