aws-sdk-s3 1.174.0 → 1.176.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +1165 -765
- data/lib/aws-sdk-s3/client_api.rb +94 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +36 -0
- data/lib/aws-sdk-s3/endpoints.rb +42 -0
- data/lib/aws-sdk-s3/object.rb +3 -1
- data/lib/aws-sdk-s3/resource.rb +9 -8
- data/lib/aws-sdk-s3/types.rb +532 -116
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +2 -2
- data/sig/client.rbs +36 -3
- data/sig/resource.rbs +2 -2
- data/sig/types.rbs +66 -3
- metadata +2 -2
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -55,10 +55,10 @@ module Aws::S3
|
|
55
55
|
#
|
56
56
|
# **Directory buckets** - When you use this operation with a directory
|
57
57
|
# bucket, you must use virtual-hosted-style requests in the format `
|
58
|
-
#
|
58
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
59
59
|
# requests are not supported. Directory bucket names must be unique in
|
60
|
-
# the chosen Availability Zone. Bucket names must
|
61
|
-
#
|
60
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
61
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
62
62
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
63
63
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
64
64
|
# *Amazon S3 User Guide*.
|
@@ -406,8 +406,8 @@ module Aws::S3
|
|
406
406
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
407
407
|
#
|
408
408
|
# @!attribute [rw] data_redundancy
|
409
|
-
# The number of Availability Zone that's used
|
410
|
-
# bucket.
|
409
|
+
# The number of Zone (Availability Zone or Local Zone) that's used
|
410
|
+
# for redundancy for the bucket.
|
411
411
|
# @return [String]
|
412
412
|
#
|
413
413
|
# @!attribute [rw] type
|
@@ -943,10 +943,10 @@ module Aws::S3
|
|
943
943
|
#
|
944
944
|
# **Directory buckets** - When you use this operation with a directory
|
945
945
|
# bucket, you must use virtual-hosted-style requests in the format `
|
946
|
-
#
|
946
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
947
947
|
# requests are not supported. Directory bucket names must be unique in
|
948
|
-
# the chosen Availability Zone. Bucket names must
|
949
|
-
#
|
948
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
949
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
950
950
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
951
951
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
952
952
|
# *Amazon S3 User Guide*.
|
@@ -1353,7 +1353,9 @@ module Aws::S3
|
|
1353
1353
|
# If the object expiration is configured, the response includes this
|
1354
1354
|
# header.
|
1355
1355
|
#
|
1356
|
-
# <note markdown="1">
|
1356
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
1357
|
+
# and this header returns the value "`NotImplemented`" in all
|
1358
|
+
# responses for directory buckets.
|
1357
1359
|
#
|
1358
1360
|
# </note>
|
1359
1361
|
# @return [String]
|
@@ -1485,14 +1487,22 @@ module Aws::S3
|
|
1485
1487
|
#
|
1486
1488
|
# **Directory buckets** - When you use this operation with a directory
|
1487
1489
|
# bucket, you must use virtual-hosted-style requests in the format `
|
1488
|
-
#
|
1490
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
1489
1491
|
# requests are not supported. Directory bucket names must be unique in
|
1490
|
-
# the chosen Availability Zone. Bucket names must
|
1491
|
-
#
|
1492
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
1493
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
1492
1494
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
1493
1495
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
1494
1496
|
# *Amazon S3 User Guide*.
|
1495
1497
|
#
|
1498
|
+
# <note markdown="1"> Copying objects across different Amazon Web Services Regions isn't
|
1499
|
+
# supported when the source or destination bucket is in Amazon Web
|
1500
|
+
# Services Local Zones. The source and destination buckets must have
|
1501
|
+
# the same parent Amazon Web Services Region. Otherwise, you get an
|
1502
|
+
# HTTP `400 Bad Request` error with the error code `InvalidRequest`.
|
1503
|
+
#
|
1504
|
+
# </note>
|
1505
|
+
#
|
1496
1506
|
# **Access points** - When you use this action with an access point,
|
1497
1507
|
# you must provide the alias of the access point in place of the
|
1498
1508
|
# bucket name or specify the access point ARN. When using the access
|
@@ -2486,11 +2496,20 @@ module Aws::S3
|
|
2486
2496
|
# @!attribute [rw] location
|
2487
2497
|
# Specifies the location where the bucket will be created.
|
2488
2498
|
#
|
2489
|
-
#
|
2499
|
+
# <b>Directory buckets </b> - The location type is Availability Zone
|
2500
|
+
# or Local Zone. When the location type is Local Zone, your Local Zone
|
2501
|
+
# must be in opt-in status. Otherwise, you get an HTTP `400 Bad
|
2502
|
+
# Request` error with the error code `Access denied`. To learn more
|
2503
|
+
# about opt-in Local Zones, see [Opt-in Dedicated Local Zones][1]in
|
2504
|
+
# the *Amazon S3 User Guide*.
|
2490
2505
|
#
|
2491
2506
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
2492
2507
|
#
|
2493
2508
|
# </note>
|
2509
|
+
#
|
2510
|
+
#
|
2511
|
+
#
|
2512
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/opt-in-directory-bucket-lz.html
|
2494
2513
|
# @return [Types::LocationInfo]
|
2495
2514
|
#
|
2496
2515
|
# @!attribute [rw] bucket
|
@@ -2511,6 +2530,41 @@ module Aws::S3
|
|
2511
2530
|
include Aws::Structure
|
2512
2531
|
end
|
2513
2532
|
|
2533
|
+
# @!attribute [rw] bucket
|
2534
|
+
# The general purpose bucket that you want to create the metadata
|
2535
|
+
# table configuration in.
|
2536
|
+
# @return [String]
|
2537
|
+
#
|
2538
|
+
# @!attribute [rw] content_md5
|
2539
|
+
# The `Content-MD5` header for the metadata table configuration.
|
2540
|
+
# @return [String]
|
2541
|
+
#
|
2542
|
+
# @!attribute [rw] checksum_algorithm
|
2543
|
+
# The checksum algorithm to use with your metadata table
|
2544
|
+
# configuration.
|
2545
|
+
# @return [String]
|
2546
|
+
#
|
2547
|
+
# @!attribute [rw] metadata_table_configuration
|
2548
|
+
# The contents of your metadata table configuration.
|
2549
|
+
# @return [Types::MetadataTableConfiguration]
|
2550
|
+
#
|
2551
|
+
# @!attribute [rw] expected_bucket_owner
|
2552
|
+
# The expected owner of the general purpose bucket that contains your
|
2553
|
+
# metadata table configuration.
|
2554
|
+
# @return [String]
|
2555
|
+
#
|
2556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateBucketMetadataTableConfigurationRequest AWS API Documentation
|
2557
|
+
#
|
2558
|
+
class CreateBucketMetadataTableConfigurationRequest < Struct.new(
|
2559
|
+
:bucket,
|
2560
|
+
:content_md5,
|
2561
|
+
:checksum_algorithm,
|
2562
|
+
:metadata_table_configuration,
|
2563
|
+
:expected_bucket_owner)
|
2564
|
+
SENSITIVE = []
|
2565
|
+
include Aws::Structure
|
2566
|
+
end
|
2567
|
+
|
2514
2568
|
# @!attribute [rw] location
|
2515
2569
|
# A forward slash followed by the name of the bucket.
|
2516
2570
|
# @return [String]
|
@@ -2540,13 +2594,14 @@ module Aws::S3
|
|
2540
2594
|
#
|
2541
2595
|
# <b>Directory buckets </b> - When you use this operation with a
|
2542
2596
|
# directory bucket, you must use path-style requests in the format
|
2543
|
-
# `https://s3express-control.
|
2597
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
2544
2598
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
2545
|
-
# names must be unique in the chosen Availability Zone
|
2546
|
-
# must also follow the format `
|
2547
|
-
#
|
2548
|
-
#
|
2549
|
-
# rules][2] in the
|
2599
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
2600
|
+
# Zone). Bucket names must also follow the format `
|
2601
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
2602
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
2603
|
+
# naming restrictions, see [Directory bucket naming rules][2] in the
|
2604
|
+
# *Amazon S3 User Guide*
|
2550
2605
|
#
|
2551
2606
|
#
|
2552
2607
|
#
|
@@ -2824,10 +2879,10 @@ module Aws::S3
|
|
2824
2879
|
#
|
2825
2880
|
# **Directory buckets** - When you use this operation with a directory
|
2826
2881
|
# bucket, you must use virtual-hosted-style requests in the format `
|
2827
|
-
#
|
2882
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
2828
2883
|
# requests are not supported. Directory bucket names must be unique in
|
2829
|
-
# the chosen Availability Zone. Bucket names must
|
2830
|
-
#
|
2884
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
2885
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
2831
2886
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
2832
2887
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
2833
2888
|
# *Amazon S3 User Guide*.
|
@@ -3731,13 +3786,14 @@ module Aws::S3
|
|
3731
3786
|
#
|
3732
3787
|
# <b>Directory buckets </b> - When you use this operation with a
|
3733
3788
|
# directory bucket, you must use path-style requests in the format
|
3734
|
-
# `https://s3express-control.
|
3789
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3735
3790
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3736
|
-
# names must be unique in the chosen Availability Zone
|
3737
|
-
# must also follow the format `
|
3738
|
-
#
|
3739
|
-
#
|
3740
|
-
# rules][1] in the
|
3791
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
3792
|
+
# Zone). Bucket names must also follow the format `
|
3793
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
3794
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
3795
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
3796
|
+
# *Amazon S3 User Guide*
|
3741
3797
|
#
|
3742
3798
|
#
|
3743
3799
|
#
|
@@ -3835,6 +3891,25 @@ module Aws::S3
|
|
3835
3891
|
include Aws::Structure
|
3836
3892
|
end
|
3837
3893
|
|
3894
|
+
# @!attribute [rw] bucket
|
3895
|
+
# The general purpose bucket that you want to remove the metadata
|
3896
|
+
# table configuration from.
|
3897
|
+
# @return [String]
|
3898
|
+
#
|
3899
|
+
# @!attribute [rw] expected_bucket_owner
|
3900
|
+
# The expected bucket owner of the general purpose bucket that you
|
3901
|
+
# want to remove the metadata table configuration from.
|
3902
|
+
# @return [String]
|
3903
|
+
#
|
3904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/DeleteBucketMetadataTableConfigurationRequest AWS API Documentation
|
3905
|
+
#
|
3906
|
+
class DeleteBucketMetadataTableConfigurationRequest < Struct.new(
|
3907
|
+
:bucket,
|
3908
|
+
:expected_bucket_owner)
|
3909
|
+
SENSITIVE = []
|
3910
|
+
include Aws::Structure
|
3911
|
+
end
|
3912
|
+
|
3838
3913
|
# @!attribute [rw] bucket
|
3839
3914
|
# The name of the bucket containing the metrics configuration to
|
3840
3915
|
# delete.
|
@@ -3888,13 +3963,14 @@ module Aws::S3
|
|
3888
3963
|
#
|
3889
3964
|
# <b>Directory buckets </b> - When you use this operation with a
|
3890
3965
|
# directory bucket, you must use path-style requests in the format
|
3891
|
-
# `https://s3express-control.
|
3966
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3892
3967
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3893
|
-
# names must be unique in the chosen Availability Zone
|
3894
|
-
# must also follow the format `
|
3895
|
-
#
|
3896
|
-
#
|
3897
|
-
# rules][1] in the
|
3968
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
3969
|
+
# Zone). Bucket names must also follow the format `
|
3970
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
3971
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
3972
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
3973
|
+
# *Amazon S3 User Guide*
|
3898
3974
|
#
|
3899
3975
|
#
|
3900
3976
|
#
|
@@ -3948,13 +4024,14 @@ module Aws::S3
|
|
3948
4024
|
#
|
3949
4025
|
# <b>Directory buckets </b> - When you use this operation with a
|
3950
4026
|
# directory bucket, you must use path-style requests in the format
|
3951
|
-
# `https://s3express-control.
|
4027
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3952
4028
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3953
|
-
# names must be unique in the chosen Availability Zone
|
3954
|
-
# must also follow the format `
|
3955
|
-
#
|
3956
|
-
#
|
3957
|
-
# rules][1] in the
|
4029
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
4030
|
+
# Zone). Bucket names must also follow the format `
|
4031
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
4032
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4033
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4034
|
+
# *Amazon S3 User Guide*
|
3958
4035
|
#
|
3959
4036
|
#
|
3960
4037
|
#
|
@@ -4142,10 +4219,10 @@ module Aws::S3
|
|
4142
4219
|
#
|
4143
4220
|
# **Directory buckets** - When you use this operation with a directory
|
4144
4221
|
# bucket, you must use virtual-hosted-style requests in the format `
|
4145
|
-
#
|
4222
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
4146
4223
|
# requests are not supported. Directory bucket names must be unique in
|
4147
|
-
# the chosen Availability Zone. Bucket names must
|
4148
|
-
#
|
4224
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4225
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4149
4226
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4150
4227
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4151
4228
|
# *Amazon S3 User Guide*.
|
@@ -4407,10 +4484,10 @@ module Aws::S3
|
|
4407
4484
|
#
|
4408
4485
|
# **Directory buckets** - When you use this operation with a directory
|
4409
4486
|
# bucket, you must use virtual-hosted-style requests in the format `
|
4410
|
-
#
|
4487
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
4411
4488
|
# requests are not supported. Directory bucket names must be unique in
|
4412
|
-
# the chosen Availability Zone. Bucket names must
|
4413
|
-
#
|
4489
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4490
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4414
4491
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4415
4492
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4416
4493
|
# *Amazon S3 User Guide*.
|
@@ -5548,6 +5625,103 @@ module Aws::S3
|
|
5548
5625
|
include Aws::Structure
|
5549
5626
|
end
|
5550
5627
|
|
5628
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds, but
|
5629
|
+
# S3 Metadata was unable to create the table, this structure contains
|
5630
|
+
# the error code and error message.
|
5631
|
+
#
|
5632
|
+
# @!attribute [rw] error_code
|
5633
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
5634
|
+
# but S3 Metadata was unable to create the table, this structure
|
5635
|
+
# contains the error code. The possible error codes and error messages
|
5636
|
+
# are as follows:
|
5637
|
+
#
|
5638
|
+
# * `AccessDeniedCreatingResources` - You don't have sufficient
|
5639
|
+
# permissions to create the required resources. Make sure that you
|
5640
|
+
# have `s3tables:CreateNamespace`, `s3tables:CreateTable`,
|
5641
|
+
# `s3tables:GetTable` and `s3tables:PutTablePolicy` permissions, and
|
5642
|
+
# then try again. To create a new metadata table, you must delete
|
5643
|
+
# the metadata configuration for this bucket, and then create a new
|
5644
|
+
# metadata configuration.
|
5645
|
+
#
|
5646
|
+
# * `AccessDeniedWritingToTable` - Unable to write to the metadata
|
5647
|
+
# table because of missing resource permissions. To fix the resource
|
5648
|
+
# policy, Amazon S3 needs to create a new metadata table. To create
|
5649
|
+
# a new metadata table, you must delete the metadata configuration
|
5650
|
+
# for this bucket, and then create a new metadata configuration.
|
5651
|
+
#
|
5652
|
+
# * `DestinationTableNotFound` - The destination table doesn't exist.
|
5653
|
+
# To create a new metadata table, you must delete the metadata
|
5654
|
+
# configuration for this bucket, and then create a new metadata
|
5655
|
+
# configuration.
|
5656
|
+
#
|
5657
|
+
# * `ServerInternalError` - An internal error has occurred. To create
|
5658
|
+
# a new metadata table, you must delete the metadata configuration
|
5659
|
+
# for this bucket, and then create a new metadata configuration.
|
5660
|
+
#
|
5661
|
+
# * `TableAlreadyExists` - The table that you specified already exists
|
5662
|
+
# in the table bucket's namespace. Specify a different table name.
|
5663
|
+
# To create a new metadata table, you must delete the metadata
|
5664
|
+
# configuration for this bucket, and then create a new metadata
|
5665
|
+
# configuration.
|
5666
|
+
#
|
5667
|
+
# * `TableBucketNotFound` - The table bucket that you specified
|
5668
|
+
# doesn't exist in this Amazon Web Services Region and account.
|
5669
|
+
# Create or choose a different table bucket. To create a new
|
5670
|
+
# metadata table, you must delete the metadata configuration for
|
5671
|
+
# this bucket, and then create a new metadata configuration.
|
5672
|
+
# @return [String]
|
5673
|
+
#
|
5674
|
+
# @!attribute [rw] error_message
|
5675
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
5676
|
+
# but S3 Metadata was unable to create the table, this structure
|
5677
|
+
# contains the error message. The possible error codes and error
|
5678
|
+
# messages are as follows:
|
5679
|
+
#
|
5680
|
+
# * `AccessDeniedCreatingResources` - You don't have sufficient
|
5681
|
+
# permissions to create the required resources. Make sure that you
|
5682
|
+
# have `s3tables:CreateNamespace`, `s3tables:CreateTable`,
|
5683
|
+
# `s3tables:GetTable` and `s3tables:PutTablePolicy` permissions, and
|
5684
|
+
# then try again. To create a new metadata table, you must delete
|
5685
|
+
# the metadata configuration for this bucket, and then create a new
|
5686
|
+
# metadata configuration.
|
5687
|
+
#
|
5688
|
+
# * `AccessDeniedWritingToTable` - Unable to write to the metadata
|
5689
|
+
# table because of missing resource permissions. To fix the resource
|
5690
|
+
# policy, Amazon S3 needs to create a new metadata table. To create
|
5691
|
+
# a new metadata table, you must delete the metadata configuration
|
5692
|
+
# for this bucket, and then create a new metadata configuration.
|
5693
|
+
#
|
5694
|
+
# * `DestinationTableNotFound` - The destination table doesn't exist.
|
5695
|
+
# To create a new metadata table, you must delete the metadata
|
5696
|
+
# configuration for this bucket, and then create a new metadata
|
5697
|
+
# configuration.
|
5698
|
+
#
|
5699
|
+
# * `ServerInternalError` - An internal error has occurred. To create
|
5700
|
+
# a new metadata table, you must delete the metadata configuration
|
5701
|
+
# for this bucket, and then create a new metadata configuration.
|
5702
|
+
#
|
5703
|
+
# * `TableAlreadyExists` - The table that you specified already exists
|
5704
|
+
# in the table bucket's namespace. Specify a different table name.
|
5705
|
+
# To create a new metadata table, you must delete the metadata
|
5706
|
+
# configuration for this bucket, and then create a new metadata
|
5707
|
+
# configuration.
|
5708
|
+
#
|
5709
|
+
# * `TableBucketNotFound` - The table bucket that you specified
|
5710
|
+
# doesn't exist in this Amazon Web Services Region and account.
|
5711
|
+
# Create or choose a different table bucket. To create a new
|
5712
|
+
# metadata table, you must delete the metadata configuration for
|
5713
|
+
# this bucket, and then create a new metadata configuration.
|
5714
|
+
# @return [String]
|
5715
|
+
#
|
5716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ErrorDetails AWS API Documentation
|
5717
|
+
#
|
5718
|
+
class ErrorDetails < Struct.new(
|
5719
|
+
:error_code,
|
5720
|
+
:error_message)
|
5721
|
+
SENSITIVE = []
|
5722
|
+
include Aws::Structure
|
5723
|
+
end
|
5724
|
+
|
5551
5725
|
# The error information.
|
5552
5726
|
#
|
5553
5727
|
# @!attribute [rw] key
|
@@ -5855,13 +6029,14 @@ module Aws::S3
|
|
5855
6029
|
#
|
5856
6030
|
# <b>Directory buckets </b> - When you use this operation with a
|
5857
6031
|
# directory bucket, you must use path-style requests in the format
|
5858
|
-
# `https://s3express-control.
|
6032
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
5859
6033
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
5860
|
-
# names must be unique in the chosen Availability Zone
|
5861
|
-
# must also follow the format `
|
5862
|
-
#
|
5863
|
-
#
|
5864
|
-
# rules][1] in the
|
6034
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
6035
|
+
# Zone). Bucket names must also follow the format `
|
6036
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
6037
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6038
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6039
|
+
# *Amazon S3 User Guide*
|
5865
6040
|
#
|
5866
6041
|
#
|
5867
6042
|
#
|
@@ -6142,6 +6317,73 @@ module Aws::S3
|
|
6142
6317
|
include Aws::Structure
|
6143
6318
|
end
|
6144
6319
|
|
6320
|
+
# @!attribute [rw] get_bucket_metadata_table_configuration_result
|
6321
|
+
# The metadata table configuration for the general purpose bucket.
|
6322
|
+
# @return [Types::GetBucketMetadataTableConfigurationResult]
|
6323
|
+
#
|
6324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataTableConfigurationOutput AWS API Documentation
|
6325
|
+
#
|
6326
|
+
class GetBucketMetadataTableConfigurationOutput < Struct.new(
|
6327
|
+
:get_bucket_metadata_table_configuration_result)
|
6328
|
+
SENSITIVE = []
|
6329
|
+
include Aws::Structure
|
6330
|
+
end
|
6331
|
+
|
6332
|
+
# @!attribute [rw] bucket
|
6333
|
+
# The general purpose bucket that contains the metadata table
|
6334
|
+
# configuration that you want to retrieve.
|
6335
|
+
# @return [String]
|
6336
|
+
#
|
6337
|
+
# @!attribute [rw] expected_bucket_owner
|
6338
|
+
# The expected owner of the general purpose bucket that you want to
|
6339
|
+
# retrieve the metadata table configuration from.
|
6340
|
+
# @return [String]
|
6341
|
+
#
|
6342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataTableConfigurationRequest AWS API Documentation
|
6343
|
+
#
|
6344
|
+
class GetBucketMetadataTableConfigurationRequest < Struct.new(
|
6345
|
+
:bucket,
|
6346
|
+
:expected_bucket_owner)
|
6347
|
+
SENSITIVE = []
|
6348
|
+
include Aws::Structure
|
6349
|
+
end
|
6350
|
+
|
6351
|
+
# The metadata table configuration for a general purpose bucket.
|
6352
|
+
#
|
6353
|
+
# @!attribute [rw] metadata_table_configuration_result
|
6354
|
+
# The metadata table configuration for a general purpose bucket.
|
6355
|
+
# @return [Types::MetadataTableConfigurationResult]
|
6356
|
+
#
|
6357
|
+
# @!attribute [rw] status
|
6358
|
+
# The status of the metadata table. The status values are:
|
6359
|
+
#
|
6360
|
+
# * `CREATING` - The metadata table is in the process of being created
|
6361
|
+
# in the specified table bucket.
|
6362
|
+
#
|
6363
|
+
# * `ACTIVE` - The metadata table has been created successfully and
|
6364
|
+
# records are being delivered to the table.
|
6365
|
+
#
|
6366
|
+
# * `FAILED` - Amazon S3 is unable to create the metadata table, or
|
6367
|
+
# Amazon S3 is unable to deliver records. See `ErrorDetails` for
|
6368
|
+
# details.
|
6369
|
+
# @return [String]
|
6370
|
+
#
|
6371
|
+
# @!attribute [rw] error
|
6372
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
6373
|
+
# but S3 Metadata was unable to create the table, this structure
|
6374
|
+
# contains the error code and error message.
|
6375
|
+
# @return [Types::ErrorDetails]
|
6376
|
+
#
|
6377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataTableConfigurationResult AWS API Documentation
|
6378
|
+
#
|
6379
|
+
class GetBucketMetadataTableConfigurationResult < Struct.new(
|
6380
|
+
:metadata_table_configuration_result,
|
6381
|
+
:status,
|
6382
|
+
:error)
|
6383
|
+
SENSITIVE = []
|
6384
|
+
include Aws::Structure
|
6385
|
+
end
|
6386
|
+
|
6145
6387
|
# @!attribute [rw] metrics_configuration
|
6146
6388
|
# Specifies the metrics configuration.
|
6147
6389
|
# @return [Types::MetricsConfiguration]
|
@@ -6268,13 +6510,14 @@ module Aws::S3
|
|
6268
6510
|
#
|
6269
6511
|
# <b>Directory buckets </b> - When you use this operation with a
|
6270
6512
|
# directory bucket, you must use path-style requests in the format
|
6271
|
-
# `https://s3express-control.
|
6513
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
6272
6514
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
6273
|
-
# names must be unique in the chosen Availability Zone
|
6274
|
-
# must also follow the format `
|
6275
|
-
#
|
6276
|
-
#
|
6277
|
-
# rules][1] in the
|
6515
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
6516
|
+
# Zone). Bucket names must also follow the format `
|
6517
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
6518
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6519
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6520
|
+
# *Amazon S3 User Guide*
|
6278
6521
|
#
|
6279
6522
|
# **Access points** - When you use this API operation with an access
|
6280
6523
|
# point, provide the alias of the access point in place of the bucket
|
@@ -6781,10 +7024,10 @@ module Aws::S3
|
|
6781
7024
|
#
|
6782
7025
|
# **Directory buckets** - When you use this operation with a directory
|
6783
7026
|
# bucket, you must use virtual-hosted-style requests in the format `
|
6784
|
-
#
|
7027
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
6785
7028
|
# requests are not supported. Directory bucket names must be unique in
|
6786
|
-
# the chosen Availability Zone. Bucket names must
|
6787
|
-
#
|
7029
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
7030
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
6788
7031
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6789
7032
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6790
7033
|
# *Amazon S3 User Guide*.
|
@@ -7081,7 +7324,9 @@ module Aws::S3
|
|
7081
7324
|
# providing object expiration information. The value of the `rule-id`
|
7082
7325
|
# is URL-encoded.
|
7083
7326
|
#
|
7084
|
-
# <note markdown="1">
|
7327
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
7328
|
+
# and this header returns the value "`NotImplemented`" in all
|
7329
|
+
# responses for directory buckets.
|
7085
7330
|
#
|
7086
7331
|
# </note>
|
7087
7332
|
#
|
@@ -7393,10 +7638,10 @@ module Aws::S3
|
|
7393
7638
|
#
|
7394
7639
|
# **Directory buckets** - When you use this operation with a directory
|
7395
7640
|
# bucket, you must use virtual-hosted-style requests in the format `
|
7396
|
-
#
|
7641
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
7397
7642
|
# requests are not supported. Directory bucket names must be unique in
|
7398
|
-
# the chosen Availability Zone. Bucket names must
|
7399
|
-
#
|
7643
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
7644
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
7400
7645
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
7401
7646
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
7402
7647
|
# *Amazon S3 User Guide*.
|
@@ -8124,8 +8369,9 @@ module Aws::S3
|
|
8124
8369
|
# @!attribute [rw] bucket_location_name
|
8125
8370
|
# The name of the location where the bucket will be created.
|
8126
8371
|
#
|
8127
|
-
# For directory buckets, the
|
8128
|
-
# bucket is created. An example
|
8372
|
+
# For directory buckets, the Zone ID of the Availability Zone or the
|
8373
|
+
# Local Zone where the bucket is created. An example Zone ID value for
|
8374
|
+
# an Availability Zone is `usw2-az1`.
|
8129
8375
|
#
|
8130
8376
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
8131
8377
|
#
|
@@ -8161,10 +8407,10 @@ module Aws::S3
|
|
8161
8407
|
#
|
8162
8408
|
# **Directory buckets** - When you use this operation with a directory
|
8163
8409
|
# bucket, you must use virtual-hosted-style requests in the format `
|
8164
|
-
#
|
8410
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
8165
8411
|
# requests are not supported. Directory bucket names must be unique in
|
8166
|
-
# the chosen Availability Zone. Bucket names must
|
8167
|
-
#
|
8412
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
8413
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
8168
8414
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
8169
8415
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
8170
8416
|
# *Amazon S3 User Guide*.
|
@@ -8246,7 +8492,9 @@ module Aws::S3
|
|
8246
8492
|
# providing object expiration information. The value of the `rule-id`
|
8247
8493
|
# is URL-encoded.
|
8248
8494
|
#
|
8249
|
-
# <note markdown="1">
|
8495
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
8496
|
+
# and this header returns the value "`NotImplemented`" in all
|
8497
|
+
# responses for directory buckets.
|
8250
8498
|
#
|
8251
8499
|
# </note>
|
8252
8500
|
#
|
@@ -8635,10 +8883,10 @@ module Aws::S3
|
|
8635
8883
|
#
|
8636
8884
|
# **Directory buckets** - When you use this operation with a directory
|
8637
8885
|
# bucket, you must use virtual-hosted-style requests in the format `
|
8638
|
-
#
|
8886
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
8639
8887
|
# requests are not supported. Directory bucket names must be unique in
|
8640
|
-
# the chosen Availability Zone. Bucket names must
|
8641
|
-
#
|
8888
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
8889
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
8642
8890
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
8643
8891
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
8644
8892
|
# *Amazon S3 User Guide*.
|
@@ -10169,10 +10417,10 @@ module Aws::S3
|
|
10169
10417
|
#
|
10170
10418
|
# **Directory buckets** - When you use this operation with a directory
|
10171
10419
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10172
|
-
#
|
10420
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10173
10421
|
# requests are not supported. Directory bucket names must be unique in
|
10174
|
-
# the chosen Availability Zone. Bucket names must
|
10175
|
-
#
|
10422
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
10423
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10176
10424
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10177
10425
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10178
10426
|
# *Amazon S3 User Guide*.
|
@@ -10691,10 +10939,10 @@ module Aws::S3
|
|
10691
10939
|
#
|
10692
10940
|
# **Directory buckets** - When you use this operation with a directory
|
10693
10941
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10694
|
-
#
|
10942
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10695
10943
|
# requests are not supported. Directory bucket names must be unique in
|
10696
|
-
# the chosen Availability Zone. Bucket names must
|
10697
|
-
#
|
10944
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
10945
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10698
10946
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10699
10947
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10700
10948
|
# *Amazon S3 User Guide*.
|
@@ -10962,10 +11210,10 @@ module Aws::S3
|
|
10962
11210
|
# @!attribute [rw] bucket
|
10963
11211
|
# **Directory buckets** - When you use this operation with a directory
|
10964
11212
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10965
|
-
#
|
11213
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10966
11214
|
# requests are not supported. Directory bucket names must be unique in
|
10967
|
-
# the chosen Availability Zone. Bucket names must
|
10968
|
-
#
|
11215
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11216
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10969
11217
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10970
11218
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10971
11219
|
# *Amazon S3 User Guide*.
|
@@ -11273,10 +11521,10 @@ module Aws::S3
|
|
11273
11521
|
#
|
11274
11522
|
# **Directory buckets** - When you use this operation with a directory
|
11275
11523
|
# bucket, you must use virtual-hosted-style requests in the format `
|
11276
|
-
#
|
11524
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
11277
11525
|
# requests are not supported. Directory bucket names must be unique in
|
11278
|
-
# the chosen Availability Zone. Bucket names must
|
11279
|
-
#
|
11526
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11527
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
11280
11528
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
11281
11529
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
11282
11530
|
# *Amazon S3 User Guide*.
|
@@ -11420,9 +11668,9 @@ module Aws::S3
|
|
11420
11668
|
|
11421
11669
|
# Specifies the location where the bucket will be created.
|
11422
11670
|
#
|
11423
|
-
# For directory buckets, the location type is Availability Zone
|
11424
|
-
# more information about directory buckets, see [Directory
|
11425
|
-
# in the *Amazon S3 User Guide*.
|
11671
|
+
# For directory buckets, the location type is Availability Zone or Local
|
11672
|
+
# Zone. For more information about directory buckets, see [Directory
|
11673
|
+
# buckets][1] in the *Amazon S3 User Guide*.
|
11426
11674
|
#
|
11427
11675
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
11428
11676
|
#
|
@@ -11439,9 +11687,9 @@ module Aws::S3
|
|
11439
11687
|
# @!attribute [rw] name
|
11440
11688
|
# The name of the location where the bucket will be created.
|
11441
11689
|
#
|
11442
|
-
# For directory buckets, the name of the location is the
|
11443
|
-
# Availability Zone
|
11444
|
-
# value is `usw2-az1`.
|
11690
|
+
# For directory buckets, the name of the location is the Zone ID of
|
11691
|
+
# the Availability Zone (AZ) or Local Zone (LZ) where the bucket will
|
11692
|
+
# be created. An example AZ ID value is `usw2-az1`.
|
11445
11693
|
# @return [String]
|
11446
11694
|
#
|
11447
11695
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/LocationInfo AWS API Documentation
|
@@ -11524,6 +11772,46 @@ module Aws::S3
|
|
11524
11772
|
include Aws::Structure
|
11525
11773
|
end
|
11526
11774
|
|
11775
|
+
# The metadata table configuration for a general purpose bucket.
|
11776
|
+
#
|
11777
|
+
# @!attribute [rw] s3_tables_destination
|
11778
|
+
# The destination information for the metadata table configuration.
|
11779
|
+
# The destination table bucket must be in the same Region and Amazon
|
11780
|
+
# Web Services account as the general purpose bucket. The specified
|
11781
|
+
# metadata table name must be unique within the `aws_s3_metadata`
|
11782
|
+
# namespace in the destination table bucket.
|
11783
|
+
# @return [Types::S3TablesDestination]
|
11784
|
+
#
|
11785
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataTableConfiguration AWS API Documentation
|
11786
|
+
#
|
11787
|
+
class MetadataTableConfiguration < Struct.new(
|
11788
|
+
:s3_tables_destination)
|
11789
|
+
SENSITIVE = []
|
11790
|
+
include Aws::Structure
|
11791
|
+
end
|
11792
|
+
|
11793
|
+
# The metadata table configuration for a general purpose bucket. The
|
11794
|
+
# destination table bucket must be in the same Region and Amazon Web
|
11795
|
+
# Services account as the general purpose bucket. The specified metadata
|
11796
|
+
# table name must be unique within the `aws_s3_metadata` namespace in
|
11797
|
+
# the destination table bucket.
|
11798
|
+
#
|
11799
|
+
# @!attribute [rw] s3_tables_destination_result
|
11800
|
+
# The destination information for the metadata table configuration.
|
11801
|
+
# The destination table bucket must be in the same Region and Amazon
|
11802
|
+
# Web Services account as the general purpose bucket. The specified
|
11803
|
+
# metadata table name must be unique within the `aws_s3_metadata`
|
11804
|
+
# namespace in the destination table bucket.
|
11805
|
+
# @return [Types::S3TablesDestinationResult]
|
11806
|
+
#
|
11807
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataTableConfigurationResult AWS API Documentation
|
11808
|
+
#
|
11809
|
+
class MetadataTableConfigurationResult < Struct.new(
|
11810
|
+
:s3_tables_destination_result)
|
11811
|
+
SENSITIVE = []
|
11812
|
+
include Aws::Structure
|
11813
|
+
end
|
11814
|
+
|
11527
11815
|
# A container specifying replication metrics-related settings enabling
|
11528
11816
|
# replication metrics and events.
|
11529
11817
|
#
|
@@ -12925,13 +13213,14 @@ module Aws::S3
|
|
12925
13213
|
#
|
12926
13214
|
# <b>Directory buckets </b> - When you use this operation with a
|
12927
13215
|
# directory bucket, you must use path-style requests in the format
|
12928
|
-
# `https://s3express-control.
|
13216
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
12929
13217
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
12930
|
-
# names must be unique in the chosen Availability Zone
|
12931
|
-
# must also follow the format `
|
12932
|
-
#
|
12933
|
-
#
|
12934
|
-
# rules][1] in the
|
13218
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
13219
|
+
# Zone). Bucket names must also follow the format `
|
13220
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
13221
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
13222
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
13223
|
+
# *Amazon S3 User Guide*
|
12935
13224
|
#
|
12936
13225
|
#
|
12937
13226
|
#
|
@@ -13418,13 +13707,14 @@ module Aws::S3
|
|
13418
13707
|
#
|
13419
13708
|
# <b>Directory buckets </b> - When you use this operation with a
|
13420
13709
|
# directory bucket, you must use path-style requests in the format
|
13421
|
-
# `https://s3express-control.
|
13710
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
13422
13711
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
13423
|
-
# names must be unique in the chosen Availability Zone
|
13424
|
-
# must also follow the format `
|
13425
|
-
#
|
13426
|
-
#
|
13427
|
-
# rules][1] in the
|
13712
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
13713
|
+
# Zone). Bucket names must also follow the format `
|
13714
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
13715
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
13716
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
13717
|
+
# *Amazon S3 User Guide*
|
13428
13718
|
#
|
13429
13719
|
#
|
13430
13720
|
#
|
@@ -14233,7 +14523,9 @@ module Aws::S3
|
|
14233
14523
|
# `rule-id` key-value pairs that provide information about object
|
14234
14524
|
# expiration. The value of the `rule-id` is URL-encoded.
|
14235
14525
|
#
|
14236
|
-
# <note markdown="1">
|
14526
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
14527
|
+
# and this header returns the value "`NotImplemented`" in all
|
14528
|
+
# responses for directory buckets.
|
14237
14529
|
#
|
14238
14530
|
# </note>
|
14239
14531
|
#
|
@@ -14473,10 +14765,10 @@ module Aws::S3
|
|
14473
14765
|
#
|
14474
14766
|
# **Directory buckets** - When you use this operation with a directory
|
14475
14767
|
# bucket, you must use virtual-hosted-style requests in the format `
|
14476
|
-
#
|
14768
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
14477
14769
|
# requests are not supported. Directory bucket names must be unique in
|
14478
|
-
# the chosen Availability Zone. Bucket names must
|
14479
|
-
#
|
14770
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
14771
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
14480
14772
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
14481
14773
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
14482
14774
|
# *Amazon S3 User Guide*.
|
@@ -16095,7 +16387,15 @@ module Aws::S3
|
|
16095
16387
|
# @return [Types::GlacierJobParameters]
|
16096
16388
|
#
|
16097
16389
|
# @!attribute [rw] type
|
16390
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16391
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16392
|
+
# usual. [Learn more][1]
|
16393
|
+
#
|
16098
16394
|
# Type of restore request.
|
16395
|
+
#
|
16396
|
+
#
|
16397
|
+
#
|
16398
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16099
16399
|
# @return [String]
|
16100
16400
|
#
|
16101
16401
|
# @!attribute [rw] tier
|
@@ -16107,7 +16407,15 @@ module Aws::S3
|
|
16107
16407
|
# @return [String]
|
16108
16408
|
#
|
16109
16409
|
# @!attribute [rw] select_parameters
|
16410
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16411
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16412
|
+
# usual. [Learn more][1]
|
16413
|
+
#
|
16110
16414
|
# Describes the parameters for Select job types.
|
16415
|
+
#
|
16416
|
+
#
|
16417
|
+
#
|
16418
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16111
16419
|
# @return [Types::SelectParameters]
|
16112
16420
|
#
|
16113
16421
|
# @!attribute [rw] output_location
|
@@ -16375,6 +16683,78 @@ module Aws::S3
|
|
16375
16683
|
include Aws::Structure
|
16376
16684
|
end
|
16377
16685
|
|
16686
|
+
# The destination information for the metadata table configuration. The
|
16687
|
+
# destination table bucket must be in the same Region and Amazon Web
|
16688
|
+
# Services account as the general purpose bucket. The specified metadata
|
16689
|
+
# table name must be unique within the `aws_s3_metadata` namespace in
|
16690
|
+
# the destination table bucket.
|
16691
|
+
#
|
16692
|
+
# @!attribute [rw] table_bucket_arn
|
16693
|
+
# The Amazon Resource Name (ARN) for the table bucket that's
|
16694
|
+
# specified as the destination in the metadata table configuration.
|
16695
|
+
# The destination table bucket must be in the same Region and Amazon
|
16696
|
+
# Web Services account as the general purpose bucket.
|
16697
|
+
# @return [String]
|
16698
|
+
#
|
16699
|
+
# @!attribute [rw] table_name
|
16700
|
+
# The name for the metadata table in your metadata table
|
16701
|
+
# configuration. The specified metadata table name must be unique
|
16702
|
+
# within the `aws_s3_metadata` namespace in the destination table
|
16703
|
+
# bucket.
|
16704
|
+
# @return [String]
|
16705
|
+
#
|
16706
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/S3TablesDestination AWS API Documentation
|
16707
|
+
#
|
16708
|
+
class S3TablesDestination < Struct.new(
|
16709
|
+
:table_bucket_arn,
|
16710
|
+
:table_name)
|
16711
|
+
SENSITIVE = []
|
16712
|
+
include Aws::Structure
|
16713
|
+
end
|
16714
|
+
|
16715
|
+
# The destination information for the metadata table configuration. The
|
16716
|
+
# destination table bucket must be in the same Region and Amazon Web
|
16717
|
+
# Services account as the general purpose bucket. The specified metadata
|
16718
|
+
# table name must be unique within the `aws_s3_metadata` namespace in
|
16719
|
+
# the destination table bucket.
|
16720
|
+
#
|
16721
|
+
# @!attribute [rw] table_bucket_arn
|
16722
|
+
# The Amazon Resource Name (ARN) for the table bucket that's
|
16723
|
+
# specified as the destination in the metadata table configuration.
|
16724
|
+
# The destination table bucket must be in the same Region and Amazon
|
16725
|
+
# Web Services account as the general purpose bucket.
|
16726
|
+
# @return [String]
|
16727
|
+
#
|
16728
|
+
# @!attribute [rw] table_name
|
16729
|
+
# The name for the metadata table in your metadata table
|
16730
|
+
# configuration. The specified metadata table name must be unique
|
16731
|
+
# within the `aws_s3_metadata` namespace in the destination table
|
16732
|
+
# bucket.
|
16733
|
+
# @return [String]
|
16734
|
+
#
|
16735
|
+
# @!attribute [rw] table_arn
|
16736
|
+
# The Amazon Resource Name (ARN) for the metadata table in the
|
16737
|
+
# metadata table configuration. The specified metadata table name must
|
16738
|
+
# be unique within the `aws_s3_metadata` namespace in the destination
|
16739
|
+
# table bucket.
|
16740
|
+
# @return [String]
|
16741
|
+
#
|
16742
|
+
# @!attribute [rw] table_namespace
|
16743
|
+
# The table bucket namespace for the metadata table in your metadata
|
16744
|
+
# table configuration. This value is always `aws_s3_metadata`.
|
16745
|
+
# @return [String]
|
16746
|
+
#
|
16747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/S3TablesDestinationResult AWS API Documentation
|
16748
|
+
#
|
16749
|
+
class S3TablesDestinationResult < Struct.new(
|
16750
|
+
:table_bucket_arn,
|
16751
|
+
:table_name,
|
16752
|
+
:table_arn,
|
16753
|
+
:table_namespace)
|
16754
|
+
SENSITIVE = []
|
16755
|
+
include Aws::Structure
|
16756
|
+
end
|
16757
|
+
|
16378
16758
|
# Specifies the use of SSE-KMS to encrypt delivered inventory reports.
|
16379
16759
|
#
|
16380
16760
|
# @!attribute [rw] key_id
|
@@ -16443,6 +16823,12 @@ module Aws::S3
|
|
16443
16823
|
include Aws::Structure
|
16444
16824
|
end
|
16445
16825
|
|
16826
|
+
# <note markdown="1"> Learn Amazon S3 Select is no longer available to new customers.
|
16827
|
+
# Existing customers of Amazon S3 Select can continue to use the feature
|
16828
|
+
# as usual. [Learn more][1]
|
16829
|
+
#
|
16830
|
+
# </note>
|
16831
|
+
#
|
16446
16832
|
# Request to filter the contents of an Amazon S3 object based on a
|
16447
16833
|
# simple Structured Query Language (SQL) statement. In the request,
|
16448
16834
|
# along with the SQL expression, you must specify a data serialization
|
@@ -16450,11 +16836,12 @@ module Aws::S3
|
|
16450
16836
|
# object data into records. It returns only records that match the
|
16451
16837
|
# specified SQL expression. You must also specify the data serialization
|
16452
16838
|
# format for the response. For more information, see [S3Select API
|
16453
|
-
# Documentation][
|
16839
|
+
# Documentation][2].
|
16454
16840
|
#
|
16455
16841
|
#
|
16456
16842
|
#
|
16457
|
-
# [1]:
|
16843
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16844
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html
|
16458
16845
|
#
|
16459
16846
|
# @!attribute [rw] bucket
|
16460
16847
|
# The S3 bucket.
|
@@ -16566,8 +16953,21 @@ module Aws::S3
|
|
16566
16953
|
include Aws::Structure
|
16567
16954
|
end
|
16568
16955
|
|
16956
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16957
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16958
|
+
# usual. [Learn more][1]
|
16959
|
+
#
|
16569
16960
|
# Describes the parameters for Select job types.
|
16570
16961
|
#
|
16962
|
+
# Learn [How to optimize querying your data in Amazon S3][1] using
|
16963
|
+
# [Amazon Athena][2], [S3 Object Lambda][3], or client-side filtering.
|
16964
|
+
#
|
16965
|
+
#
|
16966
|
+
#
|
16967
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16968
|
+
# [2]: https://docs.aws.amazon.com/athena/latest/ug/what-is.html
|
16969
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html
|
16970
|
+
#
|
16571
16971
|
# @!attribute [rw] input_serialization
|
16572
16972
|
# Describes the serialization format of the object.
|
16573
16973
|
# @return [Types::InputSerialization]
|
@@ -16577,7 +16977,15 @@ module Aws::S3
|
|
16577
16977
|
# @return [String]
|
16578
16978
|
#
|
16579
16979
|
# @!attribute [rw] expression
|
16980
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16981
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16982
|
+
# usual. [Learn more][1]
|
16983
|
+
#
|
16580
16984
|
# The expression that is used to query the object.
|
16985
|
+
#
|
16986
|
+
#
|
16987
|
+
#
|
16988
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16581
16989
|
# @return [String]
|
16582
16990
|
#
|
16583
16991
|
# @!attribute [rw] output_serialization
|
@@ -17285,14 +17693,22 @@ module Aws::S3
|
|
17285
17693
|
#
|
17286
17694
|
# **Directory buckets** - When you use this operation with a directory
|
17287
17695
|
# bucket, you must use virtual-hosted-style requests in the format `
|
17288
|
-
#
|
17696
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
17289
17697
|
# requests are not supported. Directory bucket names must be unique in
|
17290
|
-
# the chosen Availability Zone. Bucket names must
|
17291
|
-
#
|
17698
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
17699
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
17292
17700
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
17293
17701
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
17294
17702
|
# *Amazon S3 User Guide*.
|
17295
17703
|
#
|
17704
|
+
# <note markdown="1"> Copying objects across different Amazon Web Services Regions isn't
|
17705
|
+
# supported when the source or destination bucket is in Amazon Web
|
17706
|
+
# Services Local Zones. The source and destination buckets must have
|
17707
|
+
# the same parent Amazon Web Services Region. Otherwise, you get an
|
17708
|
+
# HTTP `400 Bad Request` error with the error code `InvalidRequest`.
|
17709
|
+
#
|
17710
|
+
# </note>
|
17711
|
+
#
|
17296
17712
|
# **Access points** - When you use this action with an access point,
|
17297
17713
|
# you must provide the alias of the access point in place of the
|
17298
17714
|
# bucket name or specify the access point ARN. When using the access
|
@@ -17738,10 +18154,10 @@ module Aws::S3
|
|
17738
18154
|
#
|
17739
18155
|
# **Directory buckets** - When you use this operation with a directory
|
17740
18156
|
# bucket, you must use virtual-hosted-style requests in the format `
|
17741
|
-
#
|
18157
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
17742
18158
|
# requests are not supported. Directory bucket names must be unique in
|
17743
|
-
# the chosen Availability Zone. Bucket names must
|
17744
|
-
#
|
18159
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
18160
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
17745
18161
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
17746
18162
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
17747
18163
|
# *Amazon S3 User Guide*.
|