Class: Aws::Redshift::Types::ModifyUsageLimitMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::ModifyUsageLimitMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass ModifyUsageLimitMessage data as a hash:
{
usage_limit_id: "String", # required
amount: 1,
breach_action: "log", # accepts log, emit-metric, disable
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The new limit amount.
-
#breach_action ⇒ String
The new action that Amazon Redshift takes when the limit is reached.
-
#usage_limit_id ⇒ String
The identifier of the usage limit to modify.
Instance Attribute Details
#amount ⇒ Integer
The new limit amount. For more information about this parameter, see UsageLimit.
8955 8956 8957 8958 8959 8960 8961 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 8955 class ModifyUsageLimitMessage < Struct.new( :usage_limit_id, :amount, :breach_action) SENSITIVE = [] include Aws::Structure end |
#breach_action ⇒ String
The new action that Amazon Redshift takes when the limit is reached. For more information about this parameter, see UsageLimit.
8955 8956 8957 8958 8959 8960 8961 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 8955 class ModifyUsageLimitMessage < Struct.new( :usage_limit_id, :amount, :breach_action) SENSITIVE = [] include Aws::Structure end |
#usage_limit_id ⇒ String
The identifier of the usage limit to modify.
8955 8956 8957 8958 8959 8960 8961 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 8955 class ModifyUsageLimitMessage < Struct.new( :usage_limit_id, :amount, :breach_action) SENSITIVE = [] include Aws::Structure end |