aws-sdk-s3control 1.34.0 → 1.38.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 +130 -103
- data/lib/aws-sdk-s3control/client_api.rb +14 -1
- data/lib/aws-sdk-s3control/types.rb +142 -105
- metadata +4 -4
@@ -20,6 +20,7 @@ module Aws::S3Control
|
|
20
20
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
21
21
|
AccountLevel = Shapes::StructureShape.new(name: 'AccountLevel')
|
22
22
|
ActivityMetrics = Shapes::StructureShape.new(name: 'ActivityMetrics')
|
23
|
+
Alias = Shapes::StringShape.new(name: 'Alias')
|
23
24
|
AwsLambdaTransformation = Shapes::StructureShape.new(name: 'AwsLambdaTransformation')
|
24
25
|
AwsLambdaTransformationPayload = Shapes::StringShape.new(name: 'AwsLambdaTransformationPayload')
|
25
26
|
AwsOrgArn = Shapes::StringShape.new(name: 'AwsOrgArn')
|
@@ -65,6 +66,7 @@ module Aws::S3Control
|
|
65
66
|
DeleteStorageLensConfigurationTaggingResult = Shapes::StructureShape.new(name: 'DeleteStorageLensConfigurationTaggingResult')
|
66
67
|
DescribeJobRequest = Shapes::StructureShape.new(name: 'DescribeJobRequest')
|
67
68
|
DescribeJobResult = Shapes::StructureShape.new(name: 'DescribeJobResult')
|
69
|
+
Endpoints = Shapes::MapShape.new(name: 'Endpoints')
|
68
70
|
ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
|
69
71
|
Exclude = Shapes::StructureShape.new(name: 'Exclude')
|
70
72
|
ExpirationStatus = Shapes::StringShape.new(name: 'ExpirationStatus')
|
@@ -186,7 +188,7 @@ module Aws::S3Control
|
|
186
188
|
ObjectLambdaAllowedFeature = Shapes::StringShape.new(name: 'ObjectLambdaAllowedFeature')
|
187
189
|
ObjectLambdaAllowedFeaturesList = Shapes::ListShape.new(name: 'ObjectLambdaAllowedFeaturesList')
|
188
190
|
ObjectLambdaConfiguration = Shapes::StructureShape.new(name: 'ObjectLambdaConfiguration')
|
189
|
-
ObjectLambdaContentTransformation = Shapes::
|
191
|
+
ObjectLambdaContentTransformation = Shapes::UnionShape.new(name: 'ObjectLambdaContentTransformation')
|
190
192
|
ObjectLambdaPolicy = Shapes::StringShape.new(name: 'ObjectLambdaPolicy')
|
191
193
|
ObjectLambdaSupportingAccessPointArn = Shapes::StringShape.new(name: 'ObjectLambdaSupportingAccessPointArn')
|
192
194
|
ObjectLambdaTransformationConfiguration = Shapes::StructureShape.new(name: 'ObjectLambdaTransformationConfiguration')
|
@@ -300,6 +302,7 @@ module Aws::S3Control
|
|
300
302
|
AccessPoint.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
|
301
303
|
AccessPoint.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
|
302
304
|
AccessPoint.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
305
|
+
AccessPoint.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
303
306
|
AccessPoint.struct_class = Types::AccessPoint
|
304
307
|
|
305
308
|
AccessPointList.member = Shapes::ShapeRef.new(shape: AccessPoint, location_name: "AccessPoint")
|
@@ -344,6 +347,7 @@ module Aws::S3Control
|
|
344
347
|
CreateAccessPointRequest.struct_class = Types::CreateAccessPointRequest
|
345
348
|
|
346
349
|
CreateAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
350
|
+
CreateAccessPointResult.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
347
351
|
CreateAccessPointResult.struct_class = Types::CreateAccessPointResult
|
348
352
|
|
349
353
|
CreateBucketConfiguration.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
|
@@ -440,6 +444,9 @@ module Aws::S3Control
|
|
440
444
|
DescribeJobResult.add_member(:job, Shapes::ShapeRef.new(shape: JobDescriptor, location_name: "Job"))
|
441
445
|
DescribeJobResult.struct_class = Types::DescribeJobResult
|
442
446
|
|
447
|
+
Endpoints.key = Shapes::ShapeRef.new(shape: NonEmptyMaxLength64String)
|
448
|
+
Endpoints.value = Shapes::ShapeRef.new(shape: NonEmptyMaxLength1024String)
|
449
|
+
|
443
450
|
Exclude.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
|
444
451
|
Exclude.add_member(:regions, Shapes::ShapeRef.new(shape: Regions, location_name: "Regions"))
|
445
452
|
Exclude.struct_class = Types::Exclude
|
@@ -498,6 +505,9 @@ module Aws::S3Control
|
|
498
505
|
GetAccessPointResult.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
|
499
506
|
GetAccessPointResult.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
|
500
507
|
GetAccessPointResult.add_member(:creation_date, Shapes::ShapeRef.new(shape: CreationDate, location_name: "CreationDate"))
|
508
|
+
GetAccessPointResult.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
509
|
+
GetAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
510
|
+
GetAccessPointResult.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, location_name: "Endpoints"))
|
501
511
|
GetAccessPointResult.struct_class = Types::GetAccessPointResult
|
502
512
|
|
503
513
|
GetBucketLifecycleConfigurationRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location: "header", location_name: "x-amz-account-id", metadata: {"hostLabel"=>true, "hostLabelName"=>"AccountId"}))
|
@@ -771,6 +781,9 @@ module Aws::S3Control
|
|
771
781
|
ObjectLambdaConfiguration.struct_class = Types::ObjectLambdaConfiguration
|
772
782
|
|
773
783
|
ObjectLambdaContentTransformation.add_member(:aws_lambda, Shapes::ShapeRef.new(shape: AwsLambdaTransformation, location_name: "AwsLambda"))
|
784
|
+
ObjectLambdaContentTransformation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
785
|
+
ObjectLambdaContentTransformation.add_member_subclass(:aws_lambda, Types::ObjectLambdaContentTransformation::AwsLambda)
|
786
|
+
ObjectLambdaContentTransformation.add_member_subclass(:unknown, Types::ObjectLambdaContentTransformation::Unknown)
|
774
787
|
ObjectLambdaContentTransformation.struct_class = Types::ObjectLambdaContentTransformation
|
775
788
|
|
776
789
|
ObjectLambdaTransformationConfiguration.add_member(:actions, Shapes::ShapeRef.new(shape: ObjectLambdaTransformationConfigurationActionsList, required: true, location_name: "Actions"))
|
@@ -52,7 +52,7 @@ module Aws::S3Control
|
|
52
52
|
# if one exists.
|
53
53
|
#
|
54
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
|
55
|
+
# Outposts access point that is used by other Amazon Web Services.
|
56
56
|
#
|
57
57
|
# </note>
|
58
58
|
# @return [Types::VpcConfiguration]
|
@@ -65,6 +65,10 @@ module Aws::S3Control
|
|
65
65
|
# The ARN for the access point.
|
66
66
|
# @return [String]
|
67
67
|
#
|
68
|
+
# @!attribute [rw] alias
|
69
|
+
# The name or alias of the access point.
|
70
|
+
# @return [String]
|
71
|
+
#
|
68
72
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AccessPoint AWS API Documentation
|
69
73
|
#
|
70
74
|
class AccessPoint < Struct.new(
|
@@ -72,7 +76,8 @@ module Aws::S3Control
|
|
72
76
|
:network_origin,
|
73
77
|
:vpc_configuration,
|
74
78
|
:bucket,
|
75
|
-
:access_point_arn
|
79
|
+
:access_point_arn,
|
80
|
+
:alias)
|
76
81
|
SENSITIVE = []
|
77
82
|
include Aws::Structure
|
78
83
|
end
|
@@ -142,7 +147,7 @@ module Aws::S3Control
|
|
142
147
|
include Aws::Structure
|
143
148
|
end
|
144
149
|
|
145
|
-
#
|
150
|
+
# Lambda function used to transform objects through an Object Lambda
|
146
151
|
# Access Point.
|
147
152
|
#
|
148
153
|
# @note When making an API call, you may pass AwsLambdaTransformation
|
@@ -154,7 +159,7 @@ module Aws::S3Control
|
|
154
159
|
# }
|
155
160
|
#
|
156
161
|
# @!attribute [rw] function_arn
|
157
|
-
# The Amazon Resource Name (ARN) of the
|
162
|
+
# The Amazon Resource Name (ARN) of the Lambda function.
|
158
163
|
# @return [String]
|
159
164
|
#
|
160
165
|
# @!attribute [rw] function_payload
|
@@ -183,7 +188,7 @@ module Aws::S3Control
|
|
183
188
|
end
|
184
189
|
|
185
190
|
# The requested Outposts bucket name is not available. The bucket
|
186
|
-
# namespace is shared by all users of the
|
191
|
+
# namespace is shared by all users of the Outposts in this Region.
|
187
192
|
# Select a different name and try again.
|
188
193
|
#
|
189
194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/BucketAlreadyExists AWS API Documentation
|
@@ -262,7 +267,7 @@ module Aws::S3Control
|
|
262
267
|
# }
|
263
268
|
#
|
264
269
|
# @!attribute [rw] account_id
|
265
|
-
# The
|
270
|
+
# The account ID for owner of the specified Object Lambda Access
|
266
271
|
# Point.
|
267
272
|
# @return [String]
|
268
273
|
#
|
@@ -315,7 +320,7 @@ module Aws::S3Control
|
|
315
320
|
# }
|
316
321
|
#
|
317
322
|
# @!attribute [rw] account_id
|
318
|
-
# The
|
323
|
+
# The account ID for the owner of the bucket for which you want to
|
319
324
|
# create an access point.
|
320
325
|
# @return [String]
|
321
326
|
#
|
@@ -330,8 +335,9 @@ module Aws::S3Control
|
|
330
335
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
331
336
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
332
337
|
#
|
333
|
-
# For using this parameter with S3 on Outposts with the
|
334
|
-
# CLI, you must specify the ARN of the bucket
|
338
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
339
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
340
|
+
# accessed in the format
|
335
341
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
336
342
|
# For example, to access the bucket `reports` through outpost
|
337
343
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -375,10 +381,15 @@ module Aws::S3Control
|
|
375
381
|
# </note>
|
376
382
|
# @return [String]
|
377
383
|
#
|
384
|
+
# @!attribute [rw] alias
|
385
|
+
# The name or alias of the access point.
|
386
|
+
# @return [String]
|
387
|
+
#
|
378
388
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateAccessPointResult AWS API Documentation
|
379
389
|
#
|
380
390
|
class CreateAccessPointResult < Struct.new(
|
381
|
-
:access_point_arn
|
391
|
+
:access_point_arn,
|
392
|
+
:alias)
|
382
393
|
SENSITIVE = []
|
383
394
|
include Aws::Structure
|
384
395
|
end
|
@@ -538,8 +549,9 @@ module Aws::S3Control
|
|
538
549
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
539
550
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
540
551
|
#
|
541
|
-
# For using this parameter with S3 on Outposts with the
|
542
|
-
# CLI, you must specify the ARN of the bucket
|
552
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
553
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
554
|
+
# accessed in the format
|
543
555
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
544
556
|
# For example, to access the bucket `reports` through outpost
|
545
557
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -693,7 +705,7 @@ module Aws::S3Control
|
|
693
705
|
# }
|
694
706
|
#
|
695
707
|
# @!attribute [rw] account_id
|
696
|
-
# The
|
708
|
+
# The account ID that creates the job.
|
697
709
|
# @return [String]
|
698
710
|
#
|
699
711
|
# @!attribute [rw] confirmation_required
|
@@ -741,7 +753,7 @@ module Aws::S3Control
|
|
741
753
|
# @return [Integer]
|
742
754
|
#
|
743
755
|
# @!attribute [rw] role_arn
|
744
|
-
# The Amazon Resource Name (ARN) for the
|
756
|
+
# The Amazon Resource Name (ARN) for the Identity and Access
|
745
757
|
# Management (IAM) role that Batch Operations will use to run this
|
746
758
|
# job's action on every object in the manifest.
|
747
759
|
# @return [String]
|
@@ -852,9 +864,9 @@ module Aws::S3Control
|
|
852
864
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
853
865
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
854
866
|
#
|
855
|
-
# For using this parameter with S3 on Outposts with the
|
856
|
-
# CLI, you must specify the ARN of the access point
|
857
|
-
# format
|
867
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
868
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
869
|
+
# accessed in the format
|
858
870
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
859
871
|
# For example, to access the access point `reports-ap` through outpost
|
860
872
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -890,9 +902,9 @@ module Aws::S3Control
|
|
890
902
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
891
903
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
892
904
|
#
|
893
|
-
# For using this parameter with S3 on Outposts with the
|
894
|
-
# CLI, you must specify the ARN of the access point
|
895
|
-
# format
|
905
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
906
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
907
|
+
# accessed in the format
|
896
908
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
897
909
|
# For example, to access the access point `reports-ap` through outpost
|
898
910
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -928,8 +940,9 @@ module Aws::S3Control
|
|
928
940
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
929
941
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
930
942
|
#
|
931
|
-
# For using this parameter with S3 on Outposts with the
|
932
|
-
# CLI, you must specify the ARN of the bucket
|
943
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
944
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
945
|
+
# accessed in the format
|
933
946
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
934
947
|
# For example, to access the bucket `reports` through outpost
|
935
948
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -965,8 +978,9 @@ module Aws::S3Control
|
|
965
978
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
966
979
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
967
980
|
#
|
968
|
-
# For using this parameter with S3 on Outposts with the
|
969
|
-
# CLI, you must specify the ARN of the bucket
|
981
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
982
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
983
|
+
# accessed in the format
|
970
984
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
971
985
|
# For example, to access the bucket `reports` through outpost
|
972
986
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1002,8 +1016,9 @@ module Aws::S3Control
|
|
1002
1016
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1003
1017
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1004
1018
|
#
|
1005
|
-
# For using this parameter with S3 on Outposts with the
|
1006
|
-
# CLI, you must specify the ARN of the bucket
|
1019
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1020
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1021
|
+
# accessed in the format
|
1007
1022
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1008
1023
|
# For example, to access the bucket `reports` through outpost
|
1009
1024
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1030,7 +1045,7 @@ module Aws::S3Control
|
|
1030
1045
|
# }
|
1031
1046
|
#
|
1032
1047
|
# @!attribute [rw] account_id
|
1033
|
-
# The
|
1048
|
+
# The account ID of the Outposts bucket tag set to be removed.
|
1034
1049
|
# @return [String]
|
1035
1050
|
#
|
1036
1051
|
# @!attribute [rw] bucket
|
@@ -1039,8 +1054,9 @@ module Aws::S3Control
|
|
1039
1054
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1040
1055
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1041
1056
|
#
|
1042
|
-
# For using this parameter with S3 on Outposts with the
|
1043
|
-
# CLI, you must specify the ARN of the bucket
|
1057
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1058
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1059
|
+
# accessed in the format
|
1044
1060
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1045
1061
|
# For example, to access the bucket `reports` through outpost
|
1046
1062
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1067,7 +1083,7 @@ module Aws::S3Control
|
|
1067
1083
|
# }
|
1068
1084
|
#
|
1069
1085
|
# @!attribute [rw] account_id
|
1070
|
-
# The
|
1086
|
+
# The account ID associated with the S3 Batch Operations job.
|
1071
1087
|
# @return [String]
|
1072
1088
|
#
|
1073
1089
|
# @!attribute [rw] job_id
|
@@ -1096,7 +1112,7 @@ module Aws::S3Control
|
|
1096
1112
|
# }
|
1097
1113
|
#
|
1098
1114
|
# @!attribute [rw] account_id
|
1099
|
-
# The account ID for the
|
1115
|
+
# The account ID for the account whose `PublicAccessBlock`
|
1100
1116
|
# configuration you want to remove.
|
1101
1117
|
# @return [String]
|
1102
1118
|
#
|
@@ -1171,7 +1187,7 @@ module Aws::S3Control
|
|
1171
1187
|
# }
|
1172
1188
|
#
|
1173
1189
|
# @!attribute [rw] account_id
|
1174
|
-
# The
|
1190
|
+
# The account ID associated with the S3 Batch Operations job.
|
1175
1191
|
# @return [String]
|
1176
1192
|
#
|
1177
1193
|
# @!attribute [rw] job_id
|
@@ -1372,9 +1388,9 @@ module Aws::S3Control
|
|
1372
1388
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1373
1389
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1374
1390
|
#
|
1375
|
-
# For using this parameter with S3 on Outposts with the
|
1376
|
-
# CLI, you must specify the ARN of the access point
|
1377
|
-
# format
|
1391
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1392
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
1393
|
+
# accessed in the format
|
1378
1394
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1379
1395
|
# For example, to access the access point `reports-ap` through outpost
|
1380
1396
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1506,9 +1522,9 @@ module Aws::S3Control
|
|
1506
1522
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1507
1523
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1508
1524
|
#
|
1509
|
-
# For using this parameter with S3 on Outposts with the
|
1510
|
-
# CLI, you must specify the ARN of the access point
|
1511
|
-
# format
|
1525
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1526
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
1527
|
+
# accessed in the format
|
1512
1528
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1513
1529
|
# For example, to access the access point `reports-ap` through outpost
|
1514
1530
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1550,7 +1566,7 @@ module Aws::S3Control
|
|
1550
1566
|
# specified access point.
|
1551
1567
|
#
|
1552
1568
|
# <note markdown="1"> This element is empty if this access point is an Amazon S3 on
|
1553
|
-
# Outposts access point that is used by other
|
1569
|
+
# Outposts access point that is used by other Amazon Web Services.
|
1554
1570
|
#
|
1555
1571
|
# </note>
|
1556
1572
|
# @return [Types::VpcConfiguration]
|
@@ -1573,6 +1589,18 @@ module Aws::S3Control
|
|
1573
1589
|
# The date and time when the specified access point was created.
|
1574
1590
|
# @return [Time]
|
1575
1591
|
#
|
1592
|
+
# @!attribute [rw] alias
|
1593
|
+
# The name or alias of the access point.
|
1594
|
+
# @return [String]
|
1595
|
+
#
|
1596
|
+
# @!attribute [rw] access_point_arn
|
1597
|
+
# The ARN of the access point.
|
1598
|
+
# @return [String]
|
1599
|
+
#
|
1600
|
+
# @!attribute [rw] endpoints
|
1601
|
+
# The VPC endpoint for the access point.
|
1602
|
+
# @return [Hash<String,String>]
|
1603
|
+
#
|
1576
1604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPointResult AWS API Documentation
|
1577
1605
|
#
|
1578
1606
|
class GetAccessPointResult < Struct.new(
|
@@ -1581,7 +1609,10 @@ module Aws::S3Control
|
|
1581
1609
|
:network_origin,
|
1582
1610
|
:vpc_configuration,
|
1583
1611
|
:public_access_block_configuration,
|
1584
|
-
:creation_date
|
1612
|
+
:creation_date,
|
1613
|
+
:alias,
|
1614
|
+
:access_point_arn,
|
1615
|
+
:endpoints)
|
1585
1616
|
SENSITIVE = []
|
1586
1617
|
include Aws::Structure
|
1587
1618
|
end
|
@@ -1595,7 +1626,7 @@ module Aws::S3Control
|
|
1595
1626
|
# }
|
1596
1627
|
#
|
1597
1628
|
# @!attribute [rw] account_id
|
1598
|
-
# The
|
1629
|
+
# The account ID of the Outposts bucket.
|
1599
1630
|
# @return [String]
|
1600
1631
|
#
|
1601
1632
|
# @!attribute [rw] bucket
|
@@ -1604,8 +1635,9 @@ module Aws::S3Control
|
|
1604
1635
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1605
1636
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1606
1637
|
#
|
1607
|
-
# For using this parameter with S3 on Outposts with the
|
1608
|
-
# CLI, you must specify the ARN of the bucket
|
1638
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1639
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1640
|
+
# accessed in the format
|
1609
1641
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1610
1642
|
# For example, to access the bucket `reports` through outpost
|
1611
1643
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1644,7 +1676,7 @@ module Aws::S3Control
|
|
1644
1676
|
# }
|
1645
1677
|
#
|
1646
1678
|
# @!attribute [rw] account_id
|
1647
|
-
# The
|
1679
|
+
# The account ID of the Outposts bucket.
|
1648
1680
|
# @return [String]
|
1649
1681
|
#
|
1650
1682
|
# @!attribute [rw] bucket
|
@@ -1653,8 +1685,9 @@ module Aws::S3Control
|
|
1653
1685
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1654
1686
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1655
1687
|
#
|
1656
|
-
# For using this parameter with S3 on Outposts with the
|
1657
|
-
# CLI, you must specify the ARN of the bucket
|
1688
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1689
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1690
|
+
# accessed in the format
|
1658
1691
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1659
1692
|
# For example, to access the bucket `reports` through outpost
|
1660
1693
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1693,7 +1726,7 @@ module Aws::S3Control
|
|
1693
1726
|
# }
|
1694
1727
|
#
|
1695
1728
|
# @!attribute [rw] account_id
|
1696
|
-
# The
|
1729
|
+
# The account ID of the Outposts bucket.
|
1697
1730
|
# @return [String]
|
1698
1731
|
#
|
1699
1732
|
# @!attribute [rw] bucket
|
@@ -1702,8 +1735,9 @@ module Aws::S3Control
|
|
1702
1735
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1703
1736
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1704
1737
|
#
|
1705
|
-
# For using this parameter with S3 on Outposts with the
|
1706
|
-
# CLI, you must specify the ARN of the bucket
|
1738
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1739
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1740
|
+
# accessed in the format
|
1707
1741
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1708
1742
|
# For example, to access the bucket `reports` through outpost
|
1709
1743
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1751,7 +1785,7 @@ module Aws::S3Control
|
|
1751
1785
|
# }
|
1752
1786
|
#
|
1753
1787
|
# @!attribute [rw] account_id
|
1754
|
-
# The
|
1788
|
+
# The account ID of the Outposts bucket.
|
1755
1789
|
# @return [String]
|
1756
1790
|
#
|
1757
1791
|
# @!attribute [rw] bucket
|
@@ -1760,8 +1794,9 @@ module Aws::S3Control
|
|
1760
1794
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
1761
1795
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
1762
1796
|
#
|
1763
|
-
# For using this parameter with S3 on Outposts with the
|
1764
|
-
# CLI, you must specify the ARN of the bucket
|
1797
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1798
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
1799
|
+
# accessed in the format
|
1765
1800
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1766
1801
|
# For example, to access the bucket `reports` through outpost
|
1767
1802
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1800,7 +1835,7 @@ module Aws::S3Control
|
|
1800
1835
|
# }
|
1801
1836
|
#
|
1802
1837
|
# @!attribute [rw] account_id
|
1803
|
-
# The
|
1838
|
+
# The account ID associated with the S3 Batch Operations job.
|
1804
1839
|
# @return [String]
|
1805
1840
|
#
|
1806
1841
|
# @!attribute [rw] job_id
|
@@ -1831,7 +1866,7 @@ module Aws::S3Control
|
|
1831
1866
|
|
1832
1867
|
# @!attribute [rw] public_access_block_configuration
|
1833
1868
|
# The `PublicAccessBlock` configuration currently in effect for this
|
1834
|
-
#
|
1869
|
+
# account.
|
1835
1870
|
# @return [Types::PublicAccessBlockConfiguration]
|
1836
1871
|
#
|
1837
1872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetPublicAccessBlockOutput AWS API Documentation
|
@@ -1850,7 +1885,7 @@ module Aws::S3Control
|
|
1850
1885
|
# }
|
1851
1886
|
#
|
1852
1887
|
# @!attribute [rw] account_id
|
1853
|
-
# The account ID for the
|
1888
|
+
# The account ID for the account whose `PublicAccessBlock`
|
1854
1889
|
# configuration you want to retrieve.
|
1855
1890
|
# @return [String]
|
1856
1891
|
#
|
@@ -2078,7 +2113,7 @@ module Aws::S3Control
|
|
2078
2113
|
# @return [Time]
|
2079
2114
|
#
|
2080
2115
|
# @!attribute [rw] role_arn
|
2081
|
-
# The Amazon Resource Name (ARN) for the
|
2116
|
+
# The Amazon Resource Name (ARN) for the Identity and Access
|
2082
2117
|
# Management (IAM) role assigned to run the tasks for this job.
|
2083
2118
|
# @return [String]
|
2084
2119
|
#
|
@@ -2415,7 +2450,7 @@ module Aws::S3Control
|
|
2415
2450
|
# }
|
2416
2451
|
#
|
2417
2452
|
# @!attribute [rw] lambda_invoke
|
2418
|
-
# Directs the specified job to invoke an
|
2453
|
+
# Directs the specified job to invoke an Lambda function on every
|
2419
2454
|
# object in the manifest.
|
2420
2455
|
# @return [Types::LambdaInvokeOperation]
|
2421
2456
|
#
|
@@ -2577,7 +2612,7 @@ module Aws::S3Control
|
|
2577
2612
|
# }
|
2578
2613
|
#
|
2579
2614
|
# @!attribute [rw] function_arn
|
2580
|
-
# The Amazon Resource Name (ARN) for the
|
2615
|
+
# The Amazon Resource Name (ARN) for the Lambda function that the
|
2581
2616
|
# specified job will invoke on every object in the manifest.
|
2582
2617
|
# @return [String]
|
2583
2618
|
#
|
@@ -2972,8 +3007,8 @@ module Aws::S3Control
|
|
2972
3007
|
# }
|
2973
3008
|
#
|
2974
3009
|
# @!attribute [rw] account_id
|
2975
|
-
# The
|
2976
|
-
#
|
3010
|
+
# The account ID for owner of the bucket whose access points you want
|
3011
|
+
# to list.
|
2977
3012
|
# @return [String]
|
2978
3013
|
#
|
2979
3014
|
# @!attribute [rw] bucket
|
@@ -2983,8 +3018,9 @@ module Aws::S3Control
|
|
2983
3018
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
2984
3019
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
2985
3020
|
#
|
2986
|
-
# For using this parameter with S3 on Outposts with the
|
2987
|
-
# CLI, you must specify the ARN of the bucket
|
3021
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3022
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
3023
|
+
# accessed in the format
|
2988
3024
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2989
3025
|
# For example, to access the bucket `reports` through outpost
|
2990
3026
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3051,7 +3087,7 @@ module Aws::S3Control
|
|
3051
3087
|
# }
|
3052
3088
|
#
|
3053
3089
|
# @!attribute [rw] account_id
|
3054
|
-
# The
|
3090
|
+
# The account ID associated with the S3 Batch Operations job.
|
3055
3091
|
# @return [String]
|
3056
3092
|
#
|
3057
3093
|
# @!attribute [rw] job_statuses
|
@@ -3114,7 +3150,7 @@ module Aws::S3Control
|
|
3114
3150
|
# }
|
3115
3151
|
#
|
3116
3152
|
# @!attribute [rw] account_id
|
3117
|
-
# The
|
3153
|
+
# The account ID of the Outposts bucket.
|
3118
3154
|
# @return [String]
|
3119
3155
|
#
|
3120
3156
|
# @!attribute [rw] next_token
|
@@ -3124,7 +3160,7 @@ module Aws::S3Control
|
|
3124
3160
|
# @return [Integer]
|
3125
3161
|
#
|
3126
3162
|
# @!attribute [rw] outpost_id
|
3127
|
-
# The ID of the
|
3163
|
+
# The ID of the Outposts.
|
3128
3164
|
#
|
3129
3165
|
# <note markdown="1"> This is required by Amazon S3 on Outposts buckets.
|
3130
3166
|
#
|
@@ -3329,7 +3365,7 @@ module Aws::S3Control
|
|
3329
3365
|
include Aws::Structure
|
3330
3366
|
end
|
3331
3367
|
|
3332
|
-
# An access point with an attached
|
3368
|
+
# An access point with an attached Lambda function used to access
|
3333
3369
|
# transformed data from an Amazon S3 bucket.
|
3334
3370
|
#
|
3335
3371
|
# @!attribute [rw] name
|
@@ -3404,26 +3440,25 @@ module Aws::S3Control
|
|
3404
3440
|
|
3405
3441
|
# A container for AwsLambdaTransformation.
|
3406
3442
|
#
|
3407
|
-
# @note
|
3408
|
-
# data as a hash:
|
3443
|
+
# @note ObjectLambdaContentTransformation is a union - when making an API calls you must set exactly one of the members.
|
3409
3444
|
#
|
3410
|
-
#
|
3411
|
-
# aws_lambda: {
|
3412
|
-
# function_arn: "FunctionArnString", # required
|
3413
|
-
# function_payload: "AwsLambdaTransformationPayload",
|
3414
|
-
# },
|
3415
|
-
# }
|
3445
|
+
# @note ObjectLambdaContentTransformation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ObjectLambdaContentTransformation corresponding to the set member.
|
3416
3446
|
#
|
3417
3447
|
# @!attribute [rw] aws_lambda
|
3418
|
-
# A container for an
|
3448
|
+
# A container for an Lambda function.
|
3419
3449
|
# @return [Types::AwsLambdaTransformation]
|
3420
3450
|
#
|
3421
3451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ObjectLambdaContentTransformation AWS API Documentation
|
3422
3452
|
#
|
3423
3453
|
class ObjectLambdaContentTransformation < Struct.new(
|
3424
|
-
:aws_lambda
|
3454
|
+
:aws_lambda,
|
3455
|
+
:unknown)
|
3425
3456
|
SENSITIVE = []
|
3426
3457
|
include Aws::Structure
|
3458
|
+
include Aws::Structure::Union
|
3459
|
+
|
3460
|
+
class AwsLambda < ObjectLambdaContentTransformation; end
|
3461
|
+
class Unknown < ObjectLambdaContentTransformation; end
|
3427
3462
|
end
|
3428
3463
|
|
3429
3464
|
# A configuration used when creating an Object Lambda Access Point
|
@@ -3605,8 +3640,8 @@ module Aws::S3Control
|
|
3605
3640
|
# @!attribute [rw] restrict_public_buckets
|
3606
3641
|
# Specifies whether Amazon S3 should restrict public bucket policies
|
3607
3642
|
# for buckets in this account. Setting this element to `TRUE`
|
3608
|
-
# restricts access to buckets with public policies to only
|
3609
|
-
# principals and authorized users within this account.
|
3643
|
+
# restricts access to buckets with public policies to only Amazon Web
|
3644
|
+
# Service principals and authorized users within this account.
|
3610
3645
|
#
|
3611
3646
|
# Enabling this setting doesn't affect previously stored bucket
|
3612
3647
|
# policies, except that public and cross-account access within any
|
@@ -3716,8 +3751,8 @@ module Aws::S3Control
|
|
3716
3751
|
# }
|
3717
3752
|
#
|
3718
3753
|
# @!attribute [rw] account_id
|
3719
|
-
# The
|
3720
|
-
#
|
3754
|
+
# The account ID for owner of the bucket associated with the specified
|
3755
|
+
# access point.
|
3721
3756
|
# @return [String]
|
3722
3757
|
#
|
3723
3758
|
# @!attribute [rw] name
|
@@ -3727,9 +3762,9 @@ module Aws::S3Control
|
|
3727
3762
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
3728
3763
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
3729
3764
|
#
|
3730
|
-
# For using this parameter with S3 on Outposts with the
|
3731
|
-
# CLI, you must specify the ARN of the access point
|
3732
|
-
# format
|
3765
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3766
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
3767
|
+
# accessed in the format
|
3733
3768
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
3734
3769
|
# For example, to access the access point `reports-ap` through outpost
|
3735
3770
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3816,7 +3851,7 @@ module Aws::S3Control
|
|
3816
3851
|
# }
|
3817
3852
|
#
|
3818
3853
|
# @!attribute [rw] account_id
|
3819
|
-
# The
|
3854
|
+
# The account ID of the Outposts bucket.
|
3820
3855
|
# @return [String]
|
3821
3856
|
#
|
3822
3857
|
# @!attribute [rw] bucket
|
@@ -3848,7 +3883,7 @@ module Aws::S3Control
|
|
3848
3883
|
# }
|
3849
3884
|
#
|
3850
3885
|
# @!attribute [rw] account_id
|
3851
|
-
# The
|
3886
|
+
# The account ID of the Outposts bucket.
|
3852
3887
|
# @return [String]
|
3853
3888
|
#
|
3854
3889
|
# @!attribute [rw] bucket
|
@@ -3857,8 +3892,9 @@ module Aws::S3Control
|
|
3857
3892
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
3858
3893
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
3859
3894
|
#
|
3860
|
-
# For using this parameter with S3 on Outposts with the
|
3861
|
-
# CLI, you must specify the ARN of the bucket
|
3895
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3896
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
3897
|
+
# accessed in the format
|
3862
3898
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3863
3899
|
# For example, to access the bucket `reports` through outpost
|
3864
3900
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3908,7 +3944,7 @@ module Aws::S3Control
|
|
3908
3944
|
# }
|
3909
3945
|
#
|
3910
3946
|
# @!attribute [rw] account_id
|
3911
|
-
# The
|
3947
|
+
# The account ID of the Outposts bucket.
|
3912
3948
|
# @return [String]
|
3913
3949
|
#
|
3914
3950
|
# @!attribute [rw] bucket
|
@@ -3917,8 +3953,9 @@ module Aws::S3Control
|
|
3917
3953
|
# For using this parameter with Amazon S3 on Outposts with the REST
|
3918
3954
|
# API, you must specify the name and the x-amz-outpost-id as well.
|
3919
3955
|
#
|
3920
|
-
# For using this parameter with S3 on Outposts with the
|
3921
|
-
# CLI, you must specify the ARN of the bucket
|
3956
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3957
|
+
# Services SDK and CLI, you must specify the ARN of the bucket
|
3958
|
+
# accessed in the format
|
3922
3959
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3923
3960
|
# For example, to access the bucket `reports` through outpost
|
3924
3961
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3955,7 +3992,7 @@ module Aws::S3Control
|
|
3955
3992
|
# }
|
3956
3993
|
#
|
3957
3994
|
# @!attribute [rw] account_id
|
3958
|
-
# The
|
3995
|
+
# The account ID associated with the S3 Batch Operations job.
|
3959
3996
|
# @return [String]
|
3960
3997
|
#
|
3961
3998
|
# @!attribute [rw] job_id
|
@@ -3996,11 +4033,11 @@ module Aws::S3Control
|
|
3996
4033
|
#
|
3997
4034
|
# @!attribute [rw] public_access_block_configuration
|
3998
4035
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
3999
|
-
# specified
|
4036
|
+
# specified account.
|
4000
4037
|
# @return [Types::PublicAccessBlockConfiguration]
|
4001
4038
|
#
|
4002
4039
|
# @!attribute [rw] account_id
|
4003
|
-
# The account ID for the
|
4040
|
+
# The account ID for the account whose `PublicAccessBlock`
|
4004
4041
|
# configuration you want to set.
|
4005
4042
|
# @return [String]
|
4006
4043
|
#
|
@@ -4171,7 +4208,7 @@ module Aws::S3Control
|
|
4171
4208
|
# @return [Time]
|
4172
4209
|
#
|
4173
4210
|
# @!attribute [rw] outpost_id
|
4174
|
-
# The
|
4211
|
+
# The Outposts ID of the regional bucket.
|
4175
4212
|
# @return [String]
|
4176
4213
|
#
|
4177
4214
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/RegionalBucket AWS API Documentation
|
@@ -4449,9 +4486,9 @@ module Aws::S3Control
|
|
4449
4486
|
#
|
4450
4487
|
# @!attribute [rw] bucket_key_enabled
|
4451
4488
|
# Specifies whether Amazon S3 should use an S3 Bucket Key for object
|
4452
|
-
# encryption with server-side encryption using
|
4453
|
-
# Setting this header to `true` causes Amazon S3 to use an
|
4454
|
-
# Key for object encryption with SSE-KMS.
|
4489
|
+
# encryption with server-side encryption using Amazon Web Services KMS
|
4490
|
+
# (SSE-KMS). Setting this header to `true` causes Amazon S3 to use an
|
4491
|
+
# S3 Bucket Key for object encryption with SSE-KMS.
|
4455
4492
|
#
|
4456
4493
|
# Specifying this header with an *object* action doesn’t affect
|
4457
4494
|
# *bucket-level* settings for S3 Bucket Key.
|
@@ -4995,7 +5032,7 @@ module Aws::S3Control
|
|
4995
5032
|
include Aws::Structure
|
4996
5033
|
end
|
4997
5034
|
|
4998
|
-
# The
|
5035
|
+
# The Amazon Web Services organization for your S3 Storage Lens.
|
4999
5036
|
#
|
5000
5037
|
# @note When making an API call, you may pass StorageLensAwsOrg
|
5001
5038
|
# data as a hash:
|
@@ -5005,9 +5042,9 @@ module Aws::S3Control
|
|
5005
5042
|
# }
|
5006
5043
|
#
|
5007
5044
|
# @!attribute [rw] arn
|
5008
|
-
# A container for the Amazon Resource Name (ARN) of the
|
5009
|
-
# organization. This property is read-only and follows the
|
5010
|
-
# format: `
|
5045
|
+
# A container for the Amazon Resource Name (ARN) of the Amazon Web
|
5046
|
+
# Services organization. This property is read-only and follows the
|
5047
|
+
# following format: `
|
5011
5048
|
# arn:aws:organizations:us-east-1:example-account-id:organization/o-ex2l495dck
|
5012
5049
|
# `
|
5013
5050
|
# @return [String]
|
@@ -5110,8 +5147,8 @@ module Aws::S3Control
|
|
5110
5147
|
# @return [Boolean]
|
5111
5148
|
#
|
5112
5149
|
# @!attribute [rw] aws_org
|
5113
|
-
# A container for the
|
5114
|
-
# configuration.
|
5150
|
+
# A container for the Amazon Web Services organization for this S3
|
5151
|
+
# Storage Lens configuration.
|
5115
5152
|
# @return [Types::StorageLensAwsOrg]
|
5116
5153
|
#
|
5117
5154
|
# @!attribute [rw] storage_lens_arn
|
@@ -5331,7 +5368,7 @@ module Aws::S3Control
|
|
5331
5368
|
# }
|
5332
5369
|
#
|
5333
5370
|
# @!attribute [rw] account_id
|
5334
|
-
# The
|
5371
|
+
# The account ID associated with the S3 Batch Operations job.
|
5335
5372
|
# @return [String]
|
5336
5373
|
#
|
5337
5374
|
# @!attribute [rw] job_id
|
@@ -5380,7 +5417,7 @@ module Aws::S3Control
|
|
5380
5417
|
# }
|
5381
5418
|
#
|
5382
5419
|
# @!attribute [rw] account_id
|
5383
|
-
# The
|
5420
|
+
# The account ID associated with the S3 Batch Operations job.
|
5384
5421
|
# @return [String]
|
5385
5422
|
#
|
5386
5423
|
# @!attribute [rw] job_id
|