File: errors.rbs

package info (click to toggle)
ruby-aws-sdk-s3 1.170.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,740 kB
  • sloc: ruby: 16,388; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 991 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# WARNING ABOUT GENERATED CODE
#
# This file is generated. See the contributing guide for more information:
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
#
# WARNING ABOUT GENERATED CODE

module Aws
  module S3
    module Errors
      class ServiceError < ::Aws::Errors::ServiceError
      end

      class BucketAlreadyExists < ::Aws::Errors::ServiceError
      end
      class BucketAlreadyOwnedByYou < ::Aws::Errors::ServiceError
      end
      class InvalidObjectState < ::Aws::Errors::ServiceError
        def storage_class: () -> ::String
        def access_tier: () -> ::String
      end
      class NoSuchBucket < ::Aws::Errors::ServiceError
      end
      class NoSuchKey < ::Aws::Errors::ServiceError
      end
      class NoSuchUpload < ::Aws::Errors::ServiceError
      end
      class ObjectAlreadyInActiveTierError < ::Aws::Errors::ServiceError
      end
      class ObjectNotInActiveTierError < ::Aws::Errors::ServiceError
      end
    end
  end
end