{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.EC2.DescribeNetworkInterfaces -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Describes one or more of your network interfaces. -- -- This operation returns paginated results. module Amazonka.EC2.DescribeNetworkInterfaces ( -- * Creating a Request DescribeNetworkInterfaces (..), newDescribeNetworkInterfaces, -- * Request Lenses describeNetworkInterfaces_dryRun, describeNetworkInterfaces_filters, describeNetworkInterfaces_maxResults, describeNetworkInterfaces_networkInterfaceIds, describeNetworkInterfaces_nextToken, -- * Destructuring the Response DescribeNetworkInterfacesResponse (..), newDescribeNetworkInterfacesResponse, -- * Response Lenses describeNetworkInterfacesResponse_networkInterfaces, describeNetworkInterfacesResponse_nextToken, describeNetworkInterfacesResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | Contains the parameters for DescribeNetworkInterfaces. -- -- /See:/ 'newDescribeNetworkInterfaces' smart constructor. data DescribeNetworkInterfaces = DescribeNetworkInterfaces' { -- | Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. dryRun :: Prelude.Maybe Prelude.Bool, -- | One or more filters. -- -- - @addresses.private-ip-address@ - The private IPv4 addresses -- associated with the network interface. -- -- - @addresses.primary@ - Whether the private IPv4 address is the -- primary IP address associated with the network interface. -- -- - @addresses.association.public-ip@ - The association ID returned when -- the network interface was associated with the Elastic IP address -- (IPv4). -- -- - @addresses.association.owner-id@ - The owner ID of the addresses -- associated with the network interface. -- -- - @association.association-id@ - The association ID returned when the -- network interface was associated with an IPv4 address. -- -- - @association.allocation-id@ - The allocation ID returned when you -- allocated the Elastic IP address (IPv4) for your network interface. -- -- - @association.ip-owner-id@ - The owner of the Elastic IP address -- (IPv4) associated with the network interface. -- -- - @association.public-ip@ - The address of the Elastic IP address -- (IPv4) bound to the network interface. -- -- - @association.public-dns-name@ - The public DNS name for the network -- interface (IPv4). -- -- - @attachment.attachment-id@ - The ID of the interface attachment. -- -- - @attachment.attach-time@ - The time that the network interface was -- attached to an instance. -- -- - @attachment.delete-on-termination@ - Indicates whether the -- attachment is deleted when an instance is terminated. -- -- - @attachment.device-index@ - The device index to which the network -- interface is attached. -- -- - @attachment.instance-id@ - The ID of the instance to which the -- network interface is attached. -- -- - @attachment.instance-owner-id@ - The owner ID of the instance to -- which the network interface is attached. -- -- - @attachment.status@ - The status of the attachment (@attaching@ | -- @attached@ | @detaching@ | @detached@). -- -- - @availability-zone@ - The Availability Zone of the network -- interface. -- -- - @description@ - The description of the network interface. -- -- - @group-id@ - The ID of a security group associated with the network -- interface. -- -- - @group-name@ - The name of a security group associated with the -- network interface. -- -- - @ipv6-addresses.ipv6-address@ - An IPv6 address associated with the -- network interface. -- -- - @interface-type@ - The type of network interface -- (@api_gateway_managed@ | @aws_codestar_connections_managed@ | -- @branch@ | @efa@ | @gateway_load_balancer@ | -- @gateway_load_balancer_endpoint@ | @global_accelerator_managed@ | -- @interface@ | @iot_rules_managed@ | @lambda@ | @load_balancer@ | -- @nat_gateway@ | @network_load_balancer@ | @quicksight@ | -- @transit_gateway@ | @trunk@ | @vpc_endpoint@). -- -- - @mac-address@ - The MAC address of the network interface. -- -- - @network-interface-id@ - The ID of the network interface. -- -- - @owner-id@ - The Amazon Web Services account ID of the network -- interface owner. -- -- - @private-ip-address@ - The private IPv4 address or addresses of the -- network interface. -- -- - @private-dns-name@ - The private DNS name of the network interface -- (IPv4). -- -- - @requester-id@ - The alias or Amazon Web Services account ID of the -- principal or service that created the network interface. -- -- - @requester-managed@ - Indicates whether the network interface is -- being managed by an Amazon Web Service (for example, Amazon Web -- Services Management Console, Auto Scaling, and so on). -- -- - @source-dest-check@ - Indicates whether the network interface -- performs source\/destination checking. A value of @true@ means -- checking is enabled, and @false@ means checking is disabled. The -- value must be @false@ for the network interface to perform network -- address translation (NAT) in your VPC. -- -- - @status@ - The status of the network interface. If the network -- interface is not attached to an instance, the status is @available@; -- if a network interface is attached to an instance the status is -- @in-use@. -- -- - @subnet-id@ - The ID of the subnet for the network interface. -- -- - @tag@:\ - The key\/value combination of a tag assigned to the -- resource. Use the tag key in the filter name and the tag value as -- the filter value. For example, to find all resources that have a tag -- with the key @Owner@ and the value @TeamA@, specify @tag:Owner@ for -- the filter name and @TeamA@ for the filter value. -- -- - @tag-key@ - The key of a tag assigned to the resource. Use this -- filter to find all resources assigned a tag with a specific key, -- regardless of the tag value. -- -- - @vpc-id@ - The ID of the VPC for the network interface. filters :: Prelude.Maybe [Filter], -- | The maximum number of items to return for this request. The request -- returns a token that you can specify in a subsequent call to get the -- next set of results. You cannot specify this parameter and the network -- interface IDs parameter in the same request. maxResults :: Prelude.Maybe Prelude.Natural, -- | The network interface IDs. -- -- Default: Describes all your network interfaces. networkInterfaceIds :: Prelude.Maybe [Prelude.Text], -- | The token to retrieve the next page of results. nextToken :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeNetworkInterfaces' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'dryRun', 'describeNetworkInterfaces_dryRun' - Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. -- -- 'filters', 'describeNetworkInterfaces_filters' - One or more filters. -- -- - @addresses.private-ip-address@ - The private IPv4 addresses -- associated with the network interface. -- -- - @addresses.primary@ - Whether the private IPv4 address is the -- primary IP address associated with the network interface. -- -- - @addresses.association.public-ip@ - The association ID returned when -- the network interface was associated with the Elastic IP address -- (IPv4). -- -- - @addresses.association.owner-id@ - The owner ID of the addresses -- associated with the network interface. -- -- - @association.association-id@ - The association ID returned when the -- network interface was associated with an IPv4 address. -- -- - @association.allocation-id@ - The allocation ID returned when you -- allocated the Elastic IP address (IPv4) for your network interface. -- -- - @association.ip-owner-id@ - The owner of the Elastic IP address -- (IPv4) associated with the network interface. -- -- - @association.public-ip@ - The address of the Elastic IP address -- (IPv4) bound to the network interface. -- -- - @association.public-dns-name@ - The public DNS name for the network -- interface (IPv4). -- -- - @attachment.attachment-id@ - The ID of the interface attachment. -- -- - @attachment.attach-time@ - The time that the network interface was -- attached to an instance. -- -- - @attachment.delete-on-termination@ - Indicates whether the -- attachment is deleted when an instance is terminated. -- -- - @attachment.device-index@ - The device index to which the network -- interface is attached. -- -- - @attachment.instance-id@ - The ID of the instance to which the -- network interface is attached. -- -- - @attachment.instance-owner-id@ - The owner ID of the instance to -- which the network interface is attached. -- -- - @attachment.status@ - The status of the attachment (@attaching@ | -- @attached@ | @detaching@ | @detached@). -- -- - @availability-zone@ - The Availability Zone of the network -- interface. -- -- - @description@ - The description of the network interface. -- -- - @group-id@ - The ID of a security group associated with the network -- interface. -- -- - @group-name@ - The name of a security group associated with the -- network interface. -- -- - @ipv6-addresses.ipv6-address@ - An IPv6 address associated with the -- network interface. -- -- - @interface-type@ - The type of network interface -- (@api_gateway_managed@ | @aws_codestar_connections_managed@ | -- @branch@ | @efa@ | @gateway_load_balancer@ | -- @gateway_load_balancer_endpoint@ | @global_accelerator_managed@ | -- @interface@ | @iot_rules_managed@ | @lambda@ | @load_balancer@ | -- @nat_gateway@ | @network_load_balancer@ | @quicksight@ | -- @transit_gateway@ | @trunk@ | @vpc_endpoint@). -- -- - @mac-address@ - The MAC address of the network interface. -- -- - @network-interface-id@ - The ID of the network interface. -- -- - @owner-id@ - The Amazon Web Services account ID of the network -- interface owner. -- -- - @private-ip-address@ - The private IPv4 address or addresses of the -- network interface. -- -- - @private-dns-name@ - The private DNS name of the network interface -- (IPv4). -- -- - @requester-id@ - The alias or Amazon Web Services account ID of the -- principal or service that created the network interface. -- -- - @requester-managed@ - Indicates whether the network interface is -- being managed by an Amazon Web Service (for example, Amazon Web -- Services Management Console, Auto Scaling, and so on). -- -- - @source-dest-check@ - Indicates whether the network interface -- performs source\/destination checking. A value of @true@ means -- checking is enabled, and @false@ means checking is disabled. The -- value must be @false@ for the network interface to perform network -- address translation (NAT) in your VPC. -- -- - @status@ - The status of the network interface. If the network -- interface is not attached to an instance, the status is @available@; -- if a network interface is attached to an instance the status is -- @in-use@. -- -- - @subnet-id@ - The ID of the subnet for the network interface. -- -- - @tag@:\ - The key\/value combination of a tag assigned to the -- resource. Use the tag key in the filter name and the tag value as -- the filter value. For example, to find all resources that have a tag -- with the key @Owner@ and the value @TeamA@, specify @tag:Owner@ for -- the filter name and @TeamA@ for the filter value. -- -- - @tag-key@ - The key of a tag assigned to the resource. Use this -- filter to find all resources assigned a tag with a specific key, -- regardless of the tag value. -- -- - @vpc-id@ - The ID of the VPC for the network interface. -- -- 'maxResults', 'describeNetworkInterfaces_maxResults' - The maximum number of items to return for this request. The request -- returns a token that you can specify in a subsequent call to get the -- next set of results. You cannot specify this parameter and the network -- interface IDs parameter in the same request. -- -- 'networkInterfaceIds', 'describeNetworkInterfaces_networkInterfaceIds' - The network interface IDs. -- -- Default: Describes all your network interfaces. -- -- 'nextToken', 'describeNetworkInterfaces_nextToken' - The token to retrieve the next page of results. newDescribeNetworkInterfaces :: DescribeNetworkInterfaces newDescribeNetworkInterfaces = DescribeNetworkInterfaces' { dryRun = Prelude.Nothing, filters = Prelude.Nothing, maxResults = Prelude.Nothing, networkInterfaceIds = Prelude.Nothing, nextToken = Prelude.Nothing } -- | Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. describeNetworkInterfaces_dryRun :: Lens.Lens' DescribeNetworkInterfaces (Prelude.Maybe Prelude.Bool) describeNetworkInterfaces_dryRun = Lens.lens (\DescribeNetworkInterfaces' {dryRun} -> dryRun) (\s@DescribeNetworkInterfaces' {} a -> s {dryRun = a} :: DescribeNetworkInterfaces) -- | One or more filters. -- -- - @addresses.private-ip-address@ - The private IPv4 addresses -- associated with the network interface. -- -- - @addresses.primary@ - Whether the private IPv4 address is the -- primary IP address associated with the network interface. -- -- - @addresses.association.public-ip@ - The association ID returned when -- the network interface was associated with the Elastic IP address -- (IPv4). -- -- - @addresses.association.owner-id@ - The owner ID of the addresses -- associated with the network interface. -- -- - @association.association-id@ - The association ID returned when the -- network interface was associated with an IPv4 address. -- -- - @association.allocation-id@ - The allocation ID returned when you -- allocated the Elastic IP address (IPv4) for your network interface. -- -- - @association.ip-owner-id@ - The owner of the Elastic IP address -- (IPv4) associated with the network interface. -- -- - @association.public-ip@ - The address of the Elastic IP address -- (IPv4) bound to the network interface. -- -- - @association.public-dns-name@ - The public DNS name for the network -- interface (IPv4). -- -- - @attachment.attachment-id@ - The ID of the interface attachment. -- -- - @attachment.attach-time@ - The time that the network interface was -- attached to an instance. -- -- - @attachment.delete-on-termination@ - Indicates whether the -- attachment is deleted when an instance is terminated. -- -- - @attachment.device-index@ - The device index to which the network -- interface is attached. -- -- - @attachment.instance-id@ - The ID of the instance to which the -- network interface is attached. -- -- - @attachment.instance-owner-id@ - The owner ID of the instance to -- which the network interface is attached. -- -- - @attachment.status@ - The status of the attachment (@attaching@ | -- @attached@ | @detaching@ | @detached@). -- -- - @availability-zone@ - The Availability Zone of the network -- interface. -- -- - @description@ - The description of the network interface. -- -- - @group-id@ - The ID of a security group associated with the network -- interface. -- -- - @group-name@ - The name of a security group associated with the -- network interface. -- -- - @ipv6-addresses.ipv6-address@ - An IPv6 address associated with the -- network interface. -- -- - @interface-type@ - The type of network interface -- (@api_gateway_managed@ | @aws_codestar_connections_managed@ | -- @branch@ | @efa@ | @gateway_load_balancer@ | -- @gateway_load_balancer_endpoint@ | @global_accelerator_managed@ | -- @interface@ | @iot_rules_managed@ | @lambda@ | @load_balancer@ | -- @nat_gateway@ | @network_load_balancer@ | @quicksight@ | -- @transit_gateway@ | @trunk@ | @vpc_endpoint@). -- -- - @mac-address@ - The MAC address of the network interface. -- -- - @network-interface-id@ - The ID of the network interface. -- -- - @owner-id@ - The Amazon Web Services account ID of the network -- interface owner. -- -- - @private-ip-address@ - The private IPv4 address or addresses of the -- network interface. -- -- - @private-dns-name@ - The private DNS name of the network interface -- (IPv4). -- -- - @requester-id@ - The alias or Amazon Web Services account ID of the -- principal or service that created the network interface. -- -- - @requester-managed@ - Indicates whether the network interface is -- being managed by an Amazon Web Service (for example, Amazon Web -- Services Management Console, Auto Scaling, and so on). -- -- - @source-dest-check@ - Indicates whether the network interface -- performs source\/destination checking. A value of @true@ means -- checking is enabled, and @false@ means checking is disabled. The -- value must be @false@ for the network interface to perform network -- address translation (NAT) in your VPC. -- -- - @status@ - The status of the network interface. If the network -- interface is not attached to an instance, the status is @available@; -- if a network interface is attached to an instance the status is -- @in-use@. -- -- - @subnet-id@ - The ID of the subnet for the network interface. -- -- - @tag@:\ - The key\/value combination of a tag assigned to the -- resource. Use the tag key in the filter name and the tag value as -- the filter value. For example, to find all resources that have a tag -- with the key @Owner@ and the value @TeamA@, specify @tag:Owner@ for -- the filter name and @TeamA@ for the filter value. -- -- - @tag-key@ - The key of a tag assigned to the resource. Use this -- filter to find all resources assigned a tag with a specific key, -- regardless of the tag value. -- -- - @vpc-id@ - The ID of the VPC for the network interface. describeNetworkInterfaces_filters :: Lens.Lens' DescribeNetworkInterfaces (Prelude.Maybe [Filter]) describeNetworkInterfaces_filters = Lens.lens (\DescribeNetworkInterfaces' {filters} -> filters) (\s@DescribeNetworkInterfaces' {} a -> s {filters = a} :: DescribeNetworkInterfaces) Prelude.. Lens.mapping Lens.coerced -- | The maximum number of items to return for this request. The request -- returns a token that you can specify in a subsequent call to get the -- next set of results. You cannot specify this parameter and the network -- interface IDs parameter in the same request. describeNetworkInterfaces_maxResults :: Lens.Lens' DescribeNetworkInterfaces (Prelude.Maybe Prelude.Natural) describeNetworkInterfaces_maxResults = Lens.lens (\DescribeNetworkInterfaces' {maxResults} -> maxResults) (\s@DescribeNetworkInterfaces' {} a -> s {maxResults = a} :: DescribeNetworkInterfaces) -- | The network interface IDs. -- -- Default: Describes all your network interfaces. describeNetworkInterfaces_networkInterfaceIds :: Lens.Lens' DescribeNetworkInterfaces (Prelude.Maybe [Prelude.Text]) describeNetworkInterfaces_networkInterfaceIds = Lens.lens (\DescribeNetworkInterfaces' {networkInterfaceIds} -> networkInterfaceIds) (\s@DescribeNetworkInterfaces' {} a -> s {networkInterfaceIds = a} :: DescribeNetworkInterfaces) Prelude.. Lens.mapping Lens.coerced -- | The token to retrieve the next page of results. describeNetworkInterfaces_nextToken :: Lens.Lens' DescribeNetworkInterfaces (Prelude.Maybe Prelude.Text) describeNetworkInterfaces_nextToken = Lens.lens (\DescribeNetworkInterfaces' {nextToken} -> nextToken) (\s@DescribeNetworkInterfaces' {} a -> s {nextToken = a} :: DescribeNetworkInterfaces) instance Core.AWSPager DescribeNetworkInterfaces where page rq rs | Core.stop ( rs Lens.^? describeNetworkInterfacesResponse_nextToken Prelude.. Lens._Just ) = Prelude.Nothing | Core.stop ( rs Lens.^? describeNetworkInterfacesResponse_networkInterfaces Prelude.. Lens._Just ) = Prelude.Nothing | Prelude.otherwise = Prelude.Just Prelude.$ rq Prelude.& describeNetworkInterfaces_nextToken Lens..~ rs Lens.^? describeNetworkInterfacesResponse_nextToken Prelude.. Lens._Just instance Core.AWSRequest DescribeNetworkInterfaces where type AWSResponse DescribeNetworkInterfaces = DescribeNetworkInterfacesResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXML ( \s h x -> DescribeNetworkInterfacesResponse' Prelude.<$> ( x Data..@? "networkInterfaceSet" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "item") ) Prelude.<*> (x Data..@? "nextToken") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeNetworkInterfaces where hashWithSalt _salt DescribeNetworkInterfaces' {..} = _salt `Prelude.hashWithSalt` dryRun `Prelude.hashWithSalt` filters `Prelude.hashWithSalt` maxResults `Prelude.hashWithSalt` networkInterfaceIds `Prelude.hashWithSalt` nextToken instance Prelude.NFData DescribeNetworkInterfaces where rnf DescribeNetworkInterfaces' {..} = Prelude.rnf dryRun `Prelude.seq` Prelude.rnf filters `Prelude.seq` Prelude.rnf maxResults `Prelude.seq` Prelude.rnf networkInterfaceIds `Prelude.seq` Prelude.rnf nextToken instance Data.ToHeaders DescribeNetworkInterfaces where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DescribeNetworkInterfaces where toPath = Prelude.const "/" instance Data.ToQuery DescribeNetworkInterfaces where toQuery DescribeNetworkInterfaces' {..} = Prelude.mconcat [ "Action" Data.=: ("DescribeNetworkInterfaces" :: Prelude.ByteString), "Version" Data.=: ("2016-11-15" :: Prelude.ByteString), "DryRun" Data.=: dryRun, Data.toQuery (Data.toQueryList "Filter" Prelude.<$> filters), "MaxResults" Data.=: maxResults, Data.toQuery ( Data.toQueryList "NetworkInterfaceId" Prelude.<$> networkInterfaceIds ), "NextToken" Data.=: nextToken ] -- | Contains the output of DescribeNetworkInterfaces. -- -- /See:/ 'newDescribeNetworkInterfacesResponse' smart constructor. data DescribeNetworkInterfacesResponse = DescribeNetworkInterfacesResponse' { -- | Information about one or more network interfaces. networkInterfaces :: Prelude.Maybe [NetworkInterface], -- | The token to use to retrieve the next page of results. This value is -- @null@ when there are no more results to return. nextToken :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeNetworkInterfacesResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'networkInterfaces', 'describeNetworkInterfacesResponse_networkInterfaces' - Information about one or more network interfaces. -- -- 'nextToken', 'describeNetworkInterfacesResponse_nextToken' - The token to use to retrieve the next page of results. This value is -- @null@ when there are no more results to return. -- -- 'httpStatus', 'describeNetworkInterfacesResponse_httpStatus' - The response's http status code. newDescribeNetworkInterfacesResponse :: -- | 'httpStatus' Prelude.Int -> DescribeNetworkInterfacesResponse newDescribeNetworkInterfacesResponse pHttpStatus_ = DescribeNetworkInterfacesResponse' { networkInterfaces = Prelude.Nothing, nextToken = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about one or more network interfaces. describeNetworkInterfacesResponse_networkInterfaces :: Lens.Lens' DescribeNetworkInterfacesResponse (Prelude.Maybe [NetworkInterface]) describeNetworkInterfacesResponse_networkInterfaces = Lens.lens (\DescribeNetworkInterfacesResponse' {networkInterfaces} -> networkInterfaces) (\s@DescribeNetworkInterfacesResponse' {} a -> s {networkInterfaces = a} :: DescribeNetworkInterfacesResponse) Prelude.. Lens.mapping Lens.coerced -- | The token to use to retrieve the next page of results. This value is -- @null@ when there are no more results to return. describeNetworkInterfacesResponse_nextToken :: Lens.Lens' DescribeNetworkInterfacesResponse (Prelude.Maybe Prelude.Text) describeNetworkInterfacesResponse_nextToken = Lens.lens (\DescribeNetworkInterfacesResponse' {nextToken} -> nextToken) (\s@DescribeNetworkInterfacesResponse' {} a -> s {nextToken = a} :: DescribeNetworkInterfacesResponse) -- | The response's http status code. describeNetworkInterfacesResponse_httpStatus :: Lens.Lens' DescribeNetworkInterfacesResponse Prelude.Int describeNetworkInterfacesResponse_httpStatus = Lens.lens (\DescribeNetworkInterfacesResponse' {httpStatus} -> httpStatus) (\s@DescribeNetworkInterfacesResponse' {} a -> s {httpStatus = a} :: DescribeNetworkInterfacesResponse) instance Prelude.NFData DescribeNetworkInterfacesResponse where rnf DescribeNetworkInterfacesResponse' {..} = Prelude.rnf networkInterfaces `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf httpStatus