/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace SageMaker { namespace Model { TransformJobStepMetadata::TransformJobStepMetadata() : m_arnHasBeenSet(false) { } TransformJobStepMetadata::TransformJobStepMetadata(JsonView jsonValue) : m_arnHasBeenSet(false) { *this = jsonValue; } TransformJobStepMetadata& TransformJobStepMetadata::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Arn")) { m_arn = jsonValue.GetString("Arn"); m_arnHasBeenSet = true; } return *this; } JsonValue TransformJobStepMetadata::Jsonize() const { JsonValue payload; if(m_arnHasBeenSet) { payload.WithString("Arn", m_arn); } return payload; } } // namespace Model } // namespace SageMaker } // namespace Aws