/** * 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 Lightsail { namespace Model { /** */ class DeleteInstanceSnapshotRequest : public LightsailRequest { public: AWS_LIGHTSAIL_API DeleteInstanceSnapshotRequest(); // 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 "DeleteInstanceSnapshot"; } AWS_LIGHTSAIL_API Aws::String SerializePayload() const override; AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the snapshot to delete.

*/ inline const Aws::String& GetInstanceSnapshotName() const{ return m_instanceSnapshotName; } /** *

The name of the snapshot to delete.

*/ inline bool InstanceSnapshotNameHasBeenSet() const { return m_instanceSnapshotNameHasBeenSet; } /** *

The name of the snapshot to delete.

*/ inline void SetInstanceSnapshotName(const Aws::String& value) { m_instanceSnapshotNameHasBeenSet = true; m_instanceSnapshotName = value; } /** *

The name of the snapshot to delete.

*/ inline void SetInstanceSnapshotName(Aws::String&& value) { m_instanceSnapshotNameHasBeenSet = true; m_instanceSnapshotName = std::move(value); } /** *

The name of the snapshot to delete.

*/ inline void SetInstanceSnapshotName(const char* value) { m_instanceSnapshotNameHasBeenSet = true; m_instanceSnapshotName.assign(value); } /** *

The name of the snapshot to delete.

*/ inline DeleteInstanceSnapshotRequest& WithInstanceSnapshotName(const Aws::String& value) { SetInstanceSnapshotName(value); return *this;} /** *

The name of the snapshot to delete.

*/ inline DeleteInstanceSnapshotRequest& WithInstanceSnapshotName(Aws::String&& value) { SetInstanceSnapshotName(std::move(value)); return *this;} /** *

The name of the snapshot to delete.

*/ inline DeleteInstanceSnapshotRequest& WithInstanceSnapshotName(const char* value) { SetInstanceSnapshotName(value); return *this;} private: Aws::String m_instanceSnapshotName; bool m_instanceSnapshotNameHasBeenSet = false; }; } // namespace Model } // namespace Lightsail } // namespace Aws