aws-sdk-s3control 1.31.0 → 1.35.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control.rb +1 -1
- data/lib/aws-sdk-s3control/client.rb +194 -196
- data/lib/aws-sdk-s3control/client_api.rb +6 -0
- data/lib/aws-sdk-s3control/types.rb +152 -126
- metadata +5 -6
@@ -901,6 +901,7 @@ module Aws::S3Control
|
|
901
901
|
S3CopyObjectOperation.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: S3ObjectLockLegalHoldStatus, location_name: "ObjectLockLegalHoldStatus"))
|
902
902
|
S3CopyObjectOperation.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: S3ObjectLockMode, location_name: "ObjectLockMode"))
|
903
903
|
S3CopyObjectOperation.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: TimeStamp, location_name: "ObjectLockRetainUntilDate"))
|
904
|
+
S3CopyObjectOperation.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "BucketKeyEnabled"))
|
904
905
|
S3CopyObjectOperation.struct_class = Types::S3CopyObjectOperation
|
905
906
|
|
906
907
|
S3DeleteObjectTaggingOperation.struct_class = Types::S3DeleteObjectTaggingOperation
|
@@ -1522,6 +1523,11 @@ module Aws::S3Control
|
|
1522
1523
|
}
|
1523
1524
|
o.input = Shapes::ShapeRef.new(shape: ListStorageLensConfigurationsRequest)
|
1524
1525
|
o.output = Shapes::ShapeRef.new(shape: ListStorageLensConfigurationsResult)
|
1526
|
+
o[:pager] = Aws::Pager.new(
|
1527
|
+
tokens: {
|
1528
|
+
"next_token" => "next_token"
|
1529
|
+
}
|
1530
|
+
)
|
1525
1531
|
end)
|
1526
1532
|
|
1527
1533
|
api.add_operation(:put_access_point_configuration_for_object_lambda, Seahorse::Model::Operation.new.tap do |o|
|
@@ -50,6 +50,11 @@ module Aws::S3Control
|
|
50
50
|
# @!attribute [rw] vpc_configuration
|
51
51
|
# The virtual private cloud (VPC) configuration for this access point,
|
52
52
|
# if one exists.
|
53
|
+
#
|
54
|
+
# <note markdown="1"> This element is empty if this access point is an Amazon S3 on
|
55
|
+
# Outposts access point that is used by other Amazon Web Services.
|
56
|
+
#
|
57
|
+
# </note>
|
53
58
|
# @return [Types::VpcConfiguration]
|
54
59
|
#
|
55
60
|
# @!attribute [rw] bucket
|
@@ -137,7 +142,7 @@ module Aws::S3Control
|
|
137
142
|
include Aws::Structure
|
138
143
|
end
|
139
144
|
|
140
|
-
#
|
145
|
+
# Lambda function used to transform objects through an Object Lambda
|
141
146
|
# Access Point.
|
142
147
|
#
|
143
148
|
# @note When making an API call, you may pass AwsLambdaTransformation
|
@@ -149,7 +154,7 @@ module Aws::S3Control
|
|
149
154
|
# }
|
150
155
|
#
|
151
156
|
# @!attribute [rw] function_arn
|
152
|
-
# The Amazon Resource Name (ARN) of the
|
157
|
+
# The Amazon Resource Name (ARN) of the Lambda function.
|
153
158
|
# @return [String]
|
154
159
|
#
|
155
160
|
# @!attribute [rw] function_payload
|
@@ -178,7 +183,7 @@ module Aws::S3Control
|
|
178
183
|
end
|
179
184
|
|
180
185
|
# The requested Outposts bucket name is not available. The bucket
|
181
|
-
# namespace is shared by all users of the
|
186
|
+
# namespace is shared by all users of the Outposts in this Region.
|
182
187
|
# Select a different name and try again.
|
183
188
|
#
|
184
189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/BucketAlreadyExists AWS API Documentation
|
@@ -257,7 +262,7 @@ module Aws::S3Control
|
|
257
262
|
# }
|
258
263
|
#
|
259
264
|
# @!attribute [rw] account_id
|
260
|
-
# The
|
265
|
+
# The account ID for owner of the specified Object Lambda Access
|
261
266
|
# Point.
|
262
267
|
# @return [String]
|
263
268
|
#
|
@@ -310,7 +315,7 @@ module Aws::S3Control
|
|
310
315
|
# }
|
311
316
|
#
|
312
317
|
# @!attribute [rw] account_id
|
313
|
-
# The
|
318
|
+
# The account ID for the owner of the bucket for which you want to
|
314
319
|
# create an access point.
|
315
320
|
# @return [String]
|
316
321
|
#
|
@@ -325,8 +330,9 @@ module Aws::S3Control
|
|
325
330
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
326
331
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
327
332
|
#
|
328
|
-
# For using this parameter with S3 on Outposts with the
|
329
|
-
# CLI, you must specify the ARN of the bucket
|
333
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
334
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
335
|
+
# accessed in the format
|
330
336
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
331
337
|
# For example, to access the bucket `reports` through outpost
|
332
338
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -346,17 +352,8 @@ module Aws::S3Control
|
|
346
352
|
# @return [Types::VpcConfiguration]
|
347
353
|
#
|
348
354
|
# @!attribute [rw] public_access_block_configuration
|
349
|
-
# The `PublicAccessBlock` configuration that you want to apply to
|
350
|
-
#
|
351
|
-
# combination. For more information about when Amazon S3 considers a
|
352
|
-
# bucket or object public, see [The Meaning of "Public"][1] in the
|
353
|
-
# *Amazon Simple Storage Service Developer Guide*.
|
354
|
-
#
|
355
|
-
# This is not supported for Amazon S3 on Outposts.
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status
|
355
|
+
# The `PublicAccessBlock` configuration that you want to apply to the
|
356
|
+
# access point.
|
360
357
|
# @return [Types::PublicAccessBlockConfiguration]
|
361
358
|
#
|
362
359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateAccessPointRequest AWS API Documentation
|
@@ -542,8 +539,9 @@ module Aws::S3Control
|
|
542
539
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
543
540
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
544
541
|
#
|
545
|
-
# For using this parameter with S3 on Outposts with the
|
546
|
-
# CLI, you must specify the ARN of the bucket
|
542
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
543
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
544
|
+
# accessed in the format
|
547
545
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
548
546
|
# For example, to access the bucket `reports` through outpost
|
549
547
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -616,6 +614,7 @@ module Aws::S3Control
|
|
616
614
|
# object_lock_legal_hold_status: "OFF", # accepts OFF, ON
|
617
615
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
618
616
|
# object_lock_retain_until_date: Time.now,
|
617
|
+
# bucket_key_enabled: false,
|
619
618
|
# },
|
620
619
|
# s3_put_object_acl: {
|
621
620
|
# access_control_policy: {
|
@@ -696,7 +695,7 @@ module Aws::S3Control
|
|
696
695
|
# }
|
697
696
|
#
|
698
697
|
# @!attribute [rw] account_id
|
699
|
-
# The
|
698
|
+
# The account ID that creates the job.
|
700
699
|
# @return [String]
|
701
700
|
#
|
702
701
|
# @!attribute [rw] confirmation_required
|
@@ -708,8 +707,7 @@ module Aws::S3Control
|
|
708
707
|
# @!attribute [rw] operation
|
709
708
|
# The action that you want this job to perform on every object listed
|
710
709
|
# in the manifest. For more information about the available actions,
|
711
|
-
# see [Operations][1] in the *Amazon
|
712
|
-
# Guide*.
|
710
|
+
# see [Operations][1] in the *Amazon S3 User Guide*.
|
713
711
|
#
|
714
712
|
#
|
715
713
|
#
|
@@ -745,7 +743,7 @@ module Aws::S3Control
|
|
745
743
|
# @return [Integer]
|
746
744
|
#
|
747
745
|
# @!attribute [rw] role_arn
|
748
|
-
# The Amazon Resource Name (ARN) for the
|
746
|
+
# The Amazon Resource Name (ARN) for the Identity and Access
|
749
747
|
# Management (IAM) role that Batch Operations will use to run this
|
750
748
|
# job's action on every object in the manifest.
|
751
749
|
# @return [String]
|
@@ -856,9 +854,9 @@ module Aws::S3Control
|
|
856
854
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
857
855
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
858
856
|
#
|
859
|
-
# For using this parameter with S3 on Outposts with the
|
860
|
-
# CLI, you must specify the ARN of the access point
|
861
|
-
# format
|
857
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
858
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
859
|
+
# accessed in the format
|
862
860
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
863
861
|
# For example, to access the access point `reports-ap` through outpost
|
864
862
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -894,9 +892,9 @@ module Aws::S3Control
|
|
894
892
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
895
893
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
896
894
|
#
|
897
|
-
# For using this parameter with S3 on Outposts with the
|
898
|
-
# CLI, you must specify the ARN of the access point
|
899
|
-
# format
|
895
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
896
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
897
|
+
# accessed in the format
|
900
898
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
901
899
|
# For example, to access the access point `reports-ap` through outpost
|
902
900
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -932,8 +930,9 @@ module Aws::S3Control
|
|
932
930
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
933
931
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
934
932
|
#
|
935
|
-
# For using this parameter with S3 on Outposts with the
|
936
|
-
# CLI, you must specify the ARN of the bucket
|
933
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
934
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
935
|
+
# accessed in the format
|
937
936
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
938
937
|
# For example, to access the bucket `reports` through outpost
|
939
938
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -969,8 +968,9 @@ module Aws::S3Control
|
|
969
968
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
970
969
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
971
970
|
#
|
972
|
-
# For using this parameter with S3 on Outposts with the
|
973
|
-
# CLI, you must specify the ARN of the bucket
|
971
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
972
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
973
|
+
# accessed in the format
|
974
974
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
975
975
|
# For example, to access the bucket `reports` through outpost
|
976
976
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1006,8 +1006,9 @@ module Aws::S3Control
|
|
1006
1006
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1007
1007
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1008
1008
|
#
|
1009
|
-
# For using this parameter with S3 on Outposts with the
|
1010
|
-
# CLI, you must specify the ARN of the bucket
|
1009
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1010
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1011
|
+
# accessed in the format
|
1011
1012
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1012
1013
|
# For example, to access the bucket `reports` through outpost
|
1013
1014
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1034,7 +1035,7 @@ module Aws::S3Control
|
|
1034
1035
|
# }
|
1035
1036
|
#
|
1036
1037
|
# @!attribute [rw] account_id
|
1037
|
-
# The
|
1038
|
+
# The account ID of the Outposts bucket tag set to be removed.
|
1038
1039
|
# @return [String]
|
1039
1040
|
#
|
1040
1041
|
# @!attribute [rw] bucket
|
@@ -1043,8 +1044,9 @@ module Aws::S3Control
|
|
1043
1044
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1044
1045
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1045
1046
|
#
|
1046
|
-
# For using this parameter with S3 on Outposts with the
|
1047
|
-
# CLI, you must specify the ARN of the bucket
|
1047
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1048
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1049
|
+
# accessed in the format
|
1048
1050
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1049
1051
|
# For example, to access the bucket `reports` through outpost
|
1050
1052
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1071,7 +1073,7 @@ module Aws::S3Control
|
|
1071
1073
|
# }
|
1072
1074
|
#
|
1073
1075
|
# @!attribute [rw] account_id
|
1074
|
-
# The
|
1076
|
+
# The account ID associated with the S3 Batch Operations job.
|
1075
1077
|
# @return [String]
|
1076
1078
|
#
|
1077
1079
|
# @!attribute [rw] job_id
|
@@ -1100,7 +1102,7 @@ module Aws::S3Control
|
|
1100
1102
|
# }
|
1101
1103
|
#
|
1102
1104
|
# @!attribute [rw] account_id
|
1103
|
-
# The account ID for the
|
1105
|
+
# The account ID for the account whose `PublicAccessBlock`
|
1104
1106
|
# configuration you want to remove.
|
1105
1107
|
# @return [String]
|
1106
1108
|
#
|
@@ -1175,7 +1177,7 @@ module Aws::S3Control
|
|
1175
1177
|
# }
|
1176
1178
|
#
|
1177
1179
|
# @!attribute [rw] account_id
|
1178
|
-
# The
|
1180
|
+
# The account ID associated with the S3 Batch Operations job.
|
1179
1181
|
# @return [String]
|
1180
1182
|
#
|
1181
1183
|
# @!attribute [rw] job_id
|
@@ -1376,9 +1378,9 @@ module Aws::S3Control
|
|
1376
1378
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1377
1379
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1378
1380
|
#
|
1379
|
-
# For using this parameter with S3 on Outposts with the
|
1380
|
-
# CLI, you must specify the ARN of the access point
|
1381
|
-
# format
|
1381
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1382
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
1383
|
+
# accessed in the format
|
1382
1384
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1383
1385
|
# For example, to access the access point `reports-ap` through outpost
|
1384
1386
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1438,7 +1440,7 @@ module Aws::S3Control
|
|
1438
1440
|
# Indicates whether this access point policy is public. For more
|
1439
1441
|
# information about how Amazon S3 evaluates policies to determine
|
1440
1442
|
# whether they are public, see [The Meaning of "Public"][1] in the
|
1441
|
-
# *Amazon
|
1443
|
+
# *Amazon S3 User Guide*.
|
1442
1444
|
#
|
1443
1445
|
#
|
1444
1446
|
#
|
@@ -1510,9 +1512,9 @@ module Aws::S3Control
|
|
1510
1512
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1511
1513
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1512
1514
|
#
|
1513
|
-
# For using this parameter with S3 on Outposts with the
|
1514
|
-
# CLI, you must specify the ARN of the access point
|
1515
|
-
# format
|
1515
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1516
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
1517
|
+
# accessed in the format
|
1516
1518
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1517
1519
|
# For example, to access the access point `reports-ap` through outpost
|
1518
1520
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1552,6 +1554,11 @@ module Aws::S3Control
|
|
1552
1554
|
# @!attribute [rw] vpc_configuration
|
1553
1555
|
# Contains the virtual private cloud (VPC) configuration for the
|
1554
1556
|
# specified access point.
|
1557
|
+
#
|
1558
|
+
# <note markdown="1"> This element is empty if this access point is an Amazon S3 on
|
1559
|
+
# Outposts access point that is used by other Amazon Web Services.
|
1560
|
+
#
|
1561
|
+
# </note>
|
1555
1562
|
# @return [Types::VpcConfiguration]
|
1556
1563
|
#
|
1557
1564
|
# @!attribute [rw] public_access_block_configuration
|
@@ -1559,7 +1566,7 @@ module Aws::S3Control
|
|
1559
1566
|
# Amazon S3 account. You can enable the configuration options in any
|
1560
1567
|
# combination. For more information about when Amazon S3 considers a
|
1561
1568
|
# bucket or object public, see [The Meaning of "Public"][1] in the
|
1562
|
-
# *Amazon
|
1569
|
+
# *Amazon S3 User Guide*.
|
1563
1570
|
#
|
1564
1571
|
# This is not supported for Amazon S3 on Outposts.
|
1565
1572
|
#
|
@@ -1594,7 +1601,7 @@ module Aws::S3Control
|
|
1594
1601
|
# }
|
1595
1602
|
#
|
1596
1603
|
# @!attribute [rw] account_id
|
1597
|
-
# The
|
1604
|
+
# The account ID of the Outposts bucket.
|
1598
1605
|
# @return [String]
|
1599
1606
|
#
|
1600
1607
|
# @!attribute [rw] bucket
|
@@ -1603,8 +1610,9 @@ module Aws::S3Control
|
|
1603
1610
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1604
1611
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1605
1612
|
#
|
1606
|
-
# For using this parameter with S3 on Outposts with the
|
1607
|
-
# CLI, you must specify the ARN of the bucket
|
1613
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1614
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1615
|
+
# accessed in the format
|
1608
1616
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1609
1617
|
# For example, to access the bucket `reports` through outpost
|
1610
1618
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1643,7 +1651,7 @@ module Aws::S3Control
|
|
1643
1651
|
# }
|
1644
1652
|
#
|
1645
1653
|
# @!attribute [rw] account_id
|
1646
|
-
# The
|
1654
|
+
# The account ID of the Outposts bucket.
|
1647
1655
|
# @return [String]
|
1648
1656
|
#
|
1649
1657
|
# @!attribute [rw] bucket
|
@@ -1652,8 +1660,9 @@ module Aws::S3Control
|
|
1652
1660
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1653
1661
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1654
1662
|
#
|
1655
|
-
# For using this parameter with S3 on Outposts with the
|
1656
|
-
# CLI, you must specify the ARN of the bucket
|
1663
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1664
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1665
|
+
# accessed in the format
|
1657
1666
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1658
1667
|
# For example, to access the bucket `reports` through outpost
|
1659
1668
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1692,7 +1701,7 @@ module Aws::S3Control
|
|
1692
1701
|
# }
|
1693
1702
|
#
|
1694
1703
|
# @!attribute [rw] account_id
|
1695
|
-
# The
|
1704
|
+
# The account ID of the Outposts bucket.
|
1696
1705
|
# @return [String]
|
1697
1706
|
#
|
1698
1707
|
# @!attribute [rw] bucket
|
@@ -1701,8 +1710,9 @@ module Aws::S3Control
|
|
1701
1710
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1702
1711
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1703
1712
|
#
|
1704
|
-
# For using this parameter with S3 on Outposts with the
|
1705
|
-
# CLI, you must specify the ARN of the bucket
|
1713
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1714
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1715
|
+
# accessed in the format
|
1706
1716
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1707
1717
|
# For example, to access the bucket `reports` through outpost
|
1708
1718
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1750,7 +1760,7 @@ module Aws::S3Control
|
|
1750
1760
|
# }
|
1751
1761
|
#
|
1752
1762
|
# @!attribute [rw] account_id
|
1753
|
-
# The
|
1763
|
+
# The account ID of the Outposts bucket.
|
1754
1764
|
# @return [String]
|
1755
1765
|
#
|
1756
1766
|
# @!attribute [rw] bucket
|
@@ -1759,8 +1769,9 @@ module Aws::S3Control
|
|
1759
1769
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1760
1770
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1761
1771
|
#
|
1762
|
-
# For using this parameter with S3 on Outposts with the
|
1763
|
-
# CLI, you must specify the ARN of the bucket
|
1772
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1773
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1774
|
+
# accessed in the format
|
1764
1775
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1765
1776
|
# For example, to access the bucket `reports` through outpost
|
1766
1777
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1799,7 +1810,7 @@ module Aws::S3Control
|
|
1799
1810
|
# }
|
1800
1811
|
#
|
1801
1812
|
# @!attribute [rw] account_id
|
1802
|
-
# The
|
1813
|
+
# The account ID associated with the S3 Batch Operations job.
|
1803
1814
|
# @return [String]
|
1804
1815
|
#
|
1805
1816
|
# @!attribute [rw] job_id
|
@@ -1830,7 +1841,7 @@ module Aws::S3Control
|
|
1830
1841
|
|
1831
1842
|
# @!attribute [rw] public_access_block_configuration
|
1832
1843
|
# The `PublicAccessBlock` configuration currently in effect for this
|
1833
|
-
#
|
1844
|
+
# account.
|
1834
1845
|
# @return [Types::PublicAccessBlockConfiguration]
|
1835
1846
|
#
|
1836
1847
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetPublicAccessBlockOutput AWS API Documentation
|
@@ -1849,7 +1860,7 @@ module Aws::S3Control
|
|
1849
1860
|
# }
|
1850
1861
|
#
|
1851
1862
|
# @!attribute [rw] account_id
|
1852
|
-
# The account ID for the
|
1863
|
+
# The account ID for the account whose `PublicAccessBlock`
|
1853
1864
|
# configuration you want to retrieve.
|
1854
1865
|
# @return [String]
|
1855
1866
|
#
|
@@ -2077,7 +2088,7 @@ module Aws::S3Control
|
|
2077
2088
|
# @return [Time]
|
2078
2089
|
#
|
2079
2090
|
# @!attribute [rw] role_arn
|
2080
|
-
# The Amazon Resource Name (ARN) for the
|
2091
|
+
# The Amazon Resource Name (ARN) for the Identity and Access
|
2081
2092
|
# Management (IAM) role assigned to run the tasks for this job.
|
2082
2093
|
# @return [String]
|
2083
2094
|
#
|
@@ -2304,7 +2315,7 @@ module Aws::S3Control
|
|
2304
2315
|
|
2305
2316
|
# The operation that you want this job to perform on every object listed
|
2306
2317
|
# in the manifest. For more information about the available operations,
|
2307
|
-
# see [Operations][1] in the *Amazon
|
2318
|
+
# see [Operations][1] in the *Amazon S3 User Guide*.
|
2308
2319
|
#
|
2309
2320
|
#
|
2310
2321
|
#
|
@@ -2362,6 +2373,7 @@ module Aws::S3Control
|
|
2362
2373
|
# object_lock_legal_hold_status: "OFF", # accepts OFF, ON
|
2363
2374
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
2364
2375
|
# object_lock_retain_until_date: Time.now,
|
2376
|
+
# bucket_key_enabled: false,
|
2365
2377
|
# },
|
2366
2378
|
# s3_put_object_acl: {
|
2367
2379
|
# access_control_policy: {
|
@@ -2413,7 +2425,7 @@ module Aws::S3Control
|
|
2413
2425
|
# }
|
2414
2426
|
#
|
2415
2427
|
# @!attribute [rw] lambda_invoke
|
2416
|
-
# Directs the specified job to invoke an
|
2428
|
+
# Directs the specified job to invoke an Lambda function on every
|
2417
2429
|
# object in the manifest.
|
2418
2430
|
# @return [Types::LambdaInvokeOperation]
|
2419
2431
|
#
|
@@ -2447,7 +2459,7 @@ module Aws::S3Control
|
|
2447
2459
|
# operation that an S3 Batch Operations job passes every object to the
|
2448
2460
|
# underlying `PutObjectLegalHold` API. For more information, see
|
2449
2461
|
# [Using S3 Object Lock legal hold with S3 Batch Operations][1] in the
|
2450
|
-
# *Amazon
|
2462
|
+
# *Amazon S3 User Guide*.
|
2451
2463
|
#
|
2452
2464
|
#
|
2453
2465
|
#
|
@@ -2459,7 +2471,7 @@ module Aws::S3Control
|
|
2459
2471
|
# action for an S3 Batch Operations job. Batch Operations passes every
|
2460
2472
|
# object to the underlying `PutObjectRetention` API. For more
|
2461
2473
|
# information, see [Using S3 Object Lock retention with S3 Batch
|
2462
|
-
# Operations][1] in the *Amazon
|
2474
|
+
# Operations][1] in the *Amazon S3 User Guide*.
|
2463
2475
|
#
|
2464
2476
|
#
|
2465
2477
|
#
|
@@ -2575,7 +2587,7 @@ module Aws::S3Control
|
|
2575
2587
|
# }
|
2576
2588
|
#
|
2577
2589
|
# @!attribute [rw] function_arn
|
2578
|
-
# The Amazon Resource Name (ARN) for the
|
2590
|
+
# The Amazon Resource Name (ARN) for the Lambda function that the
|
2579
2591
|
# specified job will invoke on every object in the manifest.
|
2580
2592
|
# @return [String]
|
2581
2593
|
#
|
@@ -2795,7 +2807,7 @@ module Aws::S3Control
|
|
2795
2807
|
# upload that Amazon S3 waits before permanently removing all parts of
|
2796
2808
|
# the upload. For more information, see [ Aborting Incomplete
|
2797
2809
|
# Multipart Uploads Using a Bucket Lifecycle Policy][1] in the *Amazon
|
2798
|
-
#
|
2810
|
+
# S3 User Guide*.
|
2799
2811
|
#
|
2800
2812
|
#
|
2801
2813
|
#
|
@@ -2970,8 +2982,8 @@ module Aws::S3Control
|
|
2970
2982
|
# }
|
2971
2983
|
#
|
2972
2984
|
# @!attribute [rw] account_id
|
2973
|
-
# The
|
2974
|
-
#
|
2985
|
+
# The account ID for owner of the bucket whose access points you want
|
2986
|
+
# to list.
|
2975
2987
|
# @return [String]
|
2976
2988
|
#
|
2977
2989
|
# @!attribute [rw] bucket
|
@@ -2981,8 +2993,9 @@ module Aws::S3Control
|
|
2981
2993
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
2982
2994
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
2983
2995
|
#
|
2984
|
-
# For using this parameter with S3 on Outposts with the
|
2985
|
-
# CLI, you must specify the ARN of the bucket
|
2996
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
2997
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
2998
|
+
# accessed in the format
|
2986
2999
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2987
3000
|
# For example, to access the bucket `reports` through outpost
|
2988
3001
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3049,7 +3062,7 @@ module Aws::S3Control
|
|
3049
3062
|
# }
|
3050
3063
|
#
|
3051
3064
|
# @!attribute [rw] account_id
|
3052
|
-
# The
|
3065
|
+
# The account ID associated with the S3 Batch Operations job.
|
3053
3066
|
# @return [String]
|
3054
3067
|
#
|
3055
3068
|
# @!attribute [rw] job_statuses
|
@@ -3112,7 +3125,7 @@ module Aws::S3Control
|
|
3112
3125
|
# }
|
3113
3126
|
#
|
3114
3127
|
# @!attribute [rw] account_id
|
3115
|
-
# The
|
3128
|
+
# The account ID of the Outposts bucket.
|
3116
3129
|
# @return [String]
|
3117
3130
|
#
|
3118
3131
|
# @!attribute [rw] next_token
|
@@ -3122,7 +3135,7 @@ module Aws::S3Control
|
|
3122
3135
|
# @return [Integer]
|
3123
3136
|
#
|
3124
3137
|
# @!attribute [rw] outpost_id
|
3125
|
-
# The ID of the
|
3138
|
+
# The ID of the Outposts.
|
3126
3139
|
#
|
3127
3140
|
# <note markdown="1"> This is required by Amazon S3 on Outposts buckets.
|
3128
3141
|
#
|
@@ -3266,8 +3279,7 @@ module Aws::S3Control
|
|
3266
3279
|
# Specifies the number of days an object is noncurrent before Amazon
|
3267
3280
|
# S3 can perform the associated action. For information about the
|
3268
3281
|
# noncurrent days calculations, see [How Amazon S3 Calculates When an
|
3269
|
-
# Object Became Noncurrent][1] in the *Amazon
|
3270
|
-
# Developer Guide*.
|
3282
|
+
# Object Became Noncurrent][1] in the *Amazon S3 User Guide*.
|
3271
3283
|
#
|
3272
3284
|
#
|
3273
3285
|
#
|
@@ -3296,8 +3308,8 @@ module Aws::S3Control
|
|
3296
3308
|
# Specifies the number of days an object is noncurrent before Amazon
|
3297
3309
|
# S3 can perform the associated action. For information about the
|
3298
3310
|
# noncurrent days calculations, see [ How Amazon S3 Calculates How
|
3299
|
-
# Long an Object Has Been Noncurrent][1] in the *Amazon
|
3300
|
-
#
|
3311
|
+
# Long an Object Has Been Noncurrent][1] in the *Amazon S3 User
|
3312
|
+
# Guide*.
|
3301
3313
|
#
|
3302
3314
|
#
|
3303
3315
|
#
|
@@ -3328,7 +3340,7 @@ module Aws::S3Control
|
|
3328
3340
|
include Aws::Structure
|
3329
3341
|
end
|
3330
3342
|
|
3331
|
-
# An access point with an attached
|
3343
|
+
# An access point with an attached Lambda function used to access
|
3332
3344
|
# transformed data from an Amazon S3 bucket.
|
3333
3345
|
#
|
3334
3346
|
# @!attribute [rw] name
|
@@ -3414,7 +3426,7 @@ module Aws::S3Control
|
|
3414
3426
|
# }
|
3415
3427
|
#
|
3416
3428
|
# @!attribute [rw] aws_lambda
|
3417
|
-
# A container for an
|
3429
|
+
# A container for an Lambda function.
|
3418
3430
|
# @return [Types::AwsLambdaTransformation]
|
3419
3431
|
#
|
3420
3432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ObjectLambdaContentTransformation AWS API Documentation
|
@@ -3443,7 +3455,7 @@ module Aws::S3Control
|
|
3443
3455
|
#
|
3444
3456
|
# @!attribute [rw] actions
|
3445
3457
|
# A container for the action of an Object Lambda Access Point
|
3446
|
-
# configuration.
|
3458
|
+
# configuration. Valid input is `GetObject`.
|
3447
3459
|
# @return [Array<String>]
|
3448
3460
|
#
|
3449
3461
|
# @!attribute [rw] content_transformation
|
@@ -3463,7 +3475,7 @@ module Aws::S3Control
|
|
3463
3475
|
# Indicates whether this access point policy is public. For more
|
3464
3476
|
# information about how Amazon S3 evaluates policies to determine
|
3465
3477
|
# whether they are public, see [The Meaning of "Public"][1] in the
|
3466
|
-
# *Amazon
|
3478
|
+
# *Amazon S3 User Guide*.
|
3467
3479
|
#
|
3468
3480
|
#
|
3469
3481
|
#
|
@@ -3543,7 +3555,7 @@ module Aws::S3Control
|
|
3543
3555
|
# Amazon S3 account. You can enable the configuration options in any
|
3544
3556
|
# combination. For more information about when Amazon S3 considers a
|
3545
3557
|
# bucket or object public, see [The Meaning of "Public"][1] in the
|
3546
|
-
# *Amazon
|
3558
|
+
# *Amazon S3 User Guide*.
|
3547
3559
|
#
|
3548
3560
|
# This is not supported for Amazon S3 on Outposts.
|
3549
3561
|
#
|
@@ -3604,8 +3616,8 @@ module Aws::S3Control
|
|
3604
3616
|
# @!attribute [rw] restrict_public_buckets
|
3605
3617
|
# Specifies whether Amazon S3 should restrict public bucket policies
|
3606
3618
|
# for buckets in this account. Setting this element to `TRUE`
|
3607
|
-
# restricts access to buckets with public policies to only
|
3608
|
-
# principals and authorized users within this account.
|
3619
|
+
# restricts access to buckets with public policies to only Amazon Web
|
3620
|
+
# Service principals and authorized users within this account.
|
3609
3621
|
#
|
3610
3622
|
# Enabling this setting doesn't affect previously stored bucket
|
3611
3623
|
# policies, except that public and cross-account access within any
|
@@ -3715,8 +3727,8 @@ module Aws::S3Control
|
|
3715
3727
|
# }
|
3716
3728
|
#
|
3717
3729
|
# @!attribute [rw] account_id
|
3718
|
-
# The
|
3719
|
-
#
|
3730
|
+
# The account ID for owner of the bucket associated with the specified
|
3731
|
+
# access point.
|
3720
3732
|
# @return [String]
|
3721
3733
|
#
|
3722
3734
|
# @!attribute [rw] name
|
@@ -3726,9 +3738,9 @@ module Aws::S3Control
|
|
3726
3738
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
3727
3739
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
3728
3740
|
#
|
3729
|
-
# For using this parameter with S3 on Outposts with the
|
3730
|
-
# CLI, you must specify the ARN of the access point
|
3731
|
-
# format
|
3741
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3742
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
3743
|
+
# accessed in the format
|
3732
3744
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
3733
3745
|
# For example, to access the access point `reports-ap` through outpost
|
3734
3746
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3740,8 +3752,8 @@ module Aws::S3Control
|
|
3740
3752
|
# @!attribute [rw] policy
|
3741
3753
|
# The policy that you want to apply to the specified access point. For
|
3742
3754
|
# more information about access point policies, see [Managing data
|
3743
|
-
# access with Amazon S3
|
3744
|
-
#
|
3755
|
+
# access with Amazon S3 access points][1] in the *Amazon S3 User
|
3756
|
+
# Guide*.
|
3745
3757
|
#
|
3746
3758
|
#
|
3747
3759
|
#
|
@@ -3815,7 +3827,7 @@ module Aws::S3Control
|
|
3815
3827
|
# }
|
3816
3828
|
#
|
3817
3829
|
# @!attribute [rw] account_id
|
3818
|
-
# The
|
3830
|
+
# The account ID of the Outposts bucket.
|
3819
3831
|
# @return [String]
|
3820
3832
|
#
|
3821
3833
|
# @!attribute [rw] bucket
|
@@ -3847,7 +3859,7 @@ module Aws::S3Control
|
|
3847
3859
|
# }
|
3848
3860
|
#
|
3849
3861
|
# @!attribute [rw] account_id
|
3850
|
-
# The
|
3862
|
+
# The account ID of the Outposts bucket.
|
3851
3863
|
# @return [String]
|
3852
3864
|
#
|
3853
3865
|
# @!attribute [rw] bucket
|
@@ -3856,8 +3868,9 @@ module Aws::S3Control
|
|
3856
3868
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
3857
3869
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
3858
3870
|
#
|
3859
|
-
# For using this parameter with S3 on Outposts with the
|
3860
|
-
# CLI, you must specify the ARN of the bucket
|
3871
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3872
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
3873
|
+
# accessed in the format
|
3861
3874
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3862
3875
|
# For example, to access the bucket `reports` through outpost
|
3863
3876
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3907,7 +3920,7 @@ module Aws::S3Control
|
|
3907
3920
|
# }
|
3908
3921
|
#
|
3909
3922
|
# @!attribute [rw] account_id
|
3910
|
-
# The
|
3923
|
+
# The account ID of the Outposts bucket.
|
3911
3924
|
# @return [String]
|
3912
3925
|
#
|
3913
3926
|
# @!attribute [rw] bucket
|
@@ -3916,8 +3929,9 @@ module Aws::S3Control
|
|
3916
3929
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
3917
3930
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
3918
3931
|
#
|
3919
|
-
# For using this parameter with S3 on Outposts with the
|
3920
|
-
# CLI, you must specify the ARN of the bucket
|
3932
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3933
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
3934
|
+
# accessed in the format
|
3921
3935
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3922
3936
|
# For example, to access the bucket `reports` through outpost
|
3923
3937
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3954,7 +3968,7 @@ module Aws::S3Control
|
|
3954
3968
|
# }
|
3955
3969
|
#
|
3956
3970
|
# @!attribute [rw] account_id
|
3957
|
-
# The
|
3971
|
+
# The account ID associated with the S3 Batch Operations job.
|
3958
3972
|
# @return [String]
|
3959
3973
|
#
|
3960
3974
|
# @!attribute [rw] job_id
|
@@ -3995,11 +4009,11 @@ module Aws::S3Control
|
|
3995
4009
|
#
|
3996
4010
|
# @!attribute [rw] public_access_block_configuration
|
3997
4011
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
3998
|
-
# specified
|
4012
|
+
# specified account.
|
3999
4013
|
# @return [Types::PublicAccessBlockConfiguration]
|
4000
4014
|
#
|
4001
4015
|
# @!attribute [rw] account_id
|
4002
|
-
# The account ID for the
|
4016
|
+
# The account ID for the account whose `PublicAccessBlock`
|
4003
4017
|
# configuration you want to set.
|
4004
4018
|
# @return [String]
|
4005
4019
|
#
|
@@ -4170,7 +4184,7 @@ module Aws::S3Control
|
|
4170
4184
|
# @return [Time]
|
4171
4185
|
#
|
4172
4186
|
# @!attribute [rw] outpost_id
|
4173
|
-
# The
|
4187
|
+
# The Outposts ID of the regional bucket.
|
4174
4188
|
# @return [String]
|
4175
4189
|
#
|
4176
4190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/RegionalBucket AWS API Documentation
|
@@ -4378,6 +4392,7 @@ module Aws::S3Control
|
|
4378
4392
|
# object_lock_legal_hold_status: "OFF", # accepts OFF, ON
|
4379
4393
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
4380
4394
|
# object_lock_retain_until_date: Time.now,
|
4395
|
+
# bucket_key_enabled: false,
|
4381
4396
|
# }
|
4382
4397
|
#
|
4383
4398
|
# @!attribute [rw] target_resource
|
@@ -4445,6 +4460,16 @@ module Aws::S3Control
|
|
4445
4460
|
# all objects in the Batch Operations job.
|
4446
4461
|
# @return [Time]
|
4447
4462
|
#
|
4463
|
+
# @!attribute [rw] bucket_key_enabled
|
4464
|
+
# Specifies whether Amazon S3 should use an S3 Bucket Key for object
|
4465
|
+
# encryption with server-side encryption using Amazon Web Services KMS
|
4466
|
+
# (SSE-KMS). Setting this header to `true` causes Amazon S3 to use an
|
4467
|
+
# S3 Bucket Key for object encryption with SSE-KMS.
|
4468
|
+
#
|
4469
|
+
# Specifying this header with an *object* action doesn’t affect
|
4470
|
+
# *bucket-level* settings for S3 Bucket Key.
|
4471
|
+
# @return [Boolean]
|
4472
|
+
#
|
4448
4473
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/S3CopyObjectOperation AWS API Documentation
|
4449
4474
|
#
|
4450
4475
|
class S3CopyObjectOperation < Struct.new(
|
@@ -4463,7 +4488,8 @@ module Aws::S3Control
|
|
4463
4488
|
:target_key_prefix,
|
4464
4489
|
:object_lock_legal_hold_status,
|
4465
4490
|
:object_lock_mode,
|
4466
|
-
:object_lock_retain_until_date
|
4491
|
+
:object_lock_retain_until_date,
|
4492
|
+
:bucket_key_enabled)
|
4467
4493
|
SENSITIVE = []
|
4468
4494
|
include Aws::Structure
|
4469
4495
|
end
|
@@ -4705,8 +4731,8 @@ module Aws::S3Control
|
|
4705
4731
|
# objects in the S3 Batch Operations job. If you don't provide `Mode`
|
4706
4732
|
# and `RetainUntilDate` data types in your operation, you will remove
|
4707
4733
|
# the retention from your objects. For more information, see [Using S3
|
4708
|
-
# Object Lock retention with S3 Batch Operations][1] in the *Amazon
|
4709
|
-
#
|
4734
|
+
# Object Lock retention with S3 Batch Operations][1] in the *Amazon S3
|
4735
|
+
# User Guide*.
|
4710
4736
|
#
|
4711
4737
|
#
|
4712
4738
|
#
|
@@ -4787,8 +4813,8 @@ module Aws::S3Control
|
|
4787
4813
|
# Contains the configuration for an S3 Object Lock legal hold operation
|
4788
4814
|
# that an S3 Batch Operations job passes every object to the underlying
|
4789
4815
|
# `PutObjectLegalHold` API. For more information, see [Using S3 Object
|
4790
|
-
# Lock legal hold with S3 Batch Operations][1] in the *Amazon
|
4791
|
-
#
|
4816
|
+
# Lock legal hold with S3 Batch Operations][1] in the *Amazon S3 User
|
4817
|
+
# Guide*.
|
4792
4818
|
#
|
4793
4819
|
#
|
4794
4820
|
#
|
@@ -4820,7 +4846,7 @@ module Aws::S3Control
|
|
4820
4846
|
# action for an S3 Batch Operations job. Batch Operations passes every
|
4821
4847
|
# object to the underlying `PutObjectRetention` API. For more
|
4822
4848
|
# information, see [Using S3 Object Lock retention with S3 Batch
|
4823
|
-
# Operations][1] in the *Amazon
|
4849
|
+
# Operations][1] in the *Amazon S3 User Guide*.
|
4824
4850
|
#
|
4825
4851
|
#
|
4826
4852
|
#
|
@@ -4846,8 +4872,8 @@ module Aws::S3Control
|
|
4846
4872
|
# @!attribute [rw] retention
|
4847
4873
|
# Contains the Object Lock retention mode to be applied to all objects
|
4848
4874
|
# in the Batch Operations job. For more information, see [Using S3
|
4849
|
-
# Object Lock retention with S3 Batch Operations][1] in the *Amazon
|
4850
|
-
#
|
4875
|
+
# Object Lock retention with S3 Batch Operations][1] in the *Amazon S3
|
4876
|
+
# User Guide*.
|
4851
4877
|
#
|
4852
4878
|
#
|
4853
4879
|
#
|
@@ -4982,7 +5008,7 @@ module Aws::S3Control
|
|
4982
5008
|
include Aws::Structure
|
4983
5009
|
end
|
4984
5010
|
|
4985
|
-
# The
|
5011
|
+
# The Amazon Web Services organization for your S3 Storage Lens.
|
4986
5012
|
#
|
4987
5013
|
# @note When making an API call, you may pass StorageLensAwsOrg
|
4988
5014
|
# data as a hash:
|
@@ -4992,9 +5018,9 @@ module Aws::S3Control
|
|
4992
5018
|
# }
|
4993
5019
|
#
|
4994
5020
|
# @!attribute [rw] arn
|
4995
|
-
# A container for the Amazon Resource Name (ARN) of the
|
4996
|
-
# organization. This property is read-only and follows the
|
4997
|
-
# format: `
|
5021
|
+
# A container for the Amazon Resource Name (ARN) of the Amazon Web
|
5022
|
+
# Services organization. This property is read-only and follows the
|
5023
|
+
# following format: `
|
4998
5024
|
# arn:aws:organizations:us-east-1:example-account-id:organization/o-ex2l495dck
|
4999
5025
|
# `
|
5000
5026
|
# @return [String]
|
@@ -5097,8 +5123,8 @@ module Aws::S3Control
|
|
5097
5123
|
# @return [Boolean]
|
5098
5124
|
#
|
5099
5125
|
# @!attribute [rw] aws_org
|
5100
|
-
# A container for the
|
5101
|
-
# configuration.
|
5126
|
+
# A container for the Amazon Web Services organization for this S3
|
5127
|
+
# Storage Lens configuration.
|
5102
5128
|
# @return [Types::StorageLensAwsOrg]
|
5103
5129
|
#
|
5104
5130
|
# @!attribute [rw] storage_lens_arn
|
@@ -5266,8 +5292,8 @@ module Aws::S3Control
|
|
5266
5292
|
|
5267
5293
|
# Specifies when an object transitions to a specified storage class. For
|
5268
5294
|
# more information about Amazon S3 Lifecycle configuration rules, see [
|
5269
|
-
# Transitioning objects using Amazon S3 Lifecycle][1] in the *Amazon
|
5270
|
-
#
|
5295
|
+
# Transitioning objects using Amazon S3 Lifecycle][1] in the *Amazon S3
|
5296
|
+
# User Guide*.
|
5271
5297
|
#
|
5272
5298
|
#
|
5273
5299
|
#
|
@@ -5318,7 +5344,7 @@ module Aws::S3Control
|
|
5318
5344
|
# }
|
5319
5345
|
#
|
5320
5346
|
# @!attribute [rw] account_id
|
5321
|
-
# The
|
5347
|
+
# The account ID associated with the S3 Batch Operations job.
|
5322
5348
|
# @return [String]
|
5323
5349
|
#
|
5324
5350
|
# @!attribute [rw] job_id
|
@@ -5367,7 +5393,7 @@ module Aws::S3Control
|
|
5367
5393
|
# }
|
5368
5394
|
#
|
5369
5395
|
# @!attribute [rw] account_id
|
5370
|
-
# The
|
5396
|
+
# The account ID associated with the S3 Batch Operations job.
|
5371
5397
|
# @return [String]
|
5372
5398
|
#
|
5373
5399
|
# @!attribute [rw] job_id
|