aws-sdk-applicationsignals 1.89.0

AWS SDK for Amazon CloudWatch Application Signals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_batch_delete_scope(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::types::BatchDeleteScope,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    {
        object.key("Service").string(input.service.as_str());
    }
    {
        object.key("Environment").string(input.environment.as_str());
    }
    {
        object.key("InstrumentationType").string(input.instrumentation_type.as_str());
    }
    Ok(())
}