Interface StartApplicationRequest.Builder

    • Method Detail

      • applicationName

        StartApplicationRequest.Builder applicationName​(String applicationName)

        Name of the application.

        Parameters:
        applicationName - Name of the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • inputConfigurations

        StartApplicationRequest.Builder inputConfigurations​(Collection<InputConfiguration> inputConfigurations)

        Identifies the specific input, by ID, that the application starts consuming. Amazon Kinesis Analytics starts reading the streaming source associated with the input. You can also specify where in the streaming source you want Amazon Kinesis Analytics to start reading.

        Parameters:
        inputConfigurations - Identifies the specific input, by ID, that the application starts consuming. Amazon Kinesis Analytics starts reading the streaming source associated with the input. You can also specify where in the streaming source you want Amazon Kinesis Analytics to start reading.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • inputConfigurations

        StartApplicationRequest.Builder inputConfigurations​(InputConfiguration... inputConfigurations)

        Identifies the specific input, by ID, that the application starts consuming. Amazon Kinesis Analytics starts reading the streaming source associated with the input. You can also specify where in the streaming source you want Amazon Kinesis Analytics to start reading.

        Parameters:
        inputConfigurations - Identifies the specific input, by ID, that the application starts consuming. Amazon Kinesis Analytics starts reading the streaming source associated with the input. You can also specify where in the streaming source you want Amazon Kinesis Analytics to start reading.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • inputConfigurations

        StartApplicationRequest.Builder inputConfigurations​(Consumer<InputConfiguration.Builder>... inputConfigurations)

        Identifies the specific input, by ID, that the application starts consuming. Amazon Kinesis Analytics starts reading the streaming source associated with the input. You can also specify where in the streaming source you want Amazon Kinesis Analytics to start reading.

        This is a convenience method that creates an instance of the InputConfiguration.Builder avoiding the need to create one manually via InputConfiguration.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #inputConfigurations(List).

        Parameters:
        inputConfigurations - a consumer that will call methods on InputConfiguration.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #inputConfigurations(java.util.Collection)