/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about what Amazon S3 does when a multipart upload is
* incomplete.See Also:
AWS
* API Reference
The number of days after which Amazon S3 cancels an incomplete multipart * upload.
*/ inline int GetDaysAfterInitiation() const{ return m_daysAfterInitiation; } /** *The number of days after which Amazon S3 cancels an incomplete multipart * upload.
*/ inline bool DaysAfterInitiationHasBeenSet() const { return m_daysAfterInitiationHasBeenSet; } /** *The number of days after which Amazon S3 cancels an incomplete multipart * upload.
*/ inline void SetDaysAfterInitiation(int value) { m_daysAfterInitiationHasBeenSet = true; m_daysAfterInitiation = value; } /** *The number of days after which Amazon S3 cancels an incomplete multipart * upload.
*/ inline AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails& WithDaysAfterInitiation(int value) { SetDaysAfterInitiation(value); return *this;} private: int m_daysAfterInitiation; bool m_daysAfterInitiationHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws