/** * 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 AppIntegrationsService { namespace Model { /** *

Summary information about the DataIntegration association.

See * Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline const Aws::String& GetDataIntegrationAssociationArn() const{ return m_dataIntegrationAssociationArn; } /** *

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline bool DataIntegrationAssociationArnHasBeenSet() const { return m_dataIntegrationAssociationArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline void SetDataIntegrationAssociationArn(const Aws::String& value) { m_dataIntegrationAssociationArnHasBeenSet = true; m_dataIntegrationAssociationArn = value; } /** *

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline void SetDataIntegrationAssociationArn(Aws::String&& value) { m_dataIntegrationAssociationArnHasBeenSet = true; m_dataIntegrationAssociationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline void SetDataIntegrationAssociationArn(const char* value) { m_dataIntegrationAssociationArnHasBeenSet = true; m_dataIntegrationAssociationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline DataIntegrationAssociationSummary& WithDataIntegrationAssociationArn(const Aws::String& value) { SetDataIntegrationAssociationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline DataIntegrationAssociationSummary& WithDataIntegrationAssociationArn(Aws::String&& value) { SetDataIntegrationAssociationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the DataIntegration association.

*/ inline DataIntegrationAssociationSummary& WithDataIntegrationAssociationArn(const char* value) { SetDataIntegrationAssociationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline const Aws::String& GetDataIntegrationArn() const{ return m_dataIntegrationArn; } /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline bool DataIntegrationArnHasBeenSet() const { return m_dataIntegrationArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline void SetDataIntegrationArn(const Aws::String& value) { m_dataIntegrationArnHasBeenSet = true; m_dataIntegrationArn = value; } /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline void SetDataIntegrationArn(Aws::String&& value) { m_dataIntegrationArnHasBeenSet = true; m_dataIntegrationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline void SetDataIntegrationArn(const char* value) { m_dataIntegrationArnHasBeenSet = true; m_dataIntegrationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline DataIntegrationAssociationSummary& WithDataIntegrationArn(const Aws::String& value) { SetDataIntegrationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline DataIntegrationAssociationSummary& WithDataIntegrationArn(Aws::String&& value) { SetDataIntegrationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the DataIntegration.

*/ inline DataIntegrationAssociationSummary& WithDataIntegrationArn(const char* value) { SetDataIntegrationArn(value); return *this;} /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline const Aws::String& GetClientId() const{ return m_clientId; } /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline bool ClientIdHasBeenSet() const { return m_clientIdHasBeenSet; } /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline void SetClientId(const Aws::String& value) { m_clientIdHasBeenSet = true; m_clientId = value; } /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline void SetClientId(Aws::String&& value) { m_clientIdHasBeenSet = true; m_clientId = std::move(value); } /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline void SetClientId(const char* value) { m_clientIdHasBeenSet = true; m_clientId.assign(value); } /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline DataIntegrationAssociationSummary& WithClientId(const Aws::String& value) { SetClientId(value); return *this;} /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline DataIntegrationAssociationSummary& WithClientId(Aws::String&& value) { SetClientId(std::move(value)); return *this;} /** *

The identifier for the client that is associated with the DataIntegration * association.

*/ inline DataIntegrationAssociationSummary& WithClientId(const char* value) { SetClientId(value); return *this;} private: Aws::String m_dataIntegrationAssociationArn; bool m_dataIntegrationAssociationArnHasBeenSet = false; Aws::String m_dataIntegrationArn; bool m_dataIntegrationArnHasBeenSet = false; Aws::String m_clientId; bool m_clientIdHasBeenSet = false; }; } // namespace Model } // namespace AppIntegrationsService } // namespace Aws