/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A readiness check.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline const Aws::String& GetReadinessCheckArn() const{ return m_readinessCheckArn; } /** *The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline bool ReadinessCheckArnHasBeenSet() const { return m_readinessCheckArnHasBeenSet; } /** *The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline void SetReadinessCheckArn(const Aws::String& value) { m_readinessCheckArnHasBeenSet = true; m_readinessCheckArn = value; } /** *The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline void SetReadinessCheckArn(Aws::String&& value) { m_readinessCheckArnHasBeenSet = true; m_readinessCheckArn = std::move(value); } /** *The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline void SetReadinessCheckArn(const char* value) { m_readinessCheckArnHasBeenSet = true; m_readinessCheckArn.assign(value); } /** *The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline ReadinessCheckOutput& WithReadinessCheckArn(const Aws::String& value) { SetReadinessCheckArn(value); return *this;} /** *The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline ReadinessCheckOutput& WithReadinessCheckArn(Aws::String&& value) { SetReadinessCheckArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) associated with a readiness check.
*/ inline ReadinessCheckOutput& WithReadinessCheckArn(const char* value) { SetReadinessCheckArn(value); return *this;} /** *Name of a readiness check.
*/ inline const Aws::String& GetReadinessCheckName() const{ return m_readinessCheckName; } /** *Name of a readiness check.
*/ inline bool ReadinessCheckNameHasBeenSet() const { return m_readinessCheckNameHasBeenSet; } /** *Name of a readiness check.
*/ inline void SetReadinessCheckName(const Aws::String& value) { m_readinessCheckNameHasBeenSet = true; m_readinessCheckName = value; } /** *Name of a readiness check.
*/ inline void SetReadinessCheckName(Aws::String&& value) { m_readinessCheckNameHasBeenSet = true; m_readinessCheckName = std::move(value); } /** *Name of a readiness check.
*/ inline void SetReadinessCheckName(const char* value) { m_readinessCheckNameHasBeenSet = true; m_readinessCheckName.assign(value); } /** *Name of a readiness check.
*/ inline ReadinessCheckOutput& WithReadinessCheckName(const Aws::String& value) { SetReadinessCheckName(value); return *this;} /** *Name of a readiness check.
*/ inline ReadinessCheckOutput& WithReadinessCheckName(Aws::String&& value) { SetReadinessCheckName(std::move(value)); return *this;} /** *Name of a readiness check.
*/ inline ReadinessCheckOutput& WithReadinessCheckName(const char* value) { SetReadinessCheckName(value); return *this;} /** *Name of the resource set to be checked.
*/ inline const Aws::String& GetResourceSet() const{ return m_resourceSet; } /** *Name of the resource set to be checked.
*/ inline bool ResourceSetHasBeenSet() const { return m_resourceSetHasBeenSet; } /** *Name of the resource set to be checked.
*/ inline void SetResourceSet(const Aws::String& value) { m_resourceSetHasBeenSet = true; m_resourceSet = value; } /** *Name of the resource set to be checked.
*/ inline void SetResourceSet(Aws::String&& value) { m_resourceSetHasBeenSet = true; m_resourceSet = std::move(value); } /** *Name of the resource set to be checked.
*/ inline void SetResourceSet(const char* value) { m_resourceSetHasBeenSet = true; m_resourceSet.assign(value); } /** *Name of the resource set to be checked.
*/ inline ReadinessCheckOutput& WithResourceSet(const Aws::String& value) { SetResourceSet(value); return *this;} /** *Name of the resource set to be checked.
*/ inline ReadinessCheckOutput& WithResourceSet(Aws::String&& value) { SetResourceSet(std::move(value)); return *this;} /** *Name of the resource set to be checked.
*/ inline ReadinessCheckOutput& WithResourceSet(const char* value) { SetResourceSet(value); return *this;} inline const Aws::Map