amazonka-kinesis-analytics-2.0: gen/Amazonka/KinesisAnalytics/DiscoverInputSchema.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.KinesisAnalytics.DiscoverInputSchema
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- This documentation is for version 1 of the Amazon Kinesis Data Analytics
-- API, which only supports SQL applications. Version 2 of the API supports
-- SQL and Java applications. For more information about version 2, see
-- </kinesisanalytics/latest/apiv2/Welcome.html Amazon Kinesis Data Analytics API V2 Documentation>.
--
-- Infers a schema by evaluating sample records on the specified streaming
-- source (Amazon Kinesis stream or Amazon Kinesis Firehose delivery
-- stream) or S3 object. In the response, the operation returns the
-- inferred schema and also the sample records that the operation used to
-- infer the schema.
--
-- You can use the inferred schema when configuring a streaming source for
-- your application. For conceptual information, see
-- <https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html Configuring Application Input>.
-- Note that when you create an application using the Amazon Kinesis
-- Analytics console, the console uses this operation to infer a schema and
-- show it in the console user interface.
--
-- This operation requires permissions to perform the
-- @kinesisanalytics:DiscoverInputSchema@ action.
module Amazonka.KinesisAnalytics.DiscoverInputSchema
( -- * Creating a Request
DiscoverInputSchema (..),
newDiscoverInputSchema,
-- * Request Lenses
discoverInputSchema_inputProcessingConfiguration,
discoverInputSchema_inputStartingPositionConfiguration,
discoverInputSchema_resourceARN,
discoverInputSchema_roleARN,
discoverInputSchema_s3Configuration,
-- * Destructuring the Response
DiscoverInputSchemaResponse (..),
newDiscoverInputSchemaResponse,
-- * Response Lenses
discoverInputSchemaResponse_inputSchema,
discoverInputSchemaResponse_parsedInputRecords,
discoverInputSchemaResponse_processedInputRecords,
discoverInputSchemaResponse_rawInputRecords,
discoverInputSchemaResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.KinesisAnalytics.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDiscoverInputSchema' smart constructor.
data DiscoverInputSchema = DiscoverInputSchema'
{ -- | The
-- <https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html InputProcessingConfiguration>
-- to use to preprocess the records before discovering the schema of the
-- records.
inputProcessingConfiguration :: Prelude.Maybe InputProcessingConfiguration,
-- | Point at which you want Amazon Kinesis Analytics to start reading
-- records from the specified streaming source discovery purposes.
inputStartingPositionConfiguration :: Prelude.Maybe InputStartingPositionConfiguration,
-- | Amazon Resource Name (ARN) of the streaming source.
resourceARN :: Prelude.Maybe Prelude.Text,
-- | ARN of the IAM role that Amazon Kinesis Analytics can assume to access
-- the stream on your behalf.
roleARN :: Prelude.Maybe Prelude.Text,
-- | Specify this parameter to discover a schema from data in an Amazon S3
-- object.
s3Configuration :: Prelude.Maybe S3Configuration
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DiscoverInputSchema' 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:
--
-- 'inputProcessingConfiguration', 'discoverInputSchema_inputProcessingConfiguration' - The
-- <https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html InputProcessingConfiguration>
-- to use to preprocess the records before discovering the schema of the
-- records.
--
-- 'inputStartingPositionConfiguration', 'discoverInputSchema_inputStartingPositionConfiguration' - Point at which you want Amazon Kinesis Analytics to start reading
-- records from the specified streaming source discovery purposes.
--
-- 'resourceARN', 'discoverInputSchema_resourceARN' - Amazon Resource Name (ARN) of the streaming source.
--
-- 'roleARN', 'discoverInputSchema_roleARN' - ARN of the IAM role that Amazon Kinesis Analytics can assume to access
-- the stream on your behalf.
--
-- 's3Configuration', 'discoverInputSchema_s3Configuration' - Specify this parameter to discover a schema from data in an Amazon S3
-- object.
newDiscoverInputSchema ::
DiscoverInputSchema
newDiscoverInputSchema =
DiscoverInputSchema'
{ inputProcessingConfiguration =
Prelude.Nothing,
inputStartingPositionConfiguration = Prelude.Nothing,
resourceARN = Prelude.Nothing,
roleARN = Prelude.Nothing,
s3Configuration = Prelude.Nothing
}
-- | The
-- <https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html InputProcessingConfiguration>
-- to use to preprocess the records before discovering the schema of the
-- records.
discoverInputSchema_inputProcessingConfiguration :: Lens.Lens' DiscoverInputSchema (Prelude.Maybe InputProcessingConfiguration)
discoverInputSchema_inputProcessingConfiguration = Lens.lens (\DiscoverInputSchema' {inputProcessingConfiguration} -> inputProcessingConfiguration) (\s@DiscoverInputSchema' {} a -> s {inputProcessingConfiguration = a} :: DiscoverInputSchema)
-- | Point at which you want Amazon Kinesis Analytics to start reading
-- records from the specified streaming source discovery purposes.
discoverInputSchema_inputStartingPositionConfiguration :: Lens.Lens' DiscoverInputSchema (Prelude.Maybe InputStartingPositionConfiguration)
discoverInputSchema_inputStartingPositionConfiguration = Lens.lens (\DiscoverInputSchema' {inputStartingPositionConfiguration} -> inputStartingPositionConfiguration) (\s@DiscoverInputSchema' {} a -> s {inputStartingPositionConfiguration = a} :: DiscoverInputSchema)
-- | Amazon Resource Name (ARN) of the streaming source.
discoverInputSchema_resourceARN :: Lens.Lens' DiscoverInputSchema (Prelude.Maybe Prelude.Text)
discoverInputSchema_resourceARN = Lens.lens (\DiscoverInputSchema' {resourceARN} -> resourceARN) (\s@DiscoverInputSchema' {} a -> s {resourceARN = a} :: DiscoverInputSchema)
-- | ARN of the IAM role that Amazon Kinesis Analytics can assume to access
-- the stream on your behalf.
discoverInputSchema_roleARN :: Lens.Lens' DiscoverInputSchema (Prelude.Maybe Prelude.Text)
discoverInputSchema_roleARN = Lens.lens (\DiscoverInputSchema' {roleARN} -> roleARN) (\s@DiscoverInputSchema' {} a -> s {roleARN = a} :: DiscoverInputSchema)
-- | Specify this parameter to discover a schema from data in an Amazon S3
-- object.
discoverInputSchema_s3Configuration :: Lens.Lens' DiscoverInputSchema (Prelude.Maybe S3Configuration)
discoverInputSchema_s3Configuration = Lens.lens (\DiscoverInputSchema' {s3Configuration} -> s3Configuration) (\s@DiscoverInputSchema' {} a -> s {s3Configuration = a} :: DiscoverInputSchema)
instance Core.AWSRequest DiscoverInputSchema where
type
AWSResponse DiscoverInputSchema =
DiscoverInputSchemaResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
DiscoverInputSchemaResponse'
Prelude.<$> (x Data..?> "InputSchema")
Prelude.<*> ( x
Data..?> "ParsedInputRecords"
Core..!@ Prelude.mempty
)
Prelude.<*> ( x
Data..?> "ProcessedInputRecords"
Core..!@ Prelude.mempty
)
Prelude.<*> ( x
Data..?> "RawInputRecords"
Core..!@ Prelude.mempty
)
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable DiscoverInputSchema where
hashWithSalt _salt DiscoverInputSchema' {..} =
_salt
`Prelude.hashWithSalt` inputProcessingConfiguration
`Prelude.hashWithSalt` inputStartingPositionConfiguration
`Prelude.hashWithSalt` resourceARN
`Prelude.hashWithSalt` roleARN
`Prelude.hashWithSalt` s3Configuration
instance Prelude.NFData DiscoverInputSchema where
rnf DiscoverInputSchema' {..} =
Prelude.rnf inputProcessingConfiguration
`Prelude.seq` Prelude.rnf inputStartingPositionConfiguration
`Prelude.seq` Prelude.rnf resourceARN
`Prelude.seq` Prelude.rnf roleARN
`Prelude.seq` Prelude.rnf s3Configuration
instance Data.ToHeaders DiscoverInputSchema where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "KinesisAnalytics_20150814.DiscoverInputSchema" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON DiscoverInputSchema where
toJSON DiscoverInputSchema' {..} =
Data.object
( Prelude.catMaybes
[ ("InputProcessingConfiguration" Data..=)
Prelude.<$> inputProcessingConfiguration,
("InputStartingPositionConfiguration" Data..=)
Prelude.<$> inputStartingPositionConfiguration,
("ResourceARN" Data..=) Prelude.<$> resourceARN,
("RoleARN" Data..=) Prelude.<$> roleARN,
("S3Configuration" Data..=)
Prelude.<$> s3Configuration
]
)
instance Data.ToPath DiscoverInputSchema where
toPath = Prelude.const "/"
instance Data.ToQuery DiscoverInputSchema where
toQuery = Prelude.const Prelude.mempty
-- |
--
-- /See:/ 'newDiscoverInputSchemaResponse' smart constructor.
data DiscoverInputSchemaResponse = DiscoverInputSchemaResponse'
{ -- | Schema inferred from the streaming source. It identifies the format of
-- the data in the streaming source and how each data element maps to
-- corresponding columns in the in-application stream that you can create.
inputSchema :: Prelude.Maybe SourceSchema,
-- | An array of elements, where each element corresponds to a row in a
-- stream record (a stream record can have more than one row).
parsedInputRecords :: Prelude.Maybe [[Prelude.Text]],
-- | Stream data that was modified by the processor specified in the
-- @InputProcessingConfiguration@ parameter.
processedInputRecords :: Prelude.Maybe [Prelude.Text],
-- | Raw stream data that was sampled to infer the schema.
rawInputRecords :: Prelude.Maybe [Prelude.Text],
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DiscoverInputSchemaResponse' 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:
--
-- 'inputSchema', 'discoverInputSchemaResponse_inputSchema' - Schema inferred from the streaming source. It identifies the format of
-- the data in the streaming source and how each data element maps to
-- corresponding columns in the in-application stream that you can create.
--
-- 'parsedInputRecords', 'discoverInputSchemaResponse_parsedInputRecords' - An array of elements, where each element corresponds to a row in a
-- stream record (a stream record can have more than one row).
--
-- 'processedInputRecords', 'discoverInputSchemaResponse_processedInputRecords' - Stream data that was modified by the processor specified in the
-- @InputProcessingConfiguration@ parameter.
--
-- 'rawInputRecords', 'discoverInputSchemaResponse_rawInputRecords' - Raw stream data that was sampled to infer the schema.
--
-- 'httpStatus', 'discoverInputSchemaResponse_httpStatus' - The response's http status code.
newDiscoverInputSchemaResponse ::
-- | 'httpStatus'
Prelude.Int ->
DiscoverInputSchemaResponse
newDiscoverInputSchemaResponse pHttpStatus_ =
DiscoverInputSchemaResponse'
{ inputSchema =
Prelude.Nothing,
parsedInputRecords = Prelude.Nothing,
processedInputRecords = Prelude.Nothing,
rawInputRecords = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | Schema inferred from the streaming source. It identifies the format of
-- the data in the streaming source and how each data element maps to
-- corresponding columns in the in-application stream that you can create.
discoverInputSchemaResponse_inputSchema :: Lens.Lens' DiscoverInputSchemaResponse (Prelude.Maybe SourceSchema)
discoverInputSchemaResponse_inputSchema = Lens.lens (\DiscoverInputSchemaResponse' {inputSchema} -> inputSchema) (\s@DiscoverInputSchemaResponse' {} a -> s {inputSchema = a} :: DiscoverInputSchemaResponse)
-- | An array of elements, where each element corresponds to a row in a
-- stream record (a stream record can have more than one row).
discoverInputSchemaResponse_parsedInputRecords :: Lens.Lens' DiscoverInputSchemaResponse (Prelude.Maybe [[Prelude.Text]])
discoverInputSchemaResponse_parsedInputRecords = Lens.lens (\DiscoverInputSchemaResponse' {parsedInputRecords} -> parsedInputRecords) (\s@DiscoverInputSchemaResponse' {} a -> s {parsedInputRecords = a} :: DiscoverInputSchemaResponse) Prelude.. Lens.mapping Lens.coerced
-- | Stream data that was modified by the processor specified in the
-- @InputProcessingConfiguration@ parameter.
discoverInputSchemaResponse_processedInputRecords :: Lens.Lens' DiscoverInputSchemaResponse (Prelude.Maybe [Prelude.Text])
discoverInputSchemaResponse_processedInputRecords = Lens.lens (\DiscoverInputSchemaResponse' {processedInputRecords} -> processedInputRecords) (\s@DiscoverInputSchemaResponse' {} a -> s {processedInputRecords = a} :: DiscoverInputSchemaResponse) Prelude.. Lens.mapping Lens.coerced
-- | Raw stream data that was sampled to infer the schema.
discoverInputSchemaResponse_rawInputRecords :: Lens.Lens' DiscoverInputSchemaResponse (Prelude.Maybe [Prelude.Text])
discoverInputSchemaResponse_rawInputRecords = Lens.lens (\DiscoverInputSchemaResponse' {rawInputRecords} -> rawInputRecords) (\s@DiscoverInputSchemaResponse' {} a -> s {rawInputRecords = a} :: DiscoverInputSchemaResponse) Prelude.. Lens.mapping Lens.coerced
-- | The response's http status code.
discoverInputSchemaResponse_httpStatus :: Lens.Lens' DiscoverInputSchemaResponse Prelude.Int
discoverInputSchemaResponse_httpStatus = Lens.lens (\DiscoverInputSchemaResponse' {httpStatus} -> httpStatus) (\s@DiscoverInputSchemaResponse' {} a -> s {httpStatus = a} :: DiscoverInputSchemaResponse)
instance Prelude.NFData DiscoverInputSchemaResponse where
rnf DiscoverInputSchemaResponse' {..} =
Prelude.rnf inputSchema
`Prelude.seq` Prelude.rnf parsedInputRecords
`Prelude.seq` Prelude.rnf processedInputRecords
`Prelude.seq` Prelude.rnf rawInputRecords
`Prelude.seq` Prelude.rnf httpStatus