{-# 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.AppRunner.Types.VpcConnector
-- 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.AppRunner.Types.VpcConnector where

import Amazonka.AppRunner.Types.VpcConnectorStatus
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude

-- | Describes an App Runner VPC connector resource. A VPC connector
-- describes the Amazon Virtual Private Cloud (Amazon VPC) that an App
-- Runner service is associated with, and the subnets and security group
-- that are used.
--
-- Multiple revisions of a connector might have the same @Name@ and
-- different @Revision@ values.
--
-- At this time, App Runner supports only one revision per name.
--
-- /See:/ 'newVpcConnector' smart constructor.
data VpcConnector = VpcConnector'
  { -- | The time when the VPC connector was created. It\'s in Unix time stamp
    -- format.
    VpcConnector -> Maybe POSIX
createdAt :: Prelude.Maybe Data.POSIX,
    -- | The time when the VPC connector was deleted. It\'s in Unix time stamp
    -- format.
    VpcConnector -> Maybe POSIX
deletedAt :: Prelude.Maybe Data.POSIX,
    -- | A list of IDs of security groups that App Runner uses for access to
    -- Amazon Web Services resources under the specified subnets. If not
    -- specified, App Runner uses the default security group of the Amazon VPC.
    -- The default security group allows all outbound traffic.
    VpcConnector -> Maybe [Text]
securityGroups :: Prelude.Maybe [Prelude.Text],
    -- | The current state of the VPC connector. If the status of a connector
    -- revision is @INACTIVE@, it was deleted and can\'t be used. Inactive
    -- connector revisions are permanently removed some time after they are
    -- deleted.
    VpcConnector -> Maybe VpcConnectorStatus
status :: Prelude.Maybe VpcConnectorStatus,
    -- | A list of IDs of subnets that App Runner uses for your service. All IDs
    -- are of subnets of a single Amazon VPC.
    VpcConnector -> Maybe [Text]
subnets :: Prelude.Maybe [Prelude.Text],
    -- | The Amazon Resource Name (ARN) of this VPC connector.
    VpcConnector -> Maybe Text
vpcConnectorArn :: Prelude.Maybe Prelude.Text,
    -- | The customer-provided VPC connector name.
    VpcConnector -> Maybe Text
vpcConnectorName :: Prelude.Maybe Prelude.Text,
    -- | The revision of this VPC connector. It\'s unique among all the active
    -- connectors (@\"Status\": \"ACTIVE\"@) that share the same @Name@.
    --
    -- At this time, App Runner supports only one revision per name.
    VpcConnector -> Maybe Int
vpcConnectorRevision :: Prelude.Maybe Prelude.Int
  }
  deriving (VpcConnector -> VpcConnector -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: VpcConnector -> VpcConnector -> Bool
$c/= :: VpcConnector -> VpcConnector -> Bool
== :: VpcConnector -> VpcConnector -> Bool
$c== :: VpcConnector -> VpcConnector -> Bool
Prelude.Eq, ReadPrec [VpcConnector]
ReadPrec VpcConnector
Int -> ReadS VpcConnector
ReadS [VpcConnector]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [VpcConnector]
$creadListPrec :: ReadPrec [VpcConnector]
readPrec :: ReadPrec VpcConnector
$creadPrec :: ReadPrec VpcConnector
readList :: ReadS [VpcConnector]
$creadList :: ReadS [VpcConnector]
readsPrec :: Int -> ReadS VpcConnector
$creadsPrec :: Int -> ReadS VpcConnector
Prelude.Read, Int -> VpcConnector -> ShowS
[VpcConnector] -> ShowS
VpcConnector -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [VpcConnector] -> ShowS
$cshowList :: [VpcConnector] -> ShowS
show :: VpcConnector -> String
$cshow :: VpcConnector -> String
showsPrec :: Int -> VpcConnector -> ShowS
$cshowsPrec :: Int -> VpcConnector -> ShowS
Prelude.Show, forall x. Rep VpcConnector x -> VpcConnector
forall x. VpcConnector -> Rep VpcConnector x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep VpcConnector x -> VpcConnector
$cfrom :: forall x. VpcConnector -> Rep VpcConnector x
Prelude.Generic)

-- |
-- Create a value of 'VpcConnector' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'createdAt', 'vpcConnector_createdAt' - The time when the VPC connector was created. It\'s in Unix time stamp
-- format.
--
-- 'deletedAt', 'vpcConnector_deletedAt' - The time when the VPC connector was deleted. It\'s in Unix time stamp
-- format.
--
-- 'securityGroups', 'vpcConnector_securityGroups' - A list of IDs of security groups that App Runner uses for access to
-- Amazon Web Services resources under the specified subnets. If not
-- specified, App Runner uses the default security group of the Amazon VPC.
-- The default security group allows all outbound traffic.
--
-- 'status', 'vpcConnector_status' - The current state of the VPC connector. If the status of a connector
-- revision is @INACTIVE@, it was deleted and can\'t be used. Inactive
-- connector revisions are permanently removed some time after they are
-- deleted.
--
-- 'subnets', 'vpcConnector_subnets' - A list of IDs of subnets that App Runner uses for your service. All IDs
-- are of subnets of a single Amazon VPC.
--
-- 'vpcConnectorArn', 'vpcConnector_vpcConnectorArn' - The Amazon Resource Name (ARN) of this VPC connector.
--
-- 'vpcConnectorName', 'vpcConnector_vpcConnectorName' - The customer-provided VPC connector name.
--
-- 'vpcConnectorRevision', 'vpcConnector_vpcConnectorRevision' - The revision of this VPC connector. It\'s unique among all the active
-- connectors (@\"Status\": \"ACTIVE\"@) that share the same @Name@.
--
-- At this time, App Runner supports only one revision per name.
newVpcConnector ::
  VpcConnector
newVpcConnector :: VpcConnector
newVpcConnector =
  VpcConnector'
    { $sel:createdAt:VpcConnector' :: Maybe POSIX
createdAt = forall a. Maybe a
Prelude.Nothing,
      $sel:deletedAt:VpcConnector' :: Maybe POSIX
deletedAt = forall a. Maybe a
Prelude.Nothing,
      $sel:securityGroups:VpcConnector' :: Maybe [Text]
securityGroups = forall a. Maybe a
Prelude.Nothing,
      $sel:status:VpcConnector' :: Maybe VpcConnectorStatus
status = forall a. Maybe a
Prelude.Nothing,
      $sel:subnets:VpcConnector' :: Maybe [Text]
subnets = forall a. Maybe a
Prelude.Nothing,
      $sel:vpcConnectorArn:VpcConnector' :: Maybe Text
vpcConnectorArn = forall a. Maybe a
Prelude.Nothing,
      $sel:vpcConnectorName:VpcConnector' :: Maybe Text
vpcConnectorName = forall a. Maybe a
Prelude.Nothing,
      $sel:vpcConnectorRevision:VpcConnector' :: Maybe Int
vpcConnectorRevision = forall a. Maybe a
Prelude.Nothing
    }

-- | The time when the VPC connector was created. It\'s in Unix time stamp
-- format.
vpcConnector_createdAt :: Lens.Lens' VpcConnector (Prelude.Maybe Prelude.UTCTime)
vpcConnector_createdAt :: Lens' VpcConnector (Maybe UTCTime)
vpcConnector_createdAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe POSIX
createdAt :: Maybe POSIX
$sel:createdAt:VpcConnector' :: VpcConnector -> Maybe POSIX
createdAt} -> Maybe POSIX
createdAt) (\s :: VpcConnector
s@VpcConnector' {} Maybe POSIX
a -> VpcConnector
s {$sel:createdAt:VpcConnector' :: Maybe POSIX
createdAt = Maybe POSIX
a} :: VpcConnector) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | The time when the VPC connector was deleted. It\'s in Unix time stamp
-- format.
vpcConnector_deletedAt :: Lens.Lens' VpcConnector (Prelude.Maybe Prelude.UTCTime)
vpcConnector_deletedAt :: Lens' VpcConnector (Maybe UTCTime)
vpcConnector_deletedAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe POSIX
deletedAt :: Maybe POSIX
$sel:deletedAt:VpcConnector' :: VpcConnector -> Maybe POSIX
deletedAt} -> Maybe POSIX
deletedAt) (\s :: VpcConnector
s@VpcConnector' {} Maybe POSIX
a -> VpcConnector
s {$sel:deletedAt:VpcConnector' :: Maybe POSIX
deletedAt = Maybe POSIX
a} :: VpcConnector) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | A list of IDs of security groups that App Runner uses for access to
-- Amazon Web Services resources under the specified subnets. If not
-- specified, App Runner uses the default security group of the Amazon VPC.
-- The default security group allows all outbound traffic.
vpcConnector_securityGroups :: Lens.Lens' VpcConnector (Prelude.Maybe [Prelude.Text])
vpcConnector_securityGroups :: Lens' VpcConnector (Maybe [Text])
vpcConnector_securityGroups = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe [Text]
securityGroups :: Maybe [Text]
$sel:securityGroups:VpcConnector' :: VpcConnector -> Maybe [Text]
securityGroups} -> Maybe [Text]
securityGroups) (\s :: VpcConnector
s@VpcConnector' {} Maybe [Text]
a -> VpcConnector
s {$sel:securityGroups:VpcConnector' :: Maybe [Text]
securityGroups = Maybe [Text]
a} :: VpcConnector) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The current state of the VPC connector. If the status of a connector
-- revision is @INACTIVE@, it was deleted and can\'t be used. Inactive
-- connector revisions are permanently removed some time after they are
-- deleted.
vpcConnector_status :: Lens.Lens' VpcConnector (Prelude.Maybe VpcConnectorStatus)
vpcConnector_status :: Lens' VpcConnector (Maybe VpcConnectorStatus)
vpcConnector_status = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe VpcConnectorStatus
status :: Maybe VpcConnectorStatus
$sel:status:VpcConnector' :: VpcConnector -> Maybe VpcConnectorStatus
status} -> Maybe VpcConnectorStatus
status) (\s :: VpcConnector
s@VpcConnector' {} Maybe VpcConnectorStatus
a -> VpcConnector
s {$sel:status:VpcConnector' :: Maybe VpcConnectorStatus
status = Maybe VpcConnectorStatus
a} :: VpcConnector)

-- | A list of IDs of subnets that App Runner uses for your service. All IDs
-- are of subnets of a single Amazon VPC.
vpcConnector_subnets :: Lens.Lens' VpcConnector (Prelude.Maybe [Prelude.Text])
vpcConnector_subnets :: Lens' VpcConnector (Maybe [Text])
vpcConnector_subnets = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe [Text]
subnets :: Maybe [Text]
$sel:subnets:VpcConnector' :: VpcConnector -> Maybe [Text]
subnets} -> Maybe [Text]
subnets) (\s :: VpcConnector
s@VpcConnector' {} Maybe [Text]
a -> VpcConnector
s {$sel:subnets:VpcConnector' :: Maybe [Text]
subnets = Maybe [Text]
a} :: VpcConnector) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The Amazon Resource Name (ARN) of this VPC connector.
vpcConnector_vpcConnectorArn :: Lens.Lens' VpcConnector (Prelude.Maybe Prelude.Text)
vpcConnector_vpcConnectorArn :: Lens' VpcConnector (Maybe Text)
vpcConnector_vpcConnectorArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe Text
vpcConnectorArn :: Maybe Text
$sel:vpcConnectorArn:VpcConnector' :: VpcConnector -> Maybe Text
vpcConnectorArn} -> Maybe Text
vpcConnectorArn) (\s :: VpcConnector
s@VpcConnector' {} Maybe Text
a -> VpcConnector
s {$sel:vpcConnectorArn:VpcConnector' :: Maybe Text
vpcConnectorArn = Maybe Text
a} :: VpcConnector)

-- | The customer-provided VPC connector name.
vpcConnector_vpcConnectorName :: Lens.Lens' VpcConnector (Prelude.Maybe Prelude.Text)
vpcConnector_vpcConnectorName :: Lens' VpcConnector (Maybe Text)
vpcConnector_vpcConnectorName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe Text
vpcConnectorName :: Maybe Text
$sel:vpcConnectorName:VpcConnector' :: VpcConnector -> Maybe Text
vpcConnectorName} -> Maybe Text
vpcConnectorName) (\s :: VpcConnector
s@VpcConnector' {} Maybe Text
a -> VpcConnector
s {$sel:vpcConnectorName:VpcConnector' :: Maybe Text
vpcConnectorName = Maybe Text
a} :: VpcConnector)

-- | The revision of this VPC connector. It\'s unique among all the active
-- connectors (@\"Status\": \"ACTIVE\"@) that share the same @Name@.
--
-- At this time, App Runner supports only one revision per name.
vpcConnector_vpcConnectorRevision :: Lens.Lens' VpcConnector (Prelude.Maybe Prelude.Int)
vpcConnector_vpcConnectorRevision :: Lens' VpcConnector (Maybe Int)
vpcConnector_vpcConnectorRevision = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConnector' {Maybe Int
vpcConnectorRevision :: Maybe Int
$sel:vpcConnectorRevision:VpcConnector' :: VpcConnector -> Maybe Int
vpcConnectorRevision} -> Maybe Int
vpcConnectorRevision) (\s :: VpcConnector
s@VpcConnector' {} Maybe Int
a -> VpcConnector
s {$sel:vpcConnectorRevision:VpcConnector' :: Maybe Int
vpcConnectorRevision = Maybe Int
a} :: VpcConnector)

instance Data.FromJSON VpcConnector where
  parseJSON :: Value -> Parser VpcConnector
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"VpcConnector"
      ( \Object
x ->
          Maybe POSIX
-> Maybe POSIX
-> Maybe [Text]
-> Maybe VpcConnectorStatus
-> Maybe [Text]
-> Maybe Text
-> Maybe Text
-> Maybe Int
-> VpcConnector
VpcConnector'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"CreatedAt")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"DeletedAt")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"SecurityGroups" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Status")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Subnets" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"VpcConnectorArn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"VpcConnectorName")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"VpcConnectorRevision")
      )

instance Prelude.Hashable VpcConnector where
  hashWithSalt :: Int -> VpcConnector -> Int
hashWithSalt Int
_salt VpcConnector' {Maybe Int
Maybe [Text]
Maybe Text
Maybe POSIX
Maybe VpcConnectorStatus
vpcConnectorRevision :: Maybe Int
vpcConnectorName :: Maybe Text
vpcConnectorArn :: Maybe Text
subnets :: Maybe [Text]
status :: Maybe VpcConnectorStatus
securityGroups :: Maybe [Text]
deletedAt :: Maybe POSIX
createdAt :: Maybe POSIX
$sel:vpcConnectorRevision:VpcConnector' :: VpcConnector -> Maybe Int
$sel:vpcConnectorName:VpcConnector' :: VpcConnector -> Maybe Text
$sel:vpcConnectorArn:VpcConnector' :: VpcConnector -> Maybe Text
$sel:subnets:VpcConnector' :: VpcConnector -> Maybe [Text]
$sel:status:VpcConnector' :: VpcConnector -> Maybe VpcConnectorStatus
$sel:securityGroups:VpcConnector' :: VpcConnector -> Maybe [Text]
$sel:deletedAt:VpcConnector' :: VpcConnector -> Maybe POSIX
$sel:createdAt:VpcConnector' :: VpcConnector -> Maybe POSIX
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
createdAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
deletedAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Text]
securityGroups
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe VpcConnectorStatus
status
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Text]
subnets
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
vpcConnectorArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
vpcConnectorName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Int
vpcConnectorRevision

instance Prelude.NFData VpcConnector where
  rnf :: VpcConnector -> ()
rnf VpcConnector' {Maybe Int
Maybe [Text]
Maybe Text
Maybe POSIX
Maybe VpcConnectorStatus
vpcConnectorRevision :: Maybe Int
vpcConnectorName :: Maybe Text
vpcConnectorArn :: Maybe Text
subnets :: Maybe [Text]
status :: Maybe VpcConnectorStatus
securityGroups :: Maybe [Text]
deletedAt :: Maybe POSIX
createdAt :: Maybe POSIX
$sel:vpcConnectorRevision:VpcConnector' :: VpcConnector -> Maybe Int
$sel:vpcConnectorName:VpcConnector' :: VpcConnector -> Maybe Text
$sel:vpcConnectorArn:VpcConnector' :: VpcConnector -> Maybe Text
$sel:subnets:VpcConnector' :: VpcConnector -> Maybe [Text]
$sel:status:VpcConnector' :: VpcConnector -> Maybe VpcConnectorStatus
$sel:securityGroups:VpcConnector' :: VpcConnector -> Maybe [Text]
$sel:deletedAt:VpcConnector' :: VpcConnector -> Maybe POSIX
$sel:createdAt:VpcConnector' :: VpcConnector -> Maybe POSIX
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
createdAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
deletedAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [Text]
securityGroups
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe VpcConnectorStatus
status
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [Text]
subnets
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
vpcConnectorArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
vpcConnectorName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Int
vpcConnectorRevision