/** * 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 DataSync { namespace Model { /** */ class DescribeLocationFsxOpenZfsRequest : public DataSyncRequest { public: AWS_DATASYNC_API DescribeLocationFsxOpenZfsRequest(); // 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 "DescribeLocationFsxOpenZfs"; } AWS_DATASYNC_API Aws::String SerializePayload() const override; AWS_DATASYNC_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline const Aws::String& GetLocationArn() const{ return m_locationArn; } /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline bool LocationArnHasBeenSet() const { return m_locationArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline void SetLocationArn(const Aws::String& value) { m_locationArnHasBeenSet = true; m_locationArn = value; } /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline void SetLocationArn(Aws::String&& value) { m_locationArnHasBeenSet = true; m_locationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline void SetLocationArn(const char* value) { m_locationArnHasBeenSet = true; m_locationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline DescribeLocationFsxOpenZfsRequest& WithLocationArn(const Aws::String& value) { SetLocationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline DescribeLocationFsxOpenZfsRequest& WithLocationArn(Aws::String&& value) { SetLocationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the FSx for OpenZFS location to * describe.

*/ inline DescribeLocationFsxOpenZfsRequest& WithLocationArn(const char* value) { SetLocationArn(value); return *this;} private: Aws::String m_locationArn; bool m_locationArnHasBeenSet = false; }; } // namespace Model } // namespace DataSync } // namespace Aws