amazonka-appstream-2.0: gen/Amazonka/AppStream/Types/SharedImagePermissions.hs
{-# 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.AppStream.Types.SharedImagePermissions
-- 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.AppStream.Types.SharedImagePermissions where
import Amazonka.AppStream.Types.ImagePermissions
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 the permissions that are available to the specified AWS
-- account for a shared image.
--
-- /See:/ 'newSharedImagePermissions' smart constructor.
data SharedImagePermissions = SharedImagePermissions'
{ -- | The 12-digit identifier of the AWS account with which the image is
-- shared.
sharedAccountId :: Prelude.Text,
-- | Describes the permissions for a shared image.
imagePermissions :: ImagePermissions
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'SharedImagePermissions' 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:
--
-- 'sharedAccountId', 'sharedImagePermissions_sharedAccountId' - The 12-digit identifier of the AWS account with which the image is
-- shared.
--
-- 'imagePermissions', 'sharedImagePermissions_imagePermissions' - Describes the permissions for a shared image.
newSharedImagePermissions ::
-- | 'sharedAccountId'
Prelude.Text ->
-- | 'imagePermissions'
ImagePermissions ->
SharedImagePermissions
newSharedImagePermissions
pSharedAccountId_
pImagePermissions_ =
SharedImagePermissions'
{ sharedAccountId =
pSharedAccountId_,
imagePermissions = pImagePermissions_
}
-- | The 12-digit identifier of the AWS account with which the image is
-- shared.
sharedImagePermissions_sharedAccountId :: Lens.Lens' SharedImagePermissions Prelude.Text
sharedImagePermissions_sharedAccountId = Lens.lens (\SharedImagePermissions' {sharedAccountId} -> sharedAccountId) (\s@SharedImagePermissions' {} a -> s {sharedAccountId = a} :: SharedImagePermissions)
-- | Describes the permissions for a shared image.
sharedImagePermissions_imagePermissions :: Lens.Lens' SharedImagePermissions ImagePermissions
sharedImagePermissions_imagePermissions = Lens.lens (\SharedImagePermissions' {imagePermissions} -> imagePermissions) (\s@SharedImagePermissions' {} a -> s {imagePermissions = a} :: SharedImagePermissions)
instance Data.FromJSON SharedImagePermissions where
parseJSON =
Data.withObject
"SharedImagePermissions"
( \x ->
SharedImagePermissions'
Prelude.<$> (x Data..: "sharedAccountId")
Prelude.<*> (x Data..: "imagePermissions")
)
instance Prelude.Hashable SharedImagePermissions where
hashWithSalt _salt SharedImagePermissions' {..} =
_salt
`Prelude.hashWithSalt` sharedAccountId
`Prelude.hashWithSalt` imagePermissions
instance Prelude.NFData SharedImagePermissions where
rnf SharedImagePermissions' {..} =
Prelude.rnf sharedAccountId
`Prelude.seq` Prelude.rnf imagePermissions