使用boto3或CLI延迟Amazon Redshift维护窗口

时间:2019-04-11 10:00:42

标签: amazon-web-services amazon-redshift boto3 aws-cli

Amazon Redshift提供了一种推迟每周维护时段Managing Clusters Using the Console - Amazon Redshift的功能。该文档显示了如何通过AWS管理控制台执行此操作。

是否可以使用Python Boto3或AWS CLI推迟维护窗口?

1 个答案:

答案 0 :(得分:2)

来自modify_cluster_maintenance()

response = client.modify_cluster_maintenance(
    ClusterIdentifier='string',
    DeferMaintenance=True|False,
    DeferMaintenanceIdentifier='string',
    DeferMaintenanceStartTime=datetime(2015, 1, 1),
    DeferMaintenanceEndTime=datetime(2015, 1, 1),
    DeferMaintenanceDuration=123
)