aws-sdk-s3control 1.110.0 → 1.111.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 886e9f223932d5cfded249bd139fb0e2fe42722af2a3890ea1733bac7f36b42a
4
- data.tar.gz: 5e2df14634094894177855f3c036f0b8f405e3899aa0fd5c565bbd84c66e1ec3
3
+ metadata.gz: 6b13ecd44f535c9b3acb6b7ef1891dc6c21ac0344f78e419aa6aaa46600733aa
4
+ data.tar.gz: dccd65f2cc498fcf382501e34e5ce08a2001b5d65c14d767e81a4b437e0dd1aa
5
5
  SHA512:
6
- metadata.gz: 46f49c82a7c899f57abc24d3e6d41b2f6b46312b56dbb0028ff46c636b2e343e37b3ab5b0472e26b749421cd8ef4cdafd3dab22e501532441d5e52a1cc58eb70
7
- data.tar.gz: 9a3ac2f6077155da8f526389b3b1d10203c32672426d23f78050d1673b061541c4208f907c7788f729570e39dccb6525e8c6fe4f6d6360320b38d44c0fb3f2f2
6
+ metadata.gz: 805632ecdade076aa08ccab968a878ed73465acb88ca4ccb012473499145b50bf5e490f3916fb186e559121f47c94d82a494a07c9fdc68e0b42810087546c837
7
+ data.tar.gz: 6813ba490f508986297d71a7e72ed5771b44177d10b920992e5c00a48524170a3f6592df3ead437bab71045bfdfe6163bb775048a4a8e97483cfa25ed8bb8ead
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.111.0 (2025-06-25)
5
+ ------------------
6
+
7
+ * Feature - Add support for the ability to use Amazon S3 Access Points with Amazon FSx for OpenZFS file systems.
8
+
4
9
  1.110.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.111.0
@@ -843,17 +843,20 @@ module Aws::S3Control
843
843
  end
844
844
 
845
845
  # Creates an access point and associates it to a specified bucket. For
846
- # more information, see [Managing access to shared datasets in general
847
- # purpose buckets with access points][1] or [Managing access to shared
848
- # datasets in directory buckets with access points][2] in the *Amazon S3
849
- # User Guide*.
846
+ # more information, see [Managing access to shared datasets with access
847
+ # points][1] or [Managing access to shared datasets in directory buckets
848
+ # with access points][2] in the *Amazon S3 User Guide*.
849
+ #
850
+ # To create an access point and attach it to a volume on an Amazon FSx
851
+ # file system, see [CreateAndAttachS3AccessPoint][3] in the *Amazon FSx
852
+ # API Reference*.
850
853
  #
851
854
  #
852
855
  #
853
856
  # <note markdown="1"> S3 on Outposts only supports VPC-style access points.
854
857
  #
855
858
  # For more information, see [ Accessing Amazon S3 on Outposts using
856
- # virtual private cloud (VPC) only access points][3] in the *Amazon S3
859
+ # virtual private cloud (VPC) only access points][4] in the *Amazon S3
857
860
  # User Guide*.
858
861
  #
859
862
  # </note>
@@ -864,30 +867,31 @@ module Aws::S3Control
864
867
  # prefix instead of `s3-control`. For an example of the request syntax
865
868
  # for Amazon S3 on Outposts that uses the S3 on Outposts endpoint
866
869
  # hostname prefix and the `x-amz-outpost-id` derived by using the access
867
- # point ARN, see the [Examples][4] section.
870
+ # point ARN, see the [Examples][5] section.
868
871
  #
869
872
  #
870
873
  #
871
874
  # The following actions are related to `CreateAccessPoint`:
872
875
  #
873
- # * [GetAccessPoint][5]
876
+ # * [GetAccessPoint][6]
874
877
  #
875
- # * [DeleteAccessPoint][6]
878
+ # * [DeleteAccessPoint][7]
876
879
  #
877
- # * [ListAccessPoints][7]
880
+ # * [ListAccessPoints][8]
878
881
  #
879
- # * [ListAccessPointsForDirectoryBuckets][8]
882
+ # * [ListAccessPointsForDirectoryBuckets][9]
880
883
  #
881
884
  #
882
885
  #
883
886
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
884
887
  # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-directory-buckets.html
885
- # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
886
- # [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessPoint.html#API_control_CreateAccessPoint_Examples
887
- # [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
888
- # [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html
889
- # [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
890
- # [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPointsForDirectoryBuckets.html
888
+ # [3]: https://docs.aws.amazon.com/fsx/latest/APIReference/API_CreateAndAttachS3AccessPoint.html
889
+ # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
890
+ # [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessPoint.html#API_control_CreateAccessPoint_Examples
891
+ # [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
892
+ # [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html
893
+ # [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
894
+ # [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPointsForDirectoryBuckets.html
891
895
  #
892
896
  # @option params [String] :account_id
893
897
  # The Amazon Web Services account ID for the account that owns the
@@ -901,7 +905,7 @@ module Aws::S3Control
901
905
  # Web Services Availability Zone or Local Zone) of your bucket location,
902
906
  # followed by `--xa-s3`. For more information, see [Managing access to
903
907
  # shared datasets in directory buckets with access points][1] in the
904
- # Amazon S3 User Guide.
908
+ # *Amazon S3 User Guide*.
905
909
  #
906
910
  #
907
911
  #
@@ -950,9 +954,10 @@ module Aws::S3Control
950
954
  # For directory buckets, you can filter access control to specific
951
955
  # prefixes, API operations, or a combination of both. For more
952
956
  # information, see [Managing access to shared datasets in directory
953
- # buckets with access points][1] in the Amazon S3 User Guide.
957
+ # buckets with access points][1] in the *Amazon S3 User Guide*.
954
958
  #
955
- # <note markdown="1"> Scope is not supported for access points for general purpose buckets.
959
+ # <note markdown="1"> Scope is only supported for access points attached to directory
960
+ # buckets.
956
961
  #
957
962
  # </note>
958
963
  #
@@ -3419,6 +3424,8 @@ module Aws::S3Control
3419
3424
  # * {Types::GetAccessPointResult#access_point_arn #access_point_arn} => String
3420
3425
  # * {Types::GetAccessPointResult#endpoints #endpoints} => Hash&lt;String,String&gt;
3421
3426
  # * {Types::GetAccessPointResult#bucket_account_id #bucket_account_id} => String
3427
+ # * {Types::GetAccessPointResult#data_source_id #data_source_id} => String
3428
+ # * {Types::GetAccessPointResult#data_source_type #data_source_type} => String
3422
3429
  #
3423
3430
  # @example Request syntax with placeholder values
3424
3431
  #
@@ -3443,6 +3450,8 @@ module Aws::S3Control
3443
3450
  # resp.endpoints #=> Hash
3444
3451
  # resp.endpoints["NonEmptyMaxLength64String"] #=> String
3445
3452
  # resp.bucket_account_id #=> String
3453
+ # resp.data_source_id #=> String
3454
+ # resp.data_source_type #=> String
3446
3455
  #
3447
3456
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPoint AWS API Documentation
3448
3457
  #
@@ -5342,12 +5351,14 @@ module Aws::S3Control
5342
5351
  #
5343
5352
  # </note>
5344
5353
  #
5345
- # Returns a list of the access points that are owned by the current
5346
- # account that's associated with the specified bucket. You can retrieve
5347
- # up to 1000 access points per call. If the specified bucket has more
5348
- # than 1,000 access points (or the number specified in `maxResults`,
5349
- # whichever is less), the response will include a continuation token
5350
- # that you can use to list the additional access points.
5354
+ # Returns a list of the access points. You can retrieve up to 1,000
5355
+ # access points per call. If the call returns more than 1,000 access
5356
+ # points (or the number specified in `maxResults`, whichever is less),
5357
+ # the response will include a continuation token that you can use to
5358
+ # list the additional access points.
5359
+ #
5360
+ # Returns only access points attached to S3 buckets by default. To
5361
+ # return all access points specify `DataSourceType` as `ALL`.
5351
5362
  #
5352
5363
  #
5353
5364
  #
@@ -5407,6 +5418,14 @@ module Aws::S3Control
5407
5418
  # `NextToken` field that you can use to retrieve the next page of access
5408
5419
  # points.
5409
5420
  #
5421
+ # @option params [String] :data_source_id
5422
+ # The unique identifier for the data source of the access point.
5423
+ #
5424
+ # @option params [String] :data_source_type
5425
+ # The type of the data source that the access point is attached to.
5426
+ # Returns only access points attached to S3 buckets by default. To
5427
+ # return all access points specify `DataSourceType` as `ALL`.
5428
+ #
5410
5429
  # @return [Types::ListAccessPointsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5411
5430
  #
5412
5431
  # * {Types::ListAccessPointsResult#access_point_list #access_point_list} => Array&lt;Types::AccessPoint&gt;
@@ -5421,6 +5440,8 @@ module Aws::S3Control
5421
5440
  # bucket: "BucketName",
5422
5441
  # next_token: "NonEmptyMaxLength1024String",
5423
5442
  # max_results: 1,
5443
+ # data_source_id: "DataSourceId",
5444
+ # data_source_type: "DataSourceType",
5424
5445
  # })
5425
5446
  #
5426
5447
  # @example Response structure
@@ -5433,6 +5454,8 @@ module Aws::S3Control
5433
5454
  # resp.access_point_list[0].access_point_arn #=> String
5434
5455
  # resp.access_point_list[0].alias #=> String
5435
5456
  # resp.access_point_list[0].bucket_account_id #=> String
5457
+ # resp.access_point_list[0].data_source_id #=> String
5458
+ # resp.access_point_list[0].data_source_type #=> String
5436
5459
  # resp.next_token #=> String
5437
5460
  #
5438
5461
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPoints AWS API Documentation
@@ -5508,6 +5531,8 @@ module Aws::S3Control
5508
5531
  # resp.access_point_list[0].access_point_arn #=> String
5509
5532
  # resp.access_point_list[0].alias #=> String
5510
5533
  # resp.access_point_list[0].bucket_account_id #=> String
5534
+ # resp.access_point_list[0].data_source_id #=> String
5535
+ # resp.access_point_list[0].data_source_type #=> String
5511
5536
  # resp.next_token #=> String
5512
5537
  #
5513
5538
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPointsForDirectoryBuckets AWS API Documentation
@@ -6252,15 +6277,15 @@ module Aws::S3Control
6252
6277
  #
6253
6278
  # @option params [required, String] :policy
6254
6279
  # The policy that you want to apply to the specified access point. For
6255
- # more information about access point policies, see [Managing access to
6256
- # shared datasets in general purpose buckets with access points][1] or
6257
- # [Managing access to shared datasets in directory bucekts with access
6258
- # points](AmazonS3/latest/userguide/access-points-directory-buckets.html)
6259
- # in the *Amazon S3 User Guide*.
6280
+ # more information about access point policies, see [Managing data
6281
+ # access with Amazon S3 access points][1] or [Managing access to shared
6282
+ # datasets in directory buckets with access points][2] in the *Amazon S3
6283
+ # User Guide*.
6260
6284
  #
6261
6285
  #
6262
6286
  #
6263
6287
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
6288
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-directory-buckets.html
6264
6289
  #
6265
6290
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6266
6291
  #
@@ -7985,7 +8010,7 @@ module Aws::S3Control
7985
8010
  tracer: tracer
7986
8011
  )
7987
8012
  context[:gem_name] = 'aws-sdk-s3control'
7988
- context[:gem_version] = '1.110.0'
8013
+ context[:gem_version] = '1.111.0'
7989
8014
  Seahorse::Client::Request.new(handlers, context)
7990
8015
  end
7991
8016
 
@@ -28,6 +28,7 @@ module Aws::S3Control
28
28
  AccessGrantsLocationsList = Shapes::ListShape.new(name: 'AccessGrantsLocationsList')
29
29
  AccessKeyId = Shapes::StringShape.new(name: 'AccessKeyId')
30
30
  AccessPoint = Shapes::StructureShape.new(name: 'AccessPoint')
31
+ AccessPointBucketName = Shapes::StringShape.new(name: 'AccessPointBucketName')
31
32
  AccessPointList = Shapes::ListShape.new(name: 'AccessPointList')
32
33
  AccessPointName = Shapes::StringShape.new(name: 'AccessPointName')
33
34
  AccountId = Shapes::StringShape.new(name: 'AccountId')
@@ -87,6 +88,8 @@ module Aws::S3Control
87
88
  CreationDate = Shapes::TimestampShape.new(name: 'CreationDate')
88
89
  CreationTimestamp = Shapes::TimestampShape.new(name: 'CreationTimestamp')
89
90
  Credentials = Shapes::StructureShape.new(name: 'Credentials')
91
+ DataSourceId = Shapes::StringShape.new(name: 'DataSourceId')
92
+ DataSourceType = Shapes::StringShape.new(name: 'DataSourceType')
90
93
  Date = Shapes::TimestampShape.new(name: 'Date')
91
94
  Days = Shapes::IntegerShape.new(name: 'Days')
92
95
  DaysAfterInitiation = Shapes::IntegerShape.new(name: 'DaysAfterInitiation')
@@ -555,10 +558,12 @@ module Aws::S3Control
555
558
  AccessPoint.add_member(:name, Shapes::ShapeRef.new(shape: AccessPointName, required: true, location_name: "Name"))
556
559
  AccessPoint.add_member(:network_origin, Shapes::ShapeRef.new(shape: NetworkOrigin, required: true, location_name: "NetworkOrigin"))
557
560
  AccessPoint.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
558
- AccessPoint.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
561
+ AccessPoint.add_member(:bucket, Shapes::ShapeRef.new(shape: AccessPointBucketName, required: true, location_name: "Bucket"))
559
562
  AccessPoint.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
560
563
  AccessPoint.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
561
564
  AccessPoint.add_member(:bucket_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "BucketAccountId"))
565
+ AccessPoint.add_member(:data_source_id, Shapes::ShapeRef.new(shape: DataSourceId, location_name: "DataSourceId"))
566
+ AccessPoint.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "DataSourceType"))
562
567
  AccessPoint.struct_class = Types::AccessPoint
563
568
 
564
569
  AccessPointList.member = Shapes::ShapeRef.new(shape: AccessPoint, location_name: "AccessPoint")
@@ -1005,7 +1010,7 @@ module Aws::S3Control
1005
1010
  GetAccessPointRequest.struct_class = Types::GetAccessPointRequest
1006
1011
 
1007
1012
  GetAccessPointResult.add_member(:name, Shapes::ShapeRef.new(shape: AccessPointName, location_name: "Name"))
1008
- GetAccessPointResult.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
1013
+ GetAccessPointResult.add_member(:bucket, Shapes::ShapeRef.new(shape: AccessPointBucketName, location_name: "Bucket"))
1009
1014
  GetAccessPointResult.add_member(:network_origin, Shapes::ShapeRef.new(shape: NetworkOrigin, location_name: "NetworkOrigin"))
1010
1015
  GetAccessPointResult.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
1011
1016
  GetAccessPointResult.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
@@ -1014,6 +1019,8 @@ module Aws::S3Control
1014
1019
  GetAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
1015
1020
  GetAccessPointResult.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, location_name: "Endpoints"))
1016
1021
  GetAccessPointResult.add_member(:bucket_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "BucketAccountId"))
1022
+ GetAccessPointResult.add_member(:data_source_id, Shapes::ShapeRef.new(shape: DataSourceId, location_name: "DataSourceId"))
1023
+ GetAccessPointResult.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "DataSourceType"))
1017
1024
  GetAccessPointResult.struct_class = Types::GetAccessPointResult
1018
1025
 
1019
1026
  GetAccessPointScopeRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location: "header", location_name: "x-amz-account-id", metadata: {"contextParam" => {"name" => "AccountId"}, "hostLabel" => true, "hostLabelName" => "AccountId"}))
@@ -1397,6 +1404,8 @@ module Aws::S3Control
1397
1404
  ListAccessPointsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location: "querystring", location_name: "bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1398
1405
  ListAccessPointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyMaxLength1024String, location: "querystring", location_name: "nextToken"))
1399
1406
  ListAccessPointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
1407
+ ListAccessPointsRequest.add_member(:data_source_id, Shapes::ShapeRef.new(shape: DataSourceId, location: "querystring", location_name: "dataSourceId"))
1408
+ ListAccessPointsRequest.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DataSourceType, location: "querystring", location_name: "dataSourceType"))
1400
1409
  ListAccessPointsRequest.struct_class = Types::ListAccessPointsRequest
1401
1410
 
1402
1411
  ListAccessPointsResult.add_member(:access_point_list, Shapes::ShapeRef.new(shape: AccessPointList, location_name: "AccessPointList"))
@@ -116,6 +116,14 @@ module Aws::S3Control
116
116
  # associated with this access point.
117
117
  # @return [String]
118
118
  #
119
+ # @!attribute [rw] data_source_id
120
+ # A unique identifier for the data source of the access point.
121
+ # @return [String]
122
+ #
123
+ # @!attribute [rw] data_source_type
124
+ # The type of the data source that the access point is attached to.
125
+ # @return [String]
126
+ #
119
127
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AccessPoint AWS API Documentation
120
128
  #
121
129
  class AccessPoint < Struct.new(
@@ -125,7 +133,9 @@ module Aws::S3Control
125
133
  :bucket,
126
134
  :access_point_arn,
127
135
  :alias,
128
- :bucket_account_id)
136
+ :bucket_account_id,
137
+ :data_source_id,
138
+ :data_source_type)
129
139
  SENSITIVE = []
130
140
  include Aws::Structure
131
141
  end
@@ -934,7 +944,7 @@ module Aws::S3Control
934
944
  # Web Services Availability Zone or Local Zone) of your bucket
935
945
  # location, followed by `--xa-s3`. For more information, see [Managing
936
946
  # access to shared datasets in directory buckets with access
937
- # points][1] in the Amazon S3 User Guide.
947
+ # points][1] in the *Amazon S3 User Guide*.
938
948
  #
939
949
  #
940
950
  #
@@ -989,9 +999,9 @@ module Aws::S3Control
989
999
  # For directory buckets, you can filter access control to specific
990
1000
  # prefixes, API operations, or a combination of both. For more
991
1001
  # information, see [Managing access to shared datasets in directory
992
- # buckets with access points][1] in the Amazon S3 User Guide.
1002
+ # buckets with access points][1] in the *Amazon S3 User Guide*.
993
1003
  #
994
- # <note markdown="1"> Scope is not supported for access points for general purpose
1004
+ # <note markdown="1"> Scope is only supported for access points attached to directory
995
1005
  # buckets.
996
1006
  #
997
1007
  # </note>
@@ -2853,6 +2863,14 @@ module Aws::S3Control
2853
2863
  # associated with this access point.
2854
2864
  # @return [String]
2855
2865
  #
2866
+ # @!attribute [rw] data_source_id
2867
+ # The unique identifier for the data source of the access point.
2868
+ # @return [String]
2869
+ #
2870
+ # @!attribute [rw] data_source_type
2871
+ # The type of the data source that the access point is attached to.
2872
+ # @return [String]
2873
+ #
2856
2874
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPointResult AWS API Documentation
2857
2875
  #
2858
2876
  class GetAccessPointResult < Struct.new(
@@ -2865,7 +2883,9 @@ module Aws::S3Control
2865
2883
  :alias,
2866
2884
  :access_point_arn,
2867
2885
  :endpoints,
2868
- :bucket_account_id)
2886
+ :bucket_account_id,
2887
+ :data_source_id,
2888
+ :data_source_type)
2869
2889
  SENSITIVE = []
2870
2890
  include Aws::Structure
2871
2891
  end
@@ -5068,13 +5088,25 @@ module Aws::S3Control
5068
5088
  # access points.
5069
5089
  # @return [Integer]
5070
5090
  #
5091
+ # @!attribute [rw] data_source_id
5092
+ # The unique identifier for the data source of the access point.
5093
+ # @return [String]
5094
+ #
5095
+ # @!attribute [rw] data_source_type
5096
+ # The type of the data source that the access point is attached to.
5097
+ # Returns only access points attached to S3 buckets by default. To
5098
+ # return all access points specify `DataSourceType` as `ALL`.
5099
+ # @return [String]
5100
+ #
5071
5101
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPointsRequest AWS API Documentation
5072
5102
  #
5073
5103
  class ListAccessPointsRequest < Struct.new(
5074
5104
  :account_id,
5075
5105
  :bucket,
5076
5106
  :next_token,
5077
- :max_results)
5107
+ :max_results,
5108
+ :data_source_id,
5109
+ :data_source_type)
5078
5110
  SENSITIVE = []
5079
5111
  include Aws::Structure
5080
5112
  end
@@ -6261,16 +6293,15 @@ module Aws::S3Control
6261
6293
  #
6262
6294
  # @!attribute [rw] policy
6263
6295
  # The policy that you want to apply to the specified access point. For
6264
- # more information about access point policies, see [Managing access
6265
- # to shared datasets in general purpose buckets with access points][1]
6266
- # or [Managing access to shared datasets in directory bucekts with
6267
- # access
6268
- # points](AmazonS3/latest/userguide/access-points-directory-buckets.html)
6269
- # in the *Amazon S3 User Guide*.
6296
+ # more information about access point policies, see [Managing data
6297
+ # access with Amazon S3 access points][1] or [Managing access to
6298
+ # shared datasets in directory buckets with access points][2] in the
6299
+ # *Amazon S3 User Guide*.
6270
6300
  #
6271
6301
  #
6272
6302
  #
6273
6303
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
6304
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-directory-buckets.html
6274
6305
  # @return [String]
6275
6306
  #
6276
6307
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PutAccessPointPolicyRequest AWS API Documentation
@@ -7853,7 +7884,7 @@ module Aws::S3Control
7853
7884
  # prefixes, API operations, or a combination of both.
7854
7885
  #
7855
7886
  # For more information, see [Manage the scope of your access points for
7856
- # directory buckets.][1]
7887
+ # directory buckets][1].
7857
7888
  #
7858
7889
  #
7859
7890
  #
@@ -54,7 +54,7 @@ module Aws::S3Control
54
54
  autoload :EndpointProvider, 'aws-sdk-s3control/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-s3control/endpoints'
56
56
 
57
- GEM_VERSION = '1.110.0'
57
+ GEM_VERSION = '1.111.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -775,6 +775,8 @@ module Aws
775
775
  def access_point_arn: () -> ::String
776
776
  def endpoints: () -> ::Hash[::String, ::String]
777
777
  def bucket_account_id: () -> ::String
778
+ def data_source_id: () -> ::String
779
+ def data_source_type: () -> ::String
778
780
  end
779
781
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Control/Client.html#get_access_point-instance_method
780
782
  def get_access_point: (
@@ -1103,7 +1105,9 @@ module Aws
1103
1105
  ?account_id: ::String,
1104
1106
  ?bucket: ::String,
1105
1107
  ?next_token: ::String,
1106
- ?max_results: ::Integer
1108
+ ?max_results: ::Integer,
1109
+ ?data_source_id: ::String,
1110
+ ?data_source_type: ::String
1107
1111
  ) -> _ListAccessPointsResponseSuccess
1108
1112
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessPointsResponseSuccess
1109
1113
 
data/sig/types.rbs CHANGED
@@ -31,6 +31,8 @@ module Aws::S3Control
31
31
  attr_accessor access_point_arn: ::String
32
32
  attr_accessor alias: ::String
33
33
  attr_accessor bucket_account_id: ::String
34
+ attr_accessor data_source_id: ::String
35
+ attr_accessor data_source_type: ::String
34
36
  SENSITIVE: []
35
37
  end
36
38
 
@@ -663,6 +665,8 @@ module Aws::S3Control
663
665
  attr_accessor access_point_arn: ::String
664
666
  attr_accessor endpoints: ::Hash[::String, ::String]
665
667
  attr_accessor bucket_account_id: ::String
668
+ attr_accessor data_source_id: ::String
669
+ attr_accessor data_source_type: ::String
666
670
  SENSITIVE: []
667
671
  end
668
672
 
@@ -1181,6 +1185,8 @@ module Aws::S3Control
1181
1185
  attr_accessor bucket: ::String
1182
1186
  attr_accessor next_token: ::String
1183
1187
  attr_accessor max_results: ::Integer
1188
+ attr_accessor data_source_id: ::String
1189
+ attr_accessor data_source_type: ::String
1184
1190
  SENSITIVE: []
1185
1191
  end
1186
1192
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3control
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.110.0
4
+ version: 1.111.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services