commonMain.aws.sdk.kotlin.services.fms.transform.AccountScopeDocumentSerializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.fms.transform
import aws.sdk.kotlin.services.fms.model.AccountScope
import aws.smithy.kotlin.runtime.serde.SdkFieldDescriptor
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.SerialKind
import aws.smithy.kotlin.runtime.serde.Serializer
import aws.smithy.kotlin.runtime.serde.asSdkSerializable
import aws.smithy.kotlin.runtime.serde.deserializeList
import aws.smithy.kotlin.runtime.serde.deserializeMap
import aws.smithy.kotlin.runtime.serde.deserializeStruct
import aws.smithy.kotlin.runtime.serde.field
import aws.smithy.kotlin.runtime.serde.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal fun serializeAccountScopeDocument(serializer: Serializer, input: AccountScope) {
val ACCOUNTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Accounts"))
val ALLACCOUNTSENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("AllAccountsEnabled"))
val EXCLUDESPECIFIEDACCOUNTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("ExcludeSpecifiedAccounts"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ACCOUNTS_DESCRIPTOR)
field(ALLACCOUNTSENABLED_DESCRIPTOR)
field(EXCLUDESPECIFIEDACCOUNTS_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
if (input.accounts != null) {
listField(ACCOUNTS_DESCRIPTOR) {
for (el0 in input.accounts) {
serializeString(el0)
}
}
}
if (input.allAccountsEnabled != false) field(ALLACCOUNTSENABLED_DESCRIPTOR, input.allAccountsEnabled)
if (input.excludeSpecifiedAccounts != false) field(EXCLUDESPECIFIEDACCOUNTS_DESCRIPTOR, input.excludeSpecifiedAccounts)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy