Class: Aws::KafkaConnect::Types::WorkerConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::WorkerConfiguration
- Defined in:
- gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb
Overview
Note:
When making an API call, you may pass WorkerConfiguration data as a hash:
{
revision: 1, # required
worker_configuration_arn: "__string", # required
}
The configuration of the workers, which are the processes that run the connector logic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#revision ⇒ Integer
The revision of the worker configuration.
-
#worker_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of the worker configuration.
Instance Attribute Details
#revision ⇒ Integer
The revision of the worker configuration.
2225 2226 2227 2228 2229 2230 |
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 2225 class WorkerConfiguration < Struct.new( :revision, :worker_configuration_arn) SENSITIVE = [] include Aws::Structure end |
#worker_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of the worker configuration.
2225 2226 2227 2228 2229 2230 |
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 2225 class WorkerConfiguration < Struct.new( :revision, :worker_configuration_arn) SENSITIVE = [] include Aws::Structure end |