aws-sdk-s3 1.200.0 → 1.203.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -907,6 +907,8 @@ module Aws::S3
907
907
  CopyObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
908
908
  CopyObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
909
909
  CopyObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
910
+ CopyObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
911
+ CopyObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
910
912
  CopyObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam" => {"name" => "Key"}}))
911
913
  CopyObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
912
914
  CopyObjectRequest.add_member(:metadata_directive, Shapes::ShapeRef.new(shape: MetadataDirective, location: "header", location_name: "x-amz-metadata-directive"))
@@ -13,87 +13,87 @@ module Aws::S3
13
13
  # @!attribute bucket
14
14
  # The S3 bucket used to send the request. This is an optional parameter that will be set automatically for operations that are scoped to an S3 bucket.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute region
19
19
  # The AWS region used to dispatch the request.
20
20
  #
21
- # @return [String]
21
+ # @return [string]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute use_dual_stack
29
29
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
30
30
  #
31
- # @return [Boolean]
31
+ # @return [boolean]
32
32
  #
33
33
  # @!attribute endpoint
34
34
  # Override the endpoint used to send this request
35
35
  #
36
- # @return [String]
36
+ # @return [string]
37
37
  #
38
38
  # @!attribute force_path_style
39
39
  # When true, force a path-style endpoint to be used where the bucket name is part of the path.
40
40
  #
41
- # @return [Boolean]
41
+ # @return [boolean]
42
42
  #
43
43
  # @!attribute accelerate
44
44
  # When true, use S3 Accelerate. NOTE: Not all regions support S3 accelerate.
45
45
  #
46
- # @return [Boolean]
46
+ # @return [boolean]
47
47
  #
48
48
  # @!attribute use_global_endpoint
49
49
  # Whether the global endpoint should be used, rather then the regional endpoint for us-east-1.
50
50
  #
51
- # @return [Boolean]
51
+ # @return [boolean]
52
52
  #
53
53
  # @!attribute use_object_lambda_endpoint
54
54
  # Internal parameter to use object lambda endpoint for an operation (eg: WriteGetObjectResponse)
55
55
  #
56
- # @return [Boolean]
56
+ # @return [boolean]
57
57
  #
58
58
  # @!attribute key
59
59
  # The S3 Key used to send the request. This is an optional parameter that will be set automatically for operations that are scoped to an S3 Key.
60
60
  #
61
- # @return [String]
61
+ # @return [string]
62
62
  #
63
63
  # @!attribute prefix
64
64
  # The S3 Prefix used to send the request. This is an optional parameter that will be set automatically for operations that are scoped to an S3 Prefix.
65
65
  #
66
- # @return [String]
66
+ # @return [string]
67
67
  #
68
68
  # @!attribute copy_source
69
69
  # The Copy Source used for Copy Object request. This is an optional parameter that will be set automatically for operations that are scoped to Copy Source.
70
70
  #
71
- # @return [String]
71
+ # @return [string]
72
72
  #
73
73
  # @!attribute disable_access_points
74
74
  # Internal parameter to disable Access Point Buckets
75
75
  #
76
- # @return [Boolean]
76
+ # @return [boolean]
77
77
  #
78
78
  # @!attribute disable_multi_region_access_points
79
79
  # Whether multi-region access points (MRAP) should be disabled.
80
80
  #
81
- # @return [Boolean]
81
+ # @return [boolean]
82
82
  #
83
83
  # @!attribute use_arn_region
84
84
  # When an Access Point ARN is provided and this flag is enabled, the SDK MUST use the ARN's region when constructing the endpoint instead of the client's configured region.
85
85
  #
86
- # @return [Boolean]
86
+ # @return [boolean]
87
87
  #
88
88
  # @!attribute use_s3_express_control_endpoint
89
89
  # Internal parameter to indicate whether S3Express operation should use control plane, (ex. CreateBucket)
90
90
  #
91
- # @return [Boolean]
91
+ # @return [boolean]
92
92
  #
93
93
  # @!attribute disable_s3_express_session_auth
94
94
  # Parameter to indicate whether S3Express session auth should be disabled
95
95
  #
96
- # @return [Boolean]
96
+ # @return [boolean]
97
97
  #
98
98
  EndpointParameters = Struct.new(
99
99
  :bucket,