aws-sdk-identitystore 1.27.0

AWS SDK for AWS SSO Identity Store
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_unique_attribute(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::types::UniqueAttribute,
) -> Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    {
        object.key("AttributePath").string(input.attribute_path.as_str());
    }
    {
        object.key("AttributeValue").document(&input.attribute_value);
    }
    Ok(())
}