Struct aws_sdk_applicationdiscovery::output::associate_configuration_items_to_application_output::Builder
source · pub struct Builder {}Expand description
A builder for AssociateConfigurationItemsToApplicationOutput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> AssociateConfigurationItemsToApplicationOutput
pub fn build(self) -> AssociateConfigurationItemsToApplicationOutput
Consumes the builder and constructs a AssociateConfigurationItemsToApplicationOutput.
Examples found in repository?
src/operation_deser.rs (line 108)
97 98 99 100 101 102 103 104 105 106 107 108 109 110
pub fn parse_associate_configuration_items_to_application_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::AssociateConfigurationItemsToApplicationOutput,
crate::error::AssociateConfigurationItemsToApplicationError,
> {
Ok({
#[allow(unused_mut)]
let mut output =
crate::output::associate_configuration_items_to_application_output::Builder::default();
let _ = response;
output.build()
})
}