aws-sdk-codegurureviewer 1.97.0

AWS SDK for Amazon CodeGuru Reviewer
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_third_party_source_repository(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::types::ThirdPartySourceRepository,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    {
        object.key("Name").string(input.name.as_str());
    }
    {
        object.key("ConnectionArn").string(input.connection_arn.as_str());
    }
    {
        object.key("Owner").string(input.owner.as_str());
    }
    Ok(())
}