amazonka-lambda-2.0: Amazon Lambda SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

Description

 
Synopsis

Documentation

data SelfManagedKafkaEventSourceConfig Source #

Specific configuration settings for a self-managed Apache Kafka event source.

See: newSelfManagedKafkaEventSourceConfig smart constructor.

Constructors

SelfManagedKafkaEventSourceConfig' 

Fields

  • consumerGroupId :: Maybe Text

    The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see Customizable consumer group ID.

Instances

Instances details
FromJSON SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

ToJSON SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

Generic SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

Associated Types

type Rep SelfManagedKafkaEventSourceConfig :: Type -> Type #

Read SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

Show SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

NFData SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

Eq SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

Hashable SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

type Rep SelfManagedKafkaEventSourceConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig

type Rep SelfManagedKafkaEventSourceConfig = D1 ('MetaData "SelfManagedKafkaEventSourceConfig" "Amazonka.Lambda.Types.SelfManagedKafkaEventSourceConfig" "amazonka-lambda-2.0-FcjxCCKaCGK94C2lDO9alC" 'False) (C1 ('MetaCons "SelfManagedKafkaEventSourceConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "consumerGroupId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newSelfManagedKafkaEventSourceConfig :: SelfManagedKafkaEventSourceConfig Source #

Create a value of SelfManagedKafkaEventSourceConfig 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:consumerGroupId:SelfManagedKafkaEventSourceConfig', selfManagedKafkaEventSourceConfig_consumerGroupId - The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see Customizable consumer group ID.

selfManagedKafkaEventSourceConfig_consumerGroupId :: Lens' SelfManagedKafkaEventSourceConfig (Maybe Text) Source #

The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see Customizable consumer group ID.