aws-sdk-quicksight 1.145.0

AWS SDK for Amazon QuickSight
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_custom_prompt_profile(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::types::CustomPromptProfile,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    {
        object.key("ModelProfileId").string(input.model_profile_id.as_str());
    }
    {
        object.key("SubscriptionId").string(input.subscription_id.as_str());
    }
    {
        object.key("QbsAwsAccountId").string(input.qbs_aws_account_id.as_str());
    }
    Ok(())
}