/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A JSON object containing the DescribeSnapshotScheduleInput$VolumeARN
* of the volume.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline const Aws::String& GetVolumeARN() const{ return m_volumeARN; } /** *The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline bool VolumeARNHasBeenSet() const { return m_volumeARNHasBeenSet; } /** *The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline void SetVolumeARN(const Aws::String& value) { m_volumeARNHasBeenSet = true; m_volumeARN = value; } /** *The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline void SetVolumeARN(Aws::String&& value) { m_volumeARNHasBeenSet = true; m_volumeARN = std::move(value); } /** *The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline void SetVolumeARN(const char* value) { m_volumeARNHasBeenSet = true; m_volumeARN.assign(value); } /** *The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline DescribeSnapshotScheduleRequest& WithVolumeARN(const Aws::String& value) { SetVolumeARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline DescribeSnapshotScheduleRequest& WithVolumeARN(Aws::String&& value) { SetVolumeARN(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the volume. Use the ListVolumes * operation to return a list of gateway volumes.
*/ inline DescribeSnapshotScheduleRequest& WithVolumeARN(const char* value) { SetVolumeARN(value); return *this;} private: Aws::String m_volumeARN; bool m_volumeARNHasBeenSet = false; }; } // namespace Model } // namespace StorageGateway } // namespace Aws