/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The ID of the mount target whose security groups you want to retrieve.
*/ inline const Aws::String& GetMountTargetId() const{ return m_mountTargetId; } /** *The ID of the mount target whose security groups you want to retrieve.
*/ inline bool MountTargetIdHasBeenSet() const { return m_mountTargetIdHasBeenSet; } /** *The ID of the mount target whose security groups you want to retrieve.
*/ inline void SetMountTargetId(const Aws::String& value) { m_mountTargetIdHasBeenSet = true; m_mountTargetId = value; } /** *The ID of the mount target whose security groups you want to retrieve.
*/ inline void SetMountTargetId(Aws::String&& value) { m_mountTargetIdHasBeenSet = true; m_mountTargetId = std::move(value); } /** *The ID of the mount target whose security groups you want to retrieve.
*/ inline void SetMountTargetId(const char* value) { m_mountTargetIdHasBeenSet = true; m_mountTargetId.assign(value); } /** *The ID of the mount target whose security groups you want to retrieve.
*/ inline DescribeMountTargetSecurityGroupsRequest& WithMountTargetId(const Aws::String& value) { SetMountTargetId(value); return *this;} /** *The ID of the mount target whose security groups you want to retrieve.
*/ inline DescribeMountTargetSecurityGroupsRequest& WithMountTargetId(Aws::String&& value) { SetMountTargetId(std::move(value)); return *this;} /** *The ID of the mount target whose security groups you want to retrieve.
*/ inline DescribeMountTargetSecurityGroupsRequest& WithMountTargetId(const char* value) { SetMountTargetId(value); return *this;} private: Aws::String m_mountTargetId; bool m_mountTargetIdHasBeenSet = false; }; } // namespace Model } // namespace EFS } // namespace Aws