/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/chime-sdk-identity/ChimeSDKIdentity_EXPORTS.h> #include <aws/chime-sdk-identity/ChimeSDKIdentityRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace ChimeSDKIdentity { namespace Model { /** */ class DescribeAppInstanceRequest : public ChimeSDKIdentityRequest { public: AWS_CHIMESDKIDENTITY_API DescribeAppInstanceRequest(); // 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 "DescribeAppInstance"; } AWS_CHIMESDKIDENTITY_API Aws::String SerializePayload() const override; /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline const Aws::String& GetAppInstanceArn() const{ return m_appInstanceArn; } /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline bool AppInstanceArnHasBeenSet() const { return m_appInstanceArnHasBeenSet; } /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline void SetAppInstanceArn(const Aws::String& value) { m_appInstanceArnHasBeenSet = true; m_appInstanceArn = value; } /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline void SetAppInstanceArn(Aws::String&& value) { m_appInstanceArnHasBeenSet = true; m_appInstanceArn = std::move(value); } /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline void SetAppInstanceArn(const char* value) { m_appInstanceArnHasBeenSet = true; m_appInstanceArn.assign(value); } /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline DescribeAppInstanceRequest& WithAppInstanceArn(const Aws::String& value) { SetAppInstanceArn(value); return *this;} /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline DescribeAppInstanceRequest& WithAppInstanceArn(Aws::String&& value) { SetAppInstanceArn(std::move(value)); return *this;} /** * <p>The ARN of the <code>AppInstance</code>.</p> */ inline DescribeAppInstanceRequest& WithAppInstanceArn(const char* value) { SetAppInstanceArn(value); return *this;} private: Aws::String m_appInstanceArn; bool m_appInstanceArnHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws