{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.ElastiCache.Types.CacheSubnetGroup -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.ElastiCache.Types.CacheSubnetGroup where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ElastiCache.Types.NetworkType import Amazonka.ElastiCache.Types.Subnet import qualified Amazonka.Prelude as Prelude -- | Represents the output of one of the following operations: -- -- - @CreateCacheSubnetGroup@ -- -- - @ModifyCacheSubnetGroup@ -- -- /See:/ 'newCacheSubnetGroup' smart constructor. data CacheSubnetGroup = CacheSubnetGroup' { -- | The ARN (Amazon Resource Name) of the cache subnet group. arn :: Prelude.Maybe Prelude.Text, -- | The description of the cache subnet group. cacheSubnetGroupDescription :: Prelude.Maybe Prelude.Text, -- | The name of the cache subnet group. cacheSubnetGroupName :: Prelude.Maybe Prelude.Text, -- | A list of subnets associated with the cache subnet group. subnets :: Prelude.Maybe [Subnet], -- | Either @ipv4@ | @ipv6@ | @dual_stack@. IPv6 is supported for workloads -- using Redis engine version 6.2 onward or Memcached engine version 1.6.6 -- on all instances built on the -- . supportedNetworkTypes :: Prelude.Maybe [NetworkType], -- | The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet -- group. vpcId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CacheSubnetGroup' 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: -- -- 'arn', 'cacheSubnetGroup_arn' - The ARN (Amazon Resource Name) of the cache subnet group. -- -- 'cacheSubnetGroupDescription', 'cacheSubnetGroup_cacheSubnetGroupDescription' - The description of the cache subnet group. -- -- 'cacheSubnetGroupName', 'cacheSubnetGroup_cacheSubnetGroupName' - The name of the cache subnet group. -- -- 'subnets', 'cacheSubnetGroup_subnets' - A list of subnets associated with the cache subnet group. -- -- 'supportedNetworkTypes', 'cacheSubnetGroup_supportedNetworkTypes' - Either @ipv4@ | @ipv6@ | @dual_stack@. IPv6 is supported for workloads -- using Redis engine version 6.2 onward or Memcached engine version 1.6.6 -- on all instances built on the -- . -- -- 'vpcId', 'cacheSubnetGroup_vpcId' - The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet -- group. newCacheSubnetGroup :: CacheSubnetGroup newCacheSubnetGroup = CacheSubnetGroup' { arn = Prelude.Nothing, cacheSubnetGroupDescription = Prelude.Nothing, cacheSubnetGroupName = Prelude.Nothing, subnets = Prelude.Nothing, supportedNetworkTypes = Prelude.Nothing, vpcId = Prelude.Nothing } -- | The ARN (Amazon Resource Name) of the cache subnet group. cacheSubnetGroup_arn :: Lens.Lens' CacheSubnetGroup (Prelude.Maybe Prelude.Text) cacheSubnetGroup_arn = Lens.lens (\CacheSubnetGroup' {arn} -> arn) (\s@CacheSubnetGroup' {} a -> s {arn = a} :: CacheSubnetGroup) -- | The description of the cache subnet group. cacheSubnetGroup_cacheSubnetGroupDescription :: Lens.Lens' CacheSubnetGroup (Prelude.Maybe Prelude.Text) cacheSubnetGroup_cacheSubnetGroupDescription = Lens.lens (\CacheSubnetGroup' {cacheSubnetGroupDescription} -> cacheSubnetGroupDescription) (\s@CacheSubnetGroup' {} a -> s {cacheSubnetGroupDescription = a} :: CacheSubnetGroup) -- | The name of the cache subnet group. cacheSubnetGroup_cacheSubnetGroupName :: Lens.Lens' CacheSubnetGroup (Prelude.Maybe Prelude.Text) cacheSubnetGroup_cacheSubnetGroupName = Lens.lens (\CacheSubnetGroup' {cacheSubnetGroupName} -> cacheSubnetGroupName) (\s@CacheSubnetGroup' {} a -> s {cacheSubnetGroupName = a} :: CacheSubnetGroup) -- | A list of subnets associated with the cache subnet group. cacheSubnetGroup_subnets :: Lens.Lens' CacheSubnetGroup (Prelude.Maybe [Subnet]) cacheSubnetGroup_subnets = Lens.lens (\CacheSubnetGroup' {subnets} -> subnets) (\s@CacheSubnetGroup' {} a -> s {subnets = a} :: CacheSubnetGroup) Prelude.. Lens.mapping Lens.coerced -- | Either @ipv4@ | @ipv6@ | @dual_stack@. IPv6 is supported for workloads -- using Redis engine version 6.2 onward or Memcached engine version 1.6.6 -- on all instances built on the -- . cacheSubnetGroup_supportedNetworkTypes :: Lens.Lens' CacheSubnetGroup (Prelude.Maybe [NetworkType]) cacheSubnetGroup_supportedNetworkTypes = Lens.lens (\CacheSubnetGroup' {supportedNetworkTypes} -> supportedNetworkTypes) (\s@CacheSubnetGroup' {} a -> s {supportedNetworkTypes = a} :: CacheSubnetGroup) Prelude.. Lens.mapping Lens.coerced -- | The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet -- group. cacheSubnetGroup_vpcId :: Lens.Lens' CacheSubnetGroup (Prelude.Maybe Prelude.Text) cacheSubnetGroup_vpcId = Lens.lens (\CacheSubnetGroup' {vpcId} -> vpcId) (\s@CacheSubnetGroup' {} a -> s {vpcId = a} :: CacheSubnetGroup) instance Data.FromXML CacheSubnetGroup where parseXML x = CacheSubnetGroup' Prelude.<$> (x Data..@? "ARN") Prelude.<*> (x Data..@? "CacheSubnetGroupDescription") Prelude.<*> (x Data..@? "CacheSubnetGroupName") Prelude.<*> ( x Data..@? "Subnets" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "Subnet") ) Prelude.<*> ( x Data..@? "SupportedNetworkTypes" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "member") ) Prelude.<*> (x Data..@? "VpcId") instance Prelude.Hashable CacheSubnetGroup where hashWithSalt _salt CacheSubnetGroup' {..} = _salt `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` cacheSubnetGroupDescription `Prelude.hashWithSalt` cacheSubnetGroupName `Prelude.hashWithSalt` subnets `Prelude.hashWithSalt` supportedNetworkTypes `Prelude.hashWithSalt` vpcId instance Prelude.NFData CacheSubnetGroup where rnf CacheSubnetGroup' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf cacheSubnetGroupDescription `Prelude.seq` Prelude.rnf cacheSubnetGroupName `Prelude.seq` Prelude.rnf subnets `Prelude.seq` Prelude.rnf supportedNetworkTypes `Prelude.seq` Prelude.rnf vpcId