aws-sdk-controltower 0.5.0

AWS SDK for AWS Control Tower
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub(crate) fn reflens_structure_crate_output_list_enabled_controls_output_next_token(
    input: &crate::output::ListEnabledControlsOutput,
) -> std::option::Option<&std::string::String> {
    let input = match &input.next_token {
        None => return None,
        Some(t) => t,
    };
    Some(input)
}

pub(crate) fn lens_structure_crate_output_list_enabled_controls_output_enabled_controls(
    input: crate::output::ListEnabledControlsOutput,
) -> std::option::Option<std::vec::Vec<crate::model::EnabledControlSummary>> {
    let input = match input.enabled_controls {
        None => return None,
        Some(t) => t,
    };
    Some(input)
}