Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data InputSchemaUpdate = InputSchemaUpdate' {}
- newInputSchemaUpdate :: InputSchemaUpdate
- inputSchemaUpdate_recordFormatUpdate :: Lens' InputSchemaUpdate (Maybe RecordFormat)
- inputSchemaUpdate_recordEncodingUpdate :: Lens' InputSchemaUpdate (Maybe Text)
- inputSchemaUpdate_recordColumnUpdates :: Lens' InputSchemaUpdate (Maybe (NonEmpty RecordColumn))
Documentation
data InputSchemaUpdate Source #
Describes updates for the application's input schema.
See: newInputSchemaUpdate
smart constructor.
InputSchemaUpdate' | |
|
Instances
newInputSchemaUpdate :: InputSchemaUpdate Source #
Create a value of InputSchemaUpdate
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:recordFormatUpdate:InputSchemaUpdate'
, inputSchemaUpdate_recordFormatUpdate
- Specifies the format of the records on the streaming source.
$sel:recordEncodingUpdate:InputSchemaUpdate'
, inputSchemaUpdate_recordEncodingUpdate
- Specifies the encoding of the records in the streaming source. For
example, UTF-8.
$sel:recordColumnUpdates:InputSchemaUpdate'
, inputSchemaUpdate_recordColumnUpdates
- A list of RecordColumn
objects. Each object describes the mapping of
the streaming source element to the corresponding column in the
in-application stream.
inputSchemaUpdate_recordFormatUpdate :: Lens' InputSchemaUpdate (Maybe RecordFormat) Source #
Specifies the format of the records on the streaming source.
inputSchemaUpdate_recordEncodingUpdate :: Lens' InputSchemaUpdate (Maybe Text) Source #
Specifies the encoding of the records in the streaming source. For example, UTF-8.
inputSchemaUpdate_recordColumnUpdates :: Lens' InputSchemaUpdate (Maybe (NonEmpty RecordColumn)) Source #
A list of RecordColumn
objects. Each object describes the mapping of
the streaming source element to the corresponding column in the
in-application stream.