/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace KinesisAnalyticsV2 { namespace Model { /** *

Updates to the configuration information required to deploy an Amazon Data * Analytics Studio notebook as an application with durable state.

See * Also:

AWS * API Reference

*/ class DeployAsApplicationConfigurationUpdate { public: AWS_KINESISANALYTICSV2_API DeployAsApplicationConfigurationUpdate(); AWS_KINESISANALYTICSV2_API DeployAsApplicationConfigurationUpdate(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API DeployAsApplicationConfigurationUpdate& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Updates to the location that holds the data required to specify an Amazon * Data Analytics application.

*/ inline const S3ContentBaseLocationUpdate& GetS3ContentLocationUpdate() const{ return m_s3ContentLocationUpdate; } /** *

Updates to the location that holds the data required to specify an Amazon * Data Analytics application.

*/ inline bool S3ContentLocationUpdateHasBeenSet() const { return m_s3ContentLocationUpdateHasBeenSet; } /** *

Updates to the location that holds the data required to specify an Amazon * Data Analytics application.

*/ inline void SetS3ContentLocationUpdate(const S3ContentBaseLocationUpdate& value) { m_s3ContentLocationUpdateHasBeenSet = true; m_s3ContentLocationUpdate = value; } /** *

Updates to the location that holds the data required to specify an Amazon * Data Analytics application.

*/ inline void SetS3ContentLocationUpdate(S3ContentBaseLocationUpdate&& value) { m_s3ContentLocationUpdateHasBeenSet = true; m_s3ContentLocationUpdate = std::move(value); } /** *

Updates to the location that holds the data required to specify an Amazon * Data Analytics application.

*/ inline DeployAsApplicationConfigurationUpdate& WithS3ContentLocationUpdate(const S3ContentBaseLocationUpdate& value) { SetS3ContentLocationUpdate(value); return *this;} /** *

Updates to the location that holds the data required to specify an Amazon * Data Analytics application.

*/ inline DeployAsApplicationConfigurationUpdate& WithS3ContentLocationUpdate(S3ContentBaseLocationUpdate&& value) { SetS3ContentLocationUpdate(std::move(value)); return *this;} private: S3ContentBaseLocationUpdate m_s3ContentLocationUpdate; bool m_s3ContentLocationUpdateHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws