Class: Aws::S3::Types::RequestProgress
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::RequestProgress
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass RequestProgress data as a hash:
{
enabled: false,
}
Container for specifying if periodic ‘QueryProgress` messages should be sent.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Specifies whether periodic QueryProgress frames should be sent.
Instance Attribute Details
#enabled ⇒ Boolean
Specifies whether periodic QueryProgress frames should be sent. Valid values: TRUE, FALSE. Default value: FALSE.
14954 14955 14956 14957 14958 |
# File 'lib/aws-sdk-s3/types.rb', line 14954 class RequestProgress < Struct.new( :enabled) SENSITIVE = [] include Aws::Structure end |