module Stratosphere.ApiGatewayV2.VpcLink ( VpcLink(..), mkVpcLink ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import Stratosphere.ResourceProperties import Stratosphere.Value data VpcLink = -- | See: VpcLink {haddock_workaround_ :: (), -- | See: name :: (Value Prelude.Text), -- | See: securityGroupIds :: (Prelude.Maybe (ValueList Prelude.Text)), -- | See: subnetIds :: (ValueList Prelude.Text), -- | See: tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))} deriving stock (Prelude.Eq, Prelude.Show) mkVpcLink :: Value Prelude.Text -> ValueList Prelude.Text -> VpcLink mkVpcLink name subnetIds = VpcLink {haddock_workaround_ = (), name = name, subnetIds = subnetIds, securityGroupIds = Prelude.Nothing, tags = Prelude.Nothing} instance ToResourceProperties VpcLink where toResourceProperties VpcLink {..} = ResourceProperties {awsType = "AWS::ApiGatewayV2::VpcLink", supportsTags = Prelude.True, properties = Prelude.fromList ((Prelude.<>) ["Name" JSON..= name, "SubnetIds" JSON..= subnetIds] (Prelude.catMaybes [(JSON..=) "SecurityGroupIds" Prelude.<$> securityGroupIds, (JSON..=) "Tags" Prelude.<$> tags]))} instance JSON.ToJSON VpcLink where toJSON VpcLink {..} = JSON.object (Prelude.fromList ((Prelude.<>) ["Name" JSON..= name, "SubnetIds" JSON..= subnetIds] (Prelude.catMaybes [(JSON..=) "SecurityGroupIds" Prelude.<$> securityGroupIds, (JSON..=) "Tags" Prelude.<$> tags]))) instance Property "Name" VpcLink where type PropertyType "Name" VpcLink = Value Prelude.Text set newValue VpcLink {..} = VpcLink {name = newValue, ..} instance Property "SecurityGroupIds" VpcLink where type PropertyType "SecurityGroupIds" VpcLink = ValueList Prelude.Text set newValue VpcLink {..} = VpcLink {securityGroupIds = Prelude.pure newValue, ..} instance Property "SubnetIds" VpcLink where type PropertyType "SubnetIds" VpcLink = ValueList Prelude.Text set newValue VpcLink {..} = VpcLink {subnetIds = newValue, ..} instance Property "Tags" VpcLink where type PropertyType "Tags" VpcLink = Prelude.Map Prelude.Text (Value Prelude.Text) set newValue VpcLink {..} = VpcLink {tags = Prelude.pure newValue, ..}