/** * 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 FIS { namespace Model { ExperimentTemplateS3LogConfigurationInput::ExperimentTemplateS3LogConfigurationInput() : m_bucketNameHasBeenSet(false), m_prefixHasBeenSet(false) { } ExperimentTemplateS3LogConfigurationInput::ExperimentTemplateS3LogConfigurationInput(JsonView jsonValue) : m_bucketNameHasBeenSet(false), m_prefixHasBeenSet(false) { *this = jsonValue; } ExperimentTemplateS3LogConfigurationInput& ExperimentTemplateS3LogConfigurationInput::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("bucketName")) { m_bucketName = jsonValue.GetString("bucketName"); m_bucketNameHasBeenSet = true; } if(jsonValue.ValueExists("prefix")) { m_prefix = jsonValue.GetString("prefix"); m_prefixHasBeenSet = true; } return *this; } JsonValue ExperimentTemplateS3LogConfigurationInput::Jsonize() const { JsonValue payload; if(m_bucketNameHasBeenSet) { payload.WithString("bucketName", m_bucketName); } if(m_prefixHasBeenSet) { payload.WithString("prefix", m_prefix); } return payload; } } // namespace Model } // namespace FIS } // namespace Aws