{-# 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.EC2.Types.AthenaIntegration -- 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.EC2.Types.AthenaIntegration where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Internal import Amazonka.EC2.Types.PartitionLoadFrequency import qualified Amazonka.Prelude as Prelude -- | Describes integration options for Amazon Athena. -- -- /See:/ 'newAthenaIntegration' smart constructor. data AthenaIntegration = AthenaIntegration' { -- | The end date for the partition. partitionEndDate :: Prelude.Maybe Data.ISO8601, -- | The start date for the partition. partitionStartDate :: Prelude.Maybe Data.ISO8601, -- | The location in Amazon S3 to store the generated CloudFormation -- template. integrationResultS3DestinationArn :: Prelude.Text, -- | The schedule for adding new partitions to the table. partitionLoadFrequency :: PartitionLoadFrequency } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AthenaIntegration' 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: -- -- 'partitionEndDate', 'athenaIntegration_partitionEndDate' - The end date for the partition. -- -- 'partitionStartDate', 'athenaIntegration_partitionStartDate' - The start date for the partition. -- -- 'integrationResultS3DestinationArn', 'athenaIntegration_integrationResultS3DestinationArn' - The location in Amazon S3 to store the generated CloudFormation -- template. -- -- 'partitionLoadFrequency', 'athenaIntegration_partitionLoadFrequency' - The schedule for adding new partitions to the table. newAthenaIntegration :: -- | 'integrationResultS3DestinationArn' Prelude.Text -> -- | 'partitionLoadFrequency' PartitionLoadFrequency -> AthenaIntegration newAthenaIntegration pIntegrationResultS3DestinationArn_ pPartitionLoadFrequency_ = AthenaIntegration' { partitionEndDate = Prelude.Nothing, partitionStartDate = Prelude.Nothing, integrationResultS3DestinationArn = pIntegrationResultS3DestinationArn_, partitionLoadFrequency = pPartitionLoadFrequency_ } -- | The end date for the partition. athenaIntegration_partitionEndDate :: Lens.Lens' AthenaIntegration (Prelude.Maybe Prelude.UTCTime) athenaIntegration_partitionEndDate = Lens.lens (\AthenaIntegration' {partitionEndDate} -> partitionEndDate) (\s@AthenaIntegration' {} a -> s {partitionEndDate = a} :: AthenaIntegration) Prelude.. Lens.mapping Data._Time -- | The start date for the partition. athenaIntegration_partitionStartDate :: Lens.Lens' AthenaIntegration (Prelude.Maybe Prelude.UTCTime) athenaIntegration_partitionStartDate = Lens.lens (\AthenaIntegration' {partitionStartDate} -> partitionStartDate) (\s@AthenaIntegration' {} a -> s {partitionStartDate = a} :: AthenaIntegration) Prelude.. Lens.mapping Data._Time -- | The location in Amazon S3 to store the generated CloudFormation -- template. athenaIntegration_integrationResultS3DestinationArn :: Lens.Lens' AthenaIntegration Prelude.Text athenaIntegration_integrationResultS3DestinationArn = Lens.lens (\AthenaIntegration' {integrationResultS3DestinationArn} -> integrationResultS3DestinationArn) (\s@AthenaIntegration' {} a -> s {integrationResultS3DestinationArn = a} :: AthenaIntegration) -- | The schedule for adding new partitions to the table. athenaIntegration_partitionLoadFrequency :: Lens.Lens' AthenaIntegration PartitionLoadFrequency athenaIntegration_partitionLoadFrequency = Lens.lens (\AthenaIntegration' {partitionLoadFrequency} -> partitionLoadFrequency) (\s@AthenaIntegration' {} a -> s {partitionLoadFrequency = a} :: AthenaIntegration) instance Prelude.Hashable AthenaIntegration where hashWithSalt _salt AthenaIntegration' {..} = _salt `Prelude.hashWithSalt` partitionEndDate `Prelude.hashWithSalt` partitionStartDate `Prelude.hashWithSalt` integrationResultS3DestinationArn `Prelude.hashWithSalt` partitionLoadFrequency instance Prelude.NFData AthenaIntegration where rnf AthenaIntegration' {..} = Prelude.rnf partitionEndDate `Prelude.seq` Prelude.rnf partitionStartDate `Prelude.seq` Prelude.rnf integrationResultS3DestinationArn `Prelude.seq` Prelude.rnf partitionLoadFrequency instance Data.ToQuery AthenaIntegration where toQuery AthenaIntegration' {..} = Prelude.mconcat [ "PartitionEndDate" Data.=: partitionEndDate, "PartitionStartDate" Data.=: partitionStartDate, "IntegrationResultS3DestinationArn" Data.=: integrationResultS3DestinationArn, "PartitionLoadFrequency" Data.=: partitionLoadFrequency ]