235 lines
9.4 KiB
C++
235 lines
9.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/config/ConfigService_EXPORTS.h>
|
|
#include <aws/config/ConfigServiceRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/config/model/RemediationExceptionResourceKey.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ConfigService
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CONFIGSERVICE_API PutRemediationExceptionsRequest : public ConfigServiceRequest
|
|
{
|
|
public:
|
|
PutRemediationExceptionsRequest();
|
|
|
|
// 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 "PutRemediationExceptions"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline const Aws::String& GetConfigRuleName() const{ return m_configRuleName; }
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline bool ConfigRuleNameHasBeenSet() const { return m_configRuleNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline void SetConfigRuleName(const Aws::String& value) { m_configRuleNameHasBeenSet = true; m_configRuleName = value; }
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline void SetConfigRuleName(Aws::String&& value) { m_configRuleNameHasBeenSet = true; m_configRuleName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline void SetConfigRuleName(const char* value) { m_configRuleNameHasBeenSet = true; m_configRuleName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithConfigRuleName(const Aws::String& value) { SetConfigRuleName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithConfigRuleName(Aws::String&& value) { SetConfigRuleName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the AWS Config rule for which you want to create remediation
|
|
* exception.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithConfigRuleName(const char* value) { SetConfigRuleName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline const Aws::Vector<RemediationExceptionResourceKey>& GetResourceKeys() const{ return m_resourceKeys; }
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline bool ResourceKeysHasBeenSet() const { return m_resourceKeysHasBeenSet; }
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline void SetResourceKeys(const Aws::Vector<RemediationExceptionResourceKey>& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys = value; }
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline void SetResourceKeys(Aws::Vector<RemediationExceptionResourceKey>&& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys = std::move(value); }
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithResourceKeys(const Aws::Vector<RemediationExceptionResourceKey>& value) { SetResourceKeys(value); return *this;}
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithResourceKeys(Aws::Vector<RemediationExceptionResourceKey>&& value) { SetResourceKeys(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& AddResourceKeys(const RemediationExceptionResourceKey& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>An exception list of resource exception keys to be processed with the current
|
|
* request. AWS Config adds exception for each resource key. For example, AWS
|
|
* Config adds 3 exceptions for 3 resource keys. </p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& AddResourceKeys(RemediationExceptionResourceKey&& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline const Aws::String& GetMessage() const{ return m_message; }
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The message contains an explanation of the exception.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithMessage(const char* value) { SetMessage(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The exception is automatically deleted after the expiration date.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetExpirationTime() const{ return m_expirationTime; }
|
|
|
|
/**
|
|
* <p>The exception is automatically deleted after the expiration date.</p>
|
|
*/
|
|
inline bool ExpirationTimeHasBeenSet() const { return m_expirationTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The exception is automatically deleted after the expiration date.</p>
|
|
*/
|
|
inline void SetExpirationTime(const Aws::Utils::DateTime& value) { m_expirationTimeHasBeenSet = true; m_expirationTime = value; }
|
|
|
|
/**
|
|
* <p>The exception is automatically deleted after the expiration date.</p>
|
|
*/
|
|
inline void SetExpirationTime(Aws::Utils::DateTime&& value) { m_expirationTimeHasBeenSet = true; m_expirationTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>The exception is automatically deleted after the expiration date.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithExpirationTime(const Aws::Utils::DateTime& value) { SetExpirationTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>The exception is automatically deleted after the expiration date.</p>
|
|
*/
|
|
inline PutRemediationExceptionsRequest& WithExpirationTime(Aws::Utils::DateTime&& value) { SetExpirationTime(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_configRuleName;
|
|
bool m_configRuleNameHasBeenSet;
|
|
|
|
Aws::Vector<RemediationExceptionResourceKey> m_resourceKeys;
|
|
bool m_resourceKeysHasBeenSet;
|
|
|
|
Aws::String m_message;
|
|
bool m_messageHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_expirationTime;
|
|
bool m_expirationTimeHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ConfigService
|
|
} // namespace Aws
|