Amazon.ElasticFileSystem.AmazonElasticFileSystemClient.ModifyMountTargetSecurityGroups C# (CSharp) Метод

ModifyMountTargetSecurityGroups() публичный Метод

Modifies the set of security groups in effect for a mount target.

When you create a mount target, Amazon EFS also creates a new network interface. For more information, see CreateMountTarget. This operation replaces the security groups in effect for the network interface associated with a mount target, with the SecurityGroups provided in the request. This operation requires that the network interface of the mount target has been created and the lifecycle state of the mount target is not deleted.

The operation requires permissions for the following actions:

  • elasticfilesystem:ModifyMountTargetSecurityGroups action on the mount target's file system.

  • ec2:ModifyNetworkInterfaceAttribute action on the mount target's network interface.

/// Returned if the request is malformed or contains an error such as an invalid parameter /// value or a missing required parameter. /// /// Returned if the mount target is not in the correct state for the operation. /// /// Returned if an error occurred on the server side. /// /// Returned if there is no mount target with the specified ID found in the caller's account. /// /// Returned if the size of SecurityGroups specified in the request is greater /// than five. /// /// Returned if one of the specified security groups does not exist in the subnet's VPC. ///
public ModifyMountTargetSecurityGroups ( ModifyMountTargetSecurityGroupsRequest request ) : ModifyMountTargetSecurityGroupsResponse
request Amazon.ElasticFileSystem.Model.ModifyMountTargetSecurityGroupsRequest Container for the necessary parameters to execute the ModifyMountTargetSecurityGroups service method.
Результат ModifyMountTargetSecurityGroupsResponse
        public ModifyMountTargetSecurityGroupsResponse ModifyMountTargetSecurityGroups(ModifyMountTargetSecurityGroupsRequest request)
        {
            var marshaller = new ModifyMountTargetSecurityGroupsRequestMarshaller();
            var unmarshaller = ModifyMountTargetSecurityGroupsResponseUnmarshaller.Instance;

            return Invoke<ModifyMountTargetSecurityGroupsRequest,ModifyMountTargetSecurityGroupsResponse>(request, marshaller, unmarshaller);
        }