/** * 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 { HubS3StorageConfig::HubS3StorageConfig() : m_s3OutputPathHasBeenSet(false) { } HubS3StorageConfig::HubS3StorageConfig(JsonView jsonValue) : m_s3OutputPathHasBeenSet(false) { *this = jsonValue; } HubS3StorageConfig& HubS3StorageConfig::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("S3OutputPath")) { m_s3OutputPath = jsonValue.GetString("S3OutputPath"); m_s3OutputPathHasBeenSet = true; } return *this; } JsonValue HubS3StorageConfig::Jsonize() const { JsonValue payload; if(m_s3OutputPathHasBeenSet) { payload.WithString("S3OutputPath", m_s3OutputPath); } return payload; } } // namespace Model } // namespace SageMaker } // namespace Aws