/** * 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 Firehose { namespace Model { SplunkDestinationUpdate::SplunkDestinationUpdate() : m_hECEndpointHasBeenSet(false), m_hECEndpointType(HECEndpointType::NOT_SET), m_hECEndpointTypeHasBeenSet(false), m_hECTokenHasBeenSet(false), m_hECAcknowledgmentTimeoutInSeconds(0), m_hECAcknowledgmentTimeoutInSecondsHasBeenSet(false), m_retryOptionsHasBeenSet(false), m_s3BackupMode(SplunkS3BackupMode::NOT_SET), m_s3BackupModeHasBeenSet(false), m_s3UpdateHasBeenSet(false), m_processingConfigurationHasBeenSet(false), m_cloudWatchLoggingOptionsHasBeenSet(false) { } SplunkDestinationUpdate::SplunkDestinationUpdate(JsonView jsonValue) : m_hECEndpointHasBeenSet(false), m_hECEndpointType(HECEndpointType::NOT_SET), m_hECEndpointTypeHasBeenSet(false), m_hECTokenHasBeenSet(false), m_hECAcknowledgmentTimeoutInSeconds(0), m_hECAcknowledgmentTimeoutInSecondsHasBeenSet(false), m_retryOptionsHasBeenSet(false), m_s3BackupMode(SplunkS3BackupMode::NOT_SET), m_s3BackupModeHasBeenSet(false), m_s3UpdateHasBeenSet(false), m_processingConfigurationHasBeenSet(false), m_cloudWatchLoggingOptionsHasBeenSet(false) { *this = jsonValue; } SplunkDestinationUpdate& SplunkDestinationUpdate::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("HECEndpoint")) { m_hECEndpoint = jsonValue.GetString("HECEndpoint"); m_hECEndpointHasBeenSet = true; } if(jsonValue.ValueExists("HECEndpointType")) { m_hECEndpointType = HECEndpointTypeMapper::GetHECEndpointTypeForName(jsonValue.GetString("HECEndpointType")); m_hECEndpointTypeHasBeenSet = true; } if(jsonValue.ValueExists("HECToken")) { m_hECToken = jsonValue.GetString("HECToken"); m_hECTokenHasBeenSet = true; } if(jsonValue.ValueExists("HECAcknowledgmentTimeoutInSeconds")) { m_hECAcknowledgmentTimeoutInSeconds = jsonValue.GetInteger("HECAcknowledgmentTimeoutInSeconds"); m_hECAcknowledgmentTimeoutInSecondsHasBeenSet = true; } if(jsonValue.ValueExists("RetryOptions")) { m_retryOptions = jsonValue.GetObject("RetryOptions"); m_retryOptionsHasBeenSet = true; } if(jsonValue.ValueExists("S3BackupMode")) { m_s3BackupMode = SplunkS3BackupModeMapper::GetSplunkS3BackupModeForName(jsonValue.GetString("S3BackupMode")); m_s3BackupModeHasBeenSet = true; } if(jsonValue.ValueExists("S3Update")) { m_s3Update = jsonValue.GetObject("S3Update"); m_s3UpdateHasBeenSet = true; } if(jsonValue.ValueExists("ProcessingConfiguration")) { m_processingConfiguration = jsonValue.GetObject("ProcessingConfiguration"); m_processingConfigurationHasBeenSet = true; } if(jsonValue.ValueExists("CloudWatchLoggingOptions")) { m_cloudWatchLoggingOptions = jsonValue.GetObject("CloudWatchLoggingOptions"); m_cloudWatchLoggingOptionsHasBeenSet = true; } return *this; } JsonValue SplunkDestinationUpdate::Jsonize() const { JsonValue payload; if(m_hECEndpointHasBeenSet) { payload.WithString("HECEndpoint", m_hECEndpoint); } if(m_hECEndpointTypeHasBeenSet) { payload.WithString("HECEndpointType", HECEndpointTypeMapper::GetNameForHECEndpointType(m_hECEndpointType)); } if(m_hECTokenHasBeenSet) { payload.WithString("HECToken", m_hECToken); } if(m_hECAcknowledgmentTimeoutInSecondsHasBeenSet) { payload.WithInteger("HECAcknowledgmentTimeoutInSeconds", m_hECAcknowledgmentTimeoutInSeconds); } if(m_retryOptionsHasBeenSet) { payload.WithObject("RetryOptions", m_retryOptions.Jsonize()); } if(m_s3BackupModeHasBeenSet) { payload.WithString("S3BackupMode", SplunkS3BackupModeMapper::GetNameForSplunkS3BackupMode(m_s3BackupMode)); } if(m_s3UpdateHasBeenSet) { payload.WithObject("S3Update", m_s3Update.Jsonize()); } if(m_processingConfigurationHasBeenSet) { payload.WithObject("ProcessingConfiguration", m_processingConfiguration.Jsonize()); } if(m_cloudWatchLoggingOptionsHasBeenSet) { payload.WithObject("CloudWatchLoggingOptions", m_cloudWatchLoggingOptions.Jsonize()); } return payload; } } // namespace Model } // namespace Firehose } // namespace Aws