Class: Aws::QuickSight::Types::CapacityBytesRangeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::CapacityBytesRangeFilter
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
A filter that matches users by total capacity range in bytes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_bytes ⇒ Integer
The maximum capacity in bytes (inclusive).
-
#min_bytes ⇒ Integer
The minimum capacity in bytes (inclusive).
Instance Attribute Details
#max_bytes ⇒ Integer
The maximum capacity in bytes (inclusive). At least one of minBytes or maxBytes is required.
7686 7687 7688 7689 7690 7691 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7686 class CapacityBytesRangeFilter < Struct.new( :min_bytes, :max_bytes) SENSITIVE = [] include Aws::Structure end |
#min_bytes ⇒ Integer
The minimum capacity in bytes (inclusive). At least one of minBytes or maxBytes is required.
7686 7687 7688 7689 7690 7691 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7686 class CapacityBytesRangeFilter < Struct.new( :min_bytes, :max_bytes) SENSITIVE = [] include Aws::Structure end |