Skip to content

Commit

Permalink
Amazon Redshift Update: Added support to enable AQUA in Amazon Redshi…
Browse files Browse the repository at this point in the history
…ft clusters.
  • Loading branch information
AWS committed Apr 13, 2021
1 parent d7f7ec3 commit 9fb25d7
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changes/next-release/feature-AmazonRedshift-54e14c5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "Amazon Redshift",
"contributor": "",
"description": "Added support to enable AQUA in Amazon Redshift clusters."
}
Original file line number Diff line number Diff line change
Expand Up @@ -1293,6 +1293,23 @@
],
"documentation":"<p>Returns an array of DC2 ReservedNodeOfferings that matches the payment type, term, and usage price of the given DC1 reserved node.</p>"
},
"ModifyAquaConfiguration":{
"name":"ModifyAquaConfiguration",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ModifyAquaInputMessage"},
"output":{
"shape":"ModifyAquaOutputMessage",
"resultWrapper":"ModifyAquaConfigurationResult"
},
"errors":[
{"shape":"ClusterNotFoundFault"},
{"shape":"UnsupportedOperationFault"}
],
"documentation":"<p>Modifies whether a cluster can use AQUA (Advanced Query Accelerator). </p>"
},
"ModifyCluster":{
"name":"ModifyCluster",
"http":{
Expand Down Expand Up @@ -1924,6 +1941,36 @@
"resize-cluster"
]
},
"AquaConfiguration":{
"type":"structure",
"members":{
"AquaStatus":{
"shape":"AquaStatus",
"documentation":"<p>The value indicates the status of AQUA on the cluster. Possible values include the following.</p> <ul> <li> <p>enabled - AQUA is enabled.</p> </li> <li> <p>disabled - AQUA is not enabled. </p> </li> <li> <p>applying - AQUA status is being applied. </p> </li> </ul>"
},
"AquaConfigurationStatus":{
"shape":"AquaConfigurationStatus",
"documentation":"<p>The value represents how the cluster is configured to use AQUA. Possible values include the following.</p> <ul> <li> <p>enabled - Use AQUA if it is available for the current AWS Region and Amazon Redshift node type.</p> </li> <li> <p>disabled - Don't use AQUA. </p> </li> <li> <p>auto - Amazon Redshift determines whether to use AQUA.</p> </li> </ul>"
}
},
"documentation":"<p>The AQUA (Advanced Query Accelerator) configuration of the cluster.</p>"
},
"AquaConfigurationStatus":{
"type":"string",
"enum":[
"enabled",
"disabled",
"auto"
]
},
"AquaStatus":{
"type":"string",
"enum":[
"enabled",
"disabled",
"applying"
]
},
"AssociatedClusterList":{
"type":"list",
"member":{
Expand Down Expand Up @@ -2416,6 +2463,10 @@
"TotalStorageCapacityInMegaBytes":{
"shape":"LongOptional",
"documentation":"<p>The total storage capacity of the cluster in megabytes. </p>"
},
"AquaConfiguration":{
"shape":"AquaConfiguration",
"documentation":"<p>The AQUA (Advanced Query Accelerator) configuration of the cluster.</p>"
}
},
"documentation":"<p>Describes a cluster.</p>",
Expand Down Expand Up @@ -3240,6 +3291,10 @@
"AvailabilityZoneRelocation":{
"shape":"BooleanOptional",
"documentation":"<p>The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is created.</p>"
},
"AquaConfigurationStatus":{
"shape":"AquaConfigurationStatus",
"documentation":"<p>The value represents how the cluster is configured to use AQUA (Advanced Query Accelerator) when it is created. Possible values include the following.</p> <ul> <li> <p>enabled - Use AQUA if it is available for the current AWS Region and Amazon Redshift node type.</p> </li> <li> <p>disabled - Don't use AQUA. </p> </li> <li> <p>auto - Amazon Redshift determines whether to use AQUA.</p> </li> </ul>"
}
},
"documentation":"<p/>"
Expand Down Expand Up @@ -6036,6 +6091,29 @@
"high-performance"
]
},
"ModifyAquaInputMessage":{
"type":"structure",
"required":["ClusterIdentifier"],
"members":{
"ClusterIdentifier":{
"shape":"String",
"documentation":"<p>The identifier of the cluster to be modified.</p>"
},
"AquaConfigurationStatus":{
"shape":"AquaConfigurationStatus",
"documentation":"<p>The new value of AQUA configuration status. Possible values include the following.</p> <ul> <li> <p>enabled - Use AQUA if it is available for the current AWS Region and Amazon Redshift node type.</p> </li> <li> <p>disabled - Don't use AQUA. </p> </li> <li> <p>auto - Amazon Redshift determines whether to use AQUA.</p> </li> </ul>"
}
}
},
"ModifyAquaOutputMessage":{
"type":"structure",
"members":{
"AquaConfiguration":{
"shape":"AquaConfiguration",
"documentation":"<p>The updated AQUA configuration of the cluster. </p>"
}
}
},
"ModifyClusterDbRevisionMessage":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -7349,6 +7427,10 @@
"AvailabilityZoneRelocation":{
"shape":"BooleanOptional",
"documentation":"<p>The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is restored.</p>"
},
"AquaConfigurationStatus":{
"shape":"AquaConfigurationStatus",
"documentation":"<p>The value represents how the cluster is configured to use AQUA (Advanced Query Accelerator) after the cluster is restored. Possible values include the following.</p> <ul> <li> <p>enabled - Use AQUA if it is available for the current AWS Region and Amazon Redshift node type.</p> </li> <li> <p>disabled - Don't use AQUA. </p> </li> <li> <p>auto - Amazon Redshift determines whether to use AQUA.</p> </li> </ul>"
}
},
"documentation":"<p/>"
Expand Down

0 comments on commit 9fb25d7

Please sign in to comment.