Creates a usage limit for a specified Amazon Redshift feature on a cluster. The usage limit is identified by the returned usage limit identifier.
redshift_create_usage_limit(ClusterIdentifier, FeatureType, LimitType,
Amount, Period, BreachAction, Tags)
[required] The identifier of the cluster that you want to limit usage.
[required] The Amazon Redshift feature that you want to limit.
[required] The type of limit. Depending on the feature type, this can be based on a
time duration or data size. If FeatureType
is spectrum
, then
LimitType
must be data-scanned
. If FeatureType
is
concurrency-scaling
, then LimitType
must be time
.
[required] The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB). The value must be a positive number.
The time period that the amount applies to. A weekly
period begins on
Sunday. The default is monthly
.
The action that Amazon Redshift takes when the limit is reached. The default is log. For more information about this parameter, see UsageLimit.
A list of tag instances.
svc$create_usage_limit( ClusterIdentifier = "string", FeatureType = "spectrum"|"concurrency-scaling", LimitType = "time"|"data-scanned", Amount = 123, Period = "daily"|"weekly"|"monthly", BreachAction = "log"|"emit-metric"|"disable", Tags = list( list( Key = "string", Value = "string" ) ) )