190 lines
8.0 KiB
C
190 lines
8.0 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
|
|||
|
|
#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2Request.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace KinesisAnalyticsV2
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_KINESISANALYTICSV2_API DeleteApplicationReferenceDataSourceRequest : public KinesisAnalyticsV2Request
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DeleteApplicationReferenceDataSourceRequest();
|
|||
|
|
|
|||
|
|
// Service request name is the Operation name which will send this request out,
|
|||
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|||
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|||
|
|
// so we can not get operation's name from response.
|
|||
|
|
inline virtual const char* GetServiceRequestName() const override { return "DeleteApplicationReferenceDataSource"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetApplicationName() const{ return m_applicationName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteApplicationReferenceDataSourceRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteApplicationReferenceDataSourceRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of an existing application.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteApplicationReferenceDataSourceRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current application version. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the current application version. If the version specified is
|
|||
|
|
* not the current version, the <code>ConcurrentModificationException</code> is
|
|||
|
|
* returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline long long GetCurrentApplicationVersionId() const{ return m_currentApplicationVersionId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current application version. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the current application version. If the version specified is
|
|||
|
|
* not the current version, the <code>ConcurrentModificationException</code> is
|
|||
|
|
* returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current application version. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the current application version. If the version specified is
|
|||
|
|
* not the current version, the <code>ConcurrentModificationException</code> is
|
|||
|
|
* returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCurrentApplicationVersionId(long long value) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current application version. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the current application version. If the version specified is
|
|||
|
|
* not the current version, the <code>ConcurrentModificationException</code> is
|
|||
|
|
* returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteApplicationReferenceDataSourceRequest& WithCurrentApplicationVersionId(long long value) { SetCurrentApplicationVersionId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetReferenceId() const{ return m_referenceId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool ReferenceIdHasBeenSet() const { return m_referenceIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetReferenceId(const Aws::String& value) { m_referenceIdHasBeenSet = true; m_referenceId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetReferenceId(Aws::String&& value) { m_referenceIdHasBeenSet = true; m_referenceId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetReferenceId(const char* value) { m_referenceIdHasBeenSet = true; m_referenceId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(const Aws::String& value) { SetReferenceId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(Aws::String&& value) { SetReferenceId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the reference data source. When you add a reference data source to
|
|||
|
|
* your application using the <a>AddApplicationReferenceDataSource</a>, Kinesis
|
|||
|
|
* Data Analytics assigns an ID. You can use the <a>DescribeApplication</a>
|
|||
|
|
* operation to get the reference ID. </p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(const char* value) { SetReferenceId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_applicationName;
|
|||
|
|
bool m_applicationNameHasBeenSet;
|
|||
|
|
|
|||
|
|
long long m_currentApplicationVersionId;
|
|||
|
|
bool m_currentApplicationVersionIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_referenceId;
|
|||
|
|
bool m_referenceIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace KinesisAnalyticsV2
|
|||
|
|
} // namespace Aws
|