/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provide transition lifecycle details of Amazon Security Lake
* object.See Also:
AWS
* API Reference
Number of days before data transitions to a different S3 Storage Class in the * Amazon Security Lake object.
*/ inline int GetDays() const{ return m_days; } /** *Number of days before data transitions to a different S3 Storage Class in the * Amazon Security Lake object.
*/ inline bool DaysHasBeenSet() const { return m_daysHasBeenSet; } /** *Number of days before data transitions to a different S3 Storage Class in the * Amazon Security Lake object.
*/ inline void SetDays(int value) { m_daysHasBeenSet = true; m_days = value; } /** *Number of days before data transitions to a different S3 Storage Class in the * Amazon Security Lake object.
*/ inline DataLakeLifecycleTransition& WithDays(int value) { SetDays(value); return *this;} /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline const Aws::String& GetStorageClass() const{ return m_storageClass; } /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline bool StorageClassHasBeenSet() const { return m_storageClassHasBeenSet; } /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline void SetStorageClass(const Aws::String& value) { m_storageClassHasBeenSet = true; m_storageClass = value; } /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline void SetStorageClass(Aws::String&& value) { m_storageClassHasBeenSet = true; m_storageClass = std::move(value); } /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline void SetStorageClass(const char* value) { m_storageClassHasBeenSet = true; m_storageClass.assign(value); } /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline DataLakeLifecycleTransition& WithStorageClass(const Aws::String& value) { SetStorageClass(value); return *this;} /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline DataLakeLifecycleTransition& WithStorageClass(Aws::String&& value) { SetStorageClass(std::move(value)); return *this;} /** *The range of storage classes that you can choose from based on the data * access, resiliency, and cost requirements of your workloads.
*/ inline DataLakeLifecycleTransition& WithStorageClass(const char* value) { SetStorageClass(value); return *this;} private: int m_days; bool m_daysHasBeenSet = false; Aws::String m_storageClass; bool m_storageClassHasBeenSet = false; }; } // namespace Model } // namespace SecurityLake } // namespace Aws