{-# 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.SSM.Types.AttachmentContent -- 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.SSM.Types.AttachmentContent where 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 import Amazonka.SSM.Types.AttachmentHashType -- | A structure that includes attributes that describe a document -- attachment. -- -- /See:/ 'newAttachmentContent' smart constructor. data AttachmentContent = AttachmentContent' { -- | The cryptographic hash value of the document content. hash :: Prelude.Maybe Prelude.Text, -- | The hash algorithm used to calculate the hash value. hashType :: Prelude.Maybe AttachmentHashType, -- | The name of an attachment. name :: Prelude.Maybe Prelude.Text, -- | The size of an attachment in bytes. size :: Prelude.Maybe Prelude.Integer, -- | The URL location of the attachment content. url :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AttachmentContent' 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: -- -- 'hash', 'attachmentContent_hash' - The cryptographic hash value of the document content. -- -- 'hashType', 'attachmentContent_hashType' - The hash algorithm used to calculate the hash value. -- -- 'name', 'attachmentContent_name' - The name of an attachment. -- -- 'size', 'attachmentContent_size' - The size of an attachment in bytes. -- -- 'url', 'attachmentContent_url' - The URL location of the attachment content. newAttachmentContent :: AttachmentContent newAttachmentContent = AttachmentContent' { hash = Prelude.Nothing, hashType = Prelude.Nothing, name = Prelude.Nothing, size = Prelude.Nothing, url = Prelude.Nothing } -- | The cryptographic hash value of the document content. attachmentContent_hash :: Lens.Lens' AttachmentContent (Prelude.Maybe Prelude.Text) attachmentContent_hash = Lens.lens (\AttachmentContent' {hash} -> hash) (\s@AttachmentContent' {} a -> s {hash = a} :: AttachmentContent) -- | The hash algorithm used to calculate the hash value. attachmentContent_hashType :: Lens.Lens' AttachmentContent (Prelude.Maybe AttachmentHashType) attachmentContent_hashType = Lens.lens (\AttachmentContent' {hashType} -> hashType) (\s@AttachmentContent' {} a -> s {hashType = a} :: AttachmentContent) -- | The name of an attachment. attachmentContent_name :: Lens.Lens' AttachmentContent (Prelude.Maybe Prelude.Text) attachmentContent_name = Lens.lens (\AttachmentContent' {name} -> name) (\s@AttachmentContent' {} a -> s {name = a} :: AttachmentContent) -- | The size of an attachment in bytes. attachmentContent_size :: Lens.Lens' AttachmentContent (Prelude.Maybe Prelude.Integer) attachmentContent_size = Lens.lens (\AttachmentContent' {size} -> size) (\s@AttachmentContent' {} a -> s {size = a} :: AttachmentContent) -- | The URL location of the attachment content. attachmentContent_url :: Lens.Lens' AttachmentContent (Prelude.Maybe Prelude.Text) attachmentContent_url = Lens.lens (\AttachmentContent' {url} -> url) (\s@AttachmentContent' {} a -> s {url = a} :: AttachmentContent) instance Data.FromJSON AttachmentContent where parseJSON = Data.withObject "AttachmentContent" ( \x -> AttachmentContent' Prelude.<$> (x Data..:? "Hash") Prelude.<*> (x Data..:? "HashType") Prelude.<*> (x Data..:? "Name") Prelude.<*> (x Data..:? "Size") Prelude.<*> (x Data..:? "Url") ) instance Prelude.Hashable AttachmentContent where hashWithSalt _salt AttachmentContent' {..} = _salt `Prelude.hashWithSalt` hash `Prelude.hashWithSalt` hashType `Prelude.hashWithSalt` name `Prelude.hashWithSalt` size `Prelude.hashWithSalt` url instance Prelude.NFData AttachmentContent where rnf AttachmentContent' {..} = Prelude.rnf hash `Prelude.seq` Prelude.rnf hashType `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf size `Prelude.seq` Prelude.rnf url