/** * 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 CloudHSMV2 { namespace Model { /** */ class ModifyBackupAttributesRequest : public CloudHSMV2Request { public: AWS_CLOUDHSMV2_API ModifyBackupAttributesRequest(); // 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 "ModifyBackupAttributes"; } AWS_CLOUDHSMV2_API Aws::String SerializePayload() const override; AWS_CLOUDHSMV2_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline const Aws::String& GetBackupId() const{ return m_backupId; } /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline bool BackupIdHasBeenSet() const { return m_backupIdHasBeenSet; } /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline void SetBackupId(const Aws::String& value) { m_backupIdHasBeenSet = true; m_backupId = value; } /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline void SetBackupId(Aws::String&& value) { m_backupIdHasBeenSet = true; m_backupId = std::move(value); } /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline void SetBackupId(const char* value) { m_backupIdHasBeenSet = true; m_backupId.assign(value); } /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline ModifyBackupAttributesRequest& WithBackupId(const Aws::String& value) { SetBackupId(value); return *this;} /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline ModifyBackupAttributesRequest& WithBackupId(Aws::String&& value) { SetBackupId(std::move(value)); return *this;} /** *

The identifier (ID) of the backup to modify. To find the ID of a backup, use * the DescribeBackups operation.

*/ inline ModifyBackupAttributesRequest& WithBackupId(const char* value) { SetBackupId(value); return *this;} /** *

Specifies whether the service should exempt a backup from the retention * policy for the cluster. True exempts a backup from the retention * policy. False means the service applies the backup retention policy * defined at the cluster.

*/ inline bool GetNeverExpires() const{ return m_neverExpires; } /** *

Specifies whether the service should exempt a backup from the retention * policy for the cluster. True exempts a backup from the retention * policy. False means the service applies the backup retention policy * defined at the cluster.

*/ inline bool NeverExpiresHasBeenSet() const { return m_neverExpiresHasBeenSet; } /** *

Specifies whether the service should exempt a backup from the retention * policy for the cluster. True exempts a backup from the retention * policy. False means the service applies the backup retention policy * defined at the cluster.

*/ inline void SetNeverExpires(bool value) { m_neverExpiresHasBeenSet = true; m_neverExpires = value; } /** *

Specifies whether the service should exempt a backup from the retention * policy for the cluster. True exempts a backup from the retention * policy. False means the service applies the backup retention policy * defined at the cluster.

*/ inline ModifyBackupAttributesRequest& WithNeverExpires(bool value) { SetNeverExpires(value); return *this;} private: Aws::String m_backupId; bool m_backupIdHasBeenSet = false; bool m_neverExpires; bool m_neverExpiresHasBeenSet = false; }; } // namespace Model } // namespace CloudHSMV2 } // namespace Aws