/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the securityhub-2018-10-26.normal.json service model. */ using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Text; using System.Xml.Serialization; using Amazon.SecurityHub.Model; using Amazon.Runtime; using Amazon.Runtime.Internal; using Amazon.Runtime.Internal.Transform; using Amazon.Runtime.Internal.Util; using ThirdParty.Json.LitJson; namespace Amazon.SecurityHub.Model.Internal.MarshallTransformations { /// /// AwsLambdaFunctionDetails Marshaller /// public class AwsLambdaFunctionDetailsMarshaller : IRequestMarshaller { /// /// Unmarshaller the response from the service to the response class. /// /// /// /// public void Marshall(AwsLambdaFunctionDetails requestObject, JsonMarshallerContext context) { if(requestObject.IsSetArchitectures()) { context.Writer.WritePropertyName("Architectures"); context.Writer.WriteArrayStart(); foreach(var requestObjectArchitecturesListValue in requestObject.Architectures) { context.Writer.Write(requestObjectArchitecturesListValue); } context.Writer.WriteArrayEnd(); } if(requestObject.IsSetCode()) { context.Writer.WritePropertyName("Code"); context.Writer.WriteObjectStart(); var marshaller = AwsLambdaFunctionCodeMarshaller.Instance; marshaller.Marshall(requestObject.Code, context); context.Writer.WriteObjectEnd(); } if(requestObject.IsSetCodeSha256()) { context.Writer.WritePropertyName("CodeSha256"); context.Writer.Write(requestObject.CodeSha256); } if(requestObject.IsSetDeadLetterConfig()) { context.Writer.WritePropertyName("DeadLetterConfig"); context.Writer.WriteObjectStart(); var marshaller = AwsLambdaFunctionDeadLetterConfigMarshaller.Instance; marshaller.Marshall(requestObject.DeadLetterConfig, context); context.Writer.WriteObjectEnd(); } if(requestObject.IsSetEnvironment()) { context.Writer.WritePropertyName("Environment"); context.Writer.WriteObjectStart(); var marshaller = AwsLambdaFunctionEnvironmentMarshaller.Instance; marshaller.Marshall(requestObject.Environment, context); context.Writer.WriteObjectEnd(); } if(requestObject.IsSetFunctionName()) { context.Writer.WritePropertyName("FunctionName"); context.Writer.Write(requestObject.FunctionName); } if(requestObject.IsSetHandler()) { context.Writer.WritePropertyName("Handler"); context.Writer.Write(requestObject.Handler); } if(requestObject.IsSetKmsKeyArn()) { context.Writer.WritePropertyName("KmsKeyArn"); context.Writer.Write(requestObject.KmsKeyArn); } if(requestObject.IsSetLastModified()) { context.Writer.WritePropertyName("LastModified"); context.Writer.Write(requestObject.LastModified); } if(requestObject.IsSetLayers()) { context.Writer.WritePropertyName("Layers"); context.Writer.WriteArrayStart(); foreach(var requestObjectLayersListValue in requestObject.Layers) { context.Writer.WriteObjectStart(); var marshaller = AwsLambdaFunctionLayerMarshaller.Instance; marshaller.Marshall(requestObjectLayersListValue, context); context.Writer.WriteObjectEnd(); } context.Writer.WriteArrayEnd(); } if(requestObject.IsSetMasterArn()) { context.Writer.WritePropertyName("MasterArn"); context.Writer.Write(requestObject.MasterArn); } if(requestObject.IsSetMemorySize()) { context.Writer.WritePropertyName("MemorySize"); context.Writer.Write(requestObject.MemorySize); } if(requestObject.IsSetPackageType()) { context.Writer.WritePropertyName("PackageType"); context.Writer.Write(requestObject.PackageType); } if(requestObject.IsSetRevisionId()) { context.Writer.WritePropertyName("RevisionId"); context.Writer.Write(requestObject.RevisionId); } if(requestObject.IsSetRole()) { context.Writer.WritePropertyName("Role"); context.Writer.Write(requestObject.Role); } if(requestObject.IsSetRuntime()) { context.Writer.WritePropertyName("Runtime"); context.Writer.Write(requestObject.Runtime); } if(requestObject.IsSetTimeout()) { context.Writer.WritePropertyName("Timeout"); context.Writer.Write(requestObject.Timeout); } if(requestObject.IsSetTracingConfig()) { context.Writer.WritePropertyName("TracingConfig"); context.Writer.WriteObjectStart(); var marshaller = AwsLambdaFunctionTracingConfigMarshaller.Instance; marshaller.Marshall(requestObject.TracingConfig, context); context.Writer.WriteObjectEnd(); } if(requestObject.IsSetVersion()) { context.Writer.WritePropertyName("Version"); context.Writer.Write(requestObject.Version); } if(requestObject.IsSetVpcConfig()) { context.Writer.WritePropertyName("VpcConfig"); context.Writer.WriteObjectStart(); var marshaller = AwsLambdaFunctionVpcConfigMarshaller.Instance; marshaller.Marshall(requestObject.VpcConfig, context); context.Writer.WriteObjectEnd(); } } /// /// Singleton Marshaller. /// public readonly static AwsLambdaFunctionDetailsMarshaller Instance = new AwsLambdaFunctionDetailsMarshaller(); } }