KinesisAnalyticsV2 / Client / update_application_maintenance_configuration

update_application_maintenance_configuration#

KinesisAnalyticsV2.Client.update_application_maintenance_configuration(**kwargs)#

Updates the maintenance configuration of the Managed Service for Apache Flink application.

You can invoke this operation on an application that is in one of the two following states: READY or RUNNING. If you invoke it when the application is in a state other than these two states, it throws a ResourceInUseException. The service makes use of the updated configuration the next time it schedules maintenance for the application. If you invoke this operation after the service schedules maintenance, the service will apply the configuration update the next time it schedules maintenance for the application. This means that you might not see the maintenance configuration update applied to the maintenance process that follows a successful invocation of this operation, but to the following maintenance process instead.

To see the current maintenance configuration of your application, invoke the DescribeApplication operation.

For information about application maintenance, see Managed Service for Apache Flink for Apache Flink Maintenance.

Note

This operation is supported only for Managed Service for Apache Flink.

See also: AWS API Documentation

Request Syntax

response = client.update_application_maintenance_configuration(
    ApplicationName='string',
    ApplicationMaintenanceConfigurationUpdate={
        'ApplicationMaintenanceWindowStartTimeUpdate': 'string'
    }
)
Parameters:
  • ApplicationName (string) –

    [REQUIRED]

    The name of the application for which you want to update the maintenance configuration.

  • ApplicationMaintenanceConfigurationUpdate (dict) –

    [REQUIRED]

    Describes the application maintenance configuration update.

    • ApplicationMaintenanceWindowStartTimeUpdate (string) – [REQUIRED]

      The updated start time for the maintenance window.

Return type:

dict

Returns:

Response Syntax

{
    'ApplicationARN': 'string',
    'ApplicationMaintenanceConfigurationDescription': {
        'ApplicationMaintenanceWindowStartTime': 'string',
        'ApplicationMaintenanceWindowEndTime': 'string'
    }
}

Response Structure

  • (dict) –

    • ApplicationARN (string) –

      The Amazon Resource Name (ARN) of the application.

    • ApplicationMaintenanceConfigurationDescription (dict) –

      The application maintenance configuration description after the update.

      • ApplicationMaintenanceWindowStartTime (string) –

        The start time for the maintenance window.

      • ApplicationMaintenanceWindowEndTime (string) –

        The end time for the maintenance window.

Exceptions

  • KinesisAnalyticsV2.Client.exceptions.ResourceNotFoundException

  • KinesisAnalyticsV2.Client.exceptions.ResourceInUseException

  • KinesisAnalyticsV2.Client.exceptions.InvalidArgumentException

  • KinesisAnalyticsV2.Client.exceptions.ConcurrentModificationException

  • KinesisAnalyticsV2.Client.exceptions.UnsupportedOperationException