/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace AppRunner { namespace Model { /** */ class DescribeAutoScalingConfigurationRequest : public AppRunnerRequest { public: AWS_APPRUNNER_API DescribeAutoScalingConfigurationRequest(); // 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 "DescribeAutoScalingConfiguration"; } AWS_APPRUNNER_API Aws::String SerializePayload() const override; AWS_APPRUNNER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline const Aws::String& GetAutoScalingConfigurationArn() const{ return m_autoScalingConfigurationArn; } /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline bool AutoScalingConfigurationArnHasBeenSet() const { return m_autoScalingConfigurationArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline void SetAutoScalingConfigurationArn(const Aws::String& value) { m_autoScalingConfigurationArnHasBeenSet = true; m_autoScalingConfigurationArn = value; } /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline void SetAutoScalingConfigurationArn(Aws::String&& value) { m_autoScalingConfigurationArnHasBeenSet = true; m_autoScalingConfigurationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline void SetAutoScalingConfigurationArn(const char* value) { m_autoScalingConfigurationArnHasBeenSet = true; m_autoScalingConfigurationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline DescribeAutoScalingConfigurationRequest& WithAutoScalingConfigurationArn(const Aws::String& value) { SetAutoScalingConfigurationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline DescribeAutoScalingConfigurationRequest& WithAutoScalingConfigurationArn(Aws::String&& value) { SetAutoScalingConfigurationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the App Runner auto scaling configuration * that you want a description for.

The ARN can be a full auto scaling * configuration ARN, or a partial ARN ending with either .../name * or .../name/revision . If a revision isn't * specified, the latest active revision is described.

*/ inline DescribeAutoScalingConfigurationRequest& WithAutoScalingConfigurationArn(const char* value) { SetAutoScalingConfigurationArn(value); return *this;} private: Aws::String m_autoScalingConfigurationArn; bool m_autoScalingConfigurationArnHasBeenSet = false; }; } // namespace Model } // namespace AppRunner } // namespace Aws