Class: Aws::KinesisAnalytics::Types::InputParallelism
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::InputParallelism
- Defined in:
- gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb
Overview
Note:
When making an API call, you may pass InputParallelism data as a hash:
{
count: 1,
}
Describes the number of in-application streams to create for a given streaming source. For information about parallelism, see Configuring Application Input.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
Number of in-application streams to create.
Instance Attribute Details
#count ⇒ Integer
Number of in-application streams to create. For more information, see Limits.
1761 1762 1763 1764 1765 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 1761 class InputParallelism < Struct.new( :count) SENSITIVE = [] include Aws::Structure end |