Creates a usage limit for a specified Amazon Redshift feature on a cluster
Source:R/redshift_operations.R
redshift_create_usage_limit.RdCreates a usage limit for a specified Amazon Redshift feature on a cluster. The usage limit is identified by the returned usage limit identifier.
See https://www.paws-r-sdk.com/docs/redshift_create_usage_limit/ for full documentation.
Usage
redshift_create_usage_limit(
ClusterIdentifier,
FeatureType,
LimitType,
Amount,
Period = NULL,
BreachAction = NULL,
Tags = NULL
)Arguments
- ClusterIdentifier
[required] The identifier of the cluster that you want to limit usage.
- FeatureType
[required] The Amazon Redshift feature that you want to limit.
- LimitType
[required] The type of limit. Depending on the feature type, this can be based on a time duration or data size. If
FeatureTypeisspectrum, thenLimitTypemust bedata-scanned. IfFeatureTypeisconcurrency-scaling, thenLimitTypemust betime. IfFeatureTypeiscross-region-datasharing, thenLimitTypemust bedata-scanned. IfFeatureTypeisextra-compute-for-automatic-optimization, thenLimitTypemust betime.- Amount
[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.
- Period
The time period that the amount applies to. A
weeklyperiod begins on Sunday. The default ismonthly.- BreachAction
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.