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 AddAttributesActivity = AddAttributesActivity' {}
- newAddAttributesActivity :: Text -> AddAttributesActivity
- addAttributesActivity_next :: Lens' AddAttributesActivity (Maybe Text)
- addAttributesActivity_name :: Lens' AddAttributesActivity Text
- addAttributesActivity_attributes :: Lens' AddAttributesActivity (HashMap Text Text)
Documentation
data AddAttributesActivity Source #
An activity that adds other attributes based on existing attributes in the message.
See: newAddAttributesActivity
smart constructor.
AddAttributesActivity' | |
|
Instances
newAddAttributesActivity Source #
Create a value of AddAttributesActivity
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:next:AddAttributesActivity'
, addAttributesActivity_next
- The next activity in the pipeline.
$sel:name:AddAttributesActivity'
, addAttributesActivity_name
- The name of the addAttributes activity.
$sel:attributes:AddAttributesActivity'
, addAttributesActivity_attributes
- A list of 1-50 AttributeNameMapping
objects that map an existing
attribute to a new attribute.
The existing attributes remain in the message, so if you want to remove
the originals, use RemoveAttributeActivity
.
addAttributesActivity_next :: Lens' AddAttributesActivity (Maybe Text) Source #
The next activity in the pipeline.
addAttributesActivity_name :: Lens' AddAttributesActivity Text Source #
The name of the addAttributes activity.
addAttributesActivity_attributes :: Lens' AddAttributesActivity (HashMap Text Text) Source #
A list of 1-50 AttributeNameMapping
objects that map an existing
attribute to a new attribute.
The existing attributes remain in the message, so if you want to remove
the originals, use RemoveAttributeActivity
.