aws-sdk-fsx 1.114.0 → 1.116.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: ca9b00f6961fc30a8e2c8d331958978e223d213a5ad3d5e043238d4a88fc07e6
4
- data.tar.gz: 2a2d85c663b144020bd4a31260cc18a04a980aeb42f2ea1805af0de8d439e547
3
+ metadata.gz: 114a0dabdfd9da1384c591a6c1d53aefb0ad8c7849e40b5501b34caec33ebb8b
4
+ data.tar.gz: b87f4f80304d1a2a4a0eb2ef7a39c9656baef4de67928e964d47a0784cdb39d7
5
5
  SHA512:
6
- metadata.gz: 86704db640c935d7b63c6a56bfd595f24d0431698de54558a37bd60de7bea0c37d93a0d7731d9b078d9b39a002915825de5fec7332775ed1f452449747e0b156
7
- data.tar.gz: fae36715f598392c3d1cd287399d36a873f039d6283f5a90f423729882e81f84942a3cfab1c01350836c9043bc00760c259cb70f702a77d0fe47641af00c3fa5
6
+ metadata.gz: 89f38de77103aba43845418e318b5d490fefb511bb742f59c839f1eb39b37ae70b3d54b69427e96983e4b6bc9837b27bad5d1bfc23881b29f0502562c32b820d
7
+ data.tar.gz: ed837672931c0e2db7387c3a52b02ec967a98f68e30ac70e71e6c692c3597f8cc4bee03498b0ef90524f4b5ffb8357ee309aa3ea3d595e2680f0ffbf2824b78f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.115.0 (2025-06-25)
10
+ ------------------
11
+
12
+ * Feature - Add support for the ability to create Amazon S3 Access Points for Amazon FSx for OpenZFS file systems.
13
+
4
14
  1.114.0 (2025-06-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.114.0
1
+ 1.116.0
@@ -95,7 +95,7 @@ module Aws::FSx
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::FSx
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::FSx
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::FSx
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -374,7 +384,7 @@ module Aws::FSx
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
387
+ # Your Bearer token used for authentication. This can be an instance of any one of the
378
388
  # following classes:
379
389
  #
380
390
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -1473,6 +1483,117 @@ module Aws::FSx
1473
1483
  req.send_request(options)
1474
1484
  end
1475
1485
 
1486
+ # Creates an S3 access point and attaches it to an Amazon FSx volume.
1487
+ # For FSx for OpenZFS file systems, the volume must be hosted on a
1488
+ # high-availability file system, either Single-AZ or Multi-AZ. For more
1489
+ # information, see [Accessing your data using access
1490
+ # points](fsx/latest/OpenZFSGuide/s3accesspoints-for-FSx.html) in the
1491
+ # Amazon FSx for OpenZFS User Guide.
1492
+ #
1493
+ # The requester requires the following permissions to perform these
1494
+ # actions:
1495
+ #
1496
+ # * `fsx:CreateAndAttachS3AccessPoint`
1497
+ #
1498
+ # * `s3:CreateAccessPoint`
1499
+ #
1500
+ # * `s3:GetAccessPoint`
1501
+ #
1502
+ # * `s3:PutAccessPointPolicy`
1503
+ #
1504
+ # * `s3:DeleteAccessPoint`
1505
+ #
1506
+ # The following actions are related to `CreateAndAttachS3AccessPoint`:
1507
+ #
1508
+ # * DescribeS3AccessPointAttachments
1509
+ #
1510
+ # * DetachAndDeleteS3AccessPoint
1511
+ #
1512
+ # @option params [String] :client_request_token
1513
+ # (Optional) An idempotency token for resource creation, in a string of
1514
+ # up to 63 ASCII characters. This token is automatically filled on your
1515
+ # behalf when you use the Command Line Interface (CLI) or an Amazon Web
1516
+ # Services SDK.
1517
+ #
1518
+ # **A suitable default value is auto-generated.** You should normally
1519
+ # not need to pass this option.**
1520
+ #
1521
+ # @option params [required, String] :name
1522
+ # The name you want to assign to this S3 access point.
1523
+ #
1524
+ # @option params [required, String] :type
1525
+ # The type of S3 access point you want to create. Only `OpenZFS` is
1526
+ # supported.
1527
+ #
1528
+ # @option params [Types::CreateAndAttachS3AccessPointOpenZFSConfiguration] :open_zfs_configuration
1529
+ # Specifies the configuration to use when creating and attaching an S3
1530
+ # access point to an FSx for OpenZFS volume.
1531
+ #
1532
+ # @option params [Types::CreateAndAttachS3AccessPointS3Configuration] :s3_access_point
1533
+ # Specifies the virtual private cloud (VPC) configuration if you're
1534
+ # creating an access point that is restricted to a VPC. For more
1535
+ # information, see [Creating access points restricted to a virtual
1536
+ # private cloud][1].
1537
+ #
1538
+ #
1539
+ #
1540
+ # [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/access-points-vpc.html
1541
+ #
1542
+ # @return [Types::CreateAndAttachS3AccessPointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1543
+ #
1544
+ # * {Types::CreateAndAttachS3AccessPointResponse#s3_access_point_attachment #s3_access_point_attachment} => Types::S3AccessPointAttachment
1545
+ #
1546
+ # @example Request syntax with placeholder values
1547
+ #
1548
+ # resp = client.create_and_attach_s3_access_point({
1549
+ # client_request_token: "ClientRequestToken",
1550
+ # name: "S3AccessPointAttachmentName", # required
1551
+ # type: "OPENZFS", # required, accepts OPENZFS
1552
+ # open_zfs_configuration: {
1553
+ # volume_id: "VolumeId", # required
1554
+ # file_system_identity: { # required
1555
+ # type: "POSIX", # required, accepts POSIX
1556
+ # posix_user: {
1557
+ # uid: 1, # required
1558
+ # gid: 1, # required
1559
+ # secondary_gids: [1],
1560
+ # },
1561
+ # },
1562
+ # },
1563
+ # s3_access_point: {
1564
+ # vpc_configuration: {
1565
+ # vpc_id: "VpcId",
1566
+ # },
1567
+ # policy: "AccessPointPolicy",
1568
+ # },
1569
+ # })
1570
+ #
1571
+ # @example Response structure
1572
+ #
1573
+ # resp.s3_access_point_attachment.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED"
1574
+ # resp.s3_access_point_attachment.lifecycle_transition_reason.message #=> String
1575
+ # resp.s3_access_point_attachment.creation_time #=> Time
1576
+ # resp.s3_access_point_attachment.name #=> String
1577
+ # resp.s3_access_point_attachment.type #=> String, one of "OPENZFS"
1578
+ # resp.s3_access_point_attachment.open_zfs_configuration.volume_id #=> String
1579
+ # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.type #=> String, one of "POSIX"
1580
+ # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.uid #=> Integer
1581
+ # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.gid #=> Integer
1582
+ # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.secondary_gids #=> Array
1583
+ # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.secondary_gids[0] #=> Integer
1584
+ # resp.s3_access_point_attachment.s3_access_point.resource_arn #=> String
1585
+ # resp.s3_access_point_attachment.s3_access_point.alias #=> String
1586
+ # resp.s3_access_point_attachment.s3_access_point.vpc_configuration.vpc_id #=> String
1587
+ #
1588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateAndAttachS3AccessPoint AWS API Documentation
1589
+ #
1590
+ # @overload create_and_attach_s3_access_point(params = {})
1591
+ # @param [Hash] params ({})
1592
+ def create_and_attach_s3_access_point(params = {}, options = {})
1593
+ req = build_request(:create_and_attach_s3_access_point, params)
1594
+ req.send_request(options)
1595
+ end
1596
+
1476
1597
  # Creates a backup of an existing Amazon FSx for Windows File Server
1477
1598
  # file system, Amazon FSx for Lustre file system, Amazon FSx for NetApp
1478
1599
  # ONTAP volume, or Amazon FSx for OpenZFS file system. We recommend
@@ -2688,7 +2809,7 @@ module Aws::FSx
2688
2809
  #
2689
2810
  #
2690
2811
  # [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
2691
- # [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-storage-classes
2812
+ # [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-fsx-lustre.html#lustre-storage-classes
2692
2813
  # [3]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance-intelligent-tiering
2693
2814
  #
2694
2815
  # @option params [required, Array<String>] :subnet_ids
@@ -4998,12 +5119,19 @@ module Aws::FSx
4998
5119
  # Then provide a `FileSystemId` value to the `DeleteFileSystem`
4999
5120
  # operation.
5000
5121
  #
5122
+ # Before deleting an Amazon FSx for OpenZFS file system, make sure that
5123
+ # there aren't any Amazon S3 access points attached to any volume. For
5124
+ # more information on how to list S3 access points that are attached to
5125
+ # volumes, see [Listing S3 access point attachments][1]. For more
5126
+ # information on how to delete S3 access points, see [Deleting an S3
5127
+ # access point attachment][2].
5128
+ #
5001
5129
  # By default, when you delete an Amazon FSx for Windows File Server file
5002
5130
  # system, a final backup is created upon deletion. This final backup
5003
5131
  # isn't subject to the file system's retention policy, and must be
5004
5132
  # manually deleted.
5005
5133
  #
5006
- # To delete an Amazon FSx for Lustre file system, first [unmount][1] it
5134
+ # To delete an Amazon FSx for Lustre file system, first [unmount][3] it
5007
5135
  # from every connected Amazon EC2 instance, then provide a
5008
5136
  # `FileSystemId` value to the `DeleteFileSystem` operation. By default,
5009
5137
  # Amazon FSx will not take a final backup when the `DeleteFileSystem`
@@ -5012,15 +5140,15 @@ module Aws::FSx
5012
5140
  # file system you are deleting. Backups cannot be enabled on S3-linked
5013
5141
  # file systems. To ensure all of your data is written back to S3 before
5014
5142
  # deleting your file system, you can either monitor for the
5015
- # [AgeOfOldestQueuedMessage][2] metric to be zero (if using automatic
5016
- # export) or you can run an [export data repository task][3]. If you
5143
+ # [AgeOfOldestQueuedMessage][4] metric to be zero (if using automatic
5144
+ # export) or you can run an [export data repository task][5]. If you
5017
5145
  # have automatic export enabled and want to use an export data
5018
5146
  # repository task, you have to disable automatic export before executing
5019
5147
  # the export data repository task.
5020
5148
  #
5021
5149
  # The `DeleteFileSystem` operation returns while the file system has the
5022
5150
  # `DELETING` status. You can check the file system deletion status by
5023
- # calling the [DescribeFileSystems][4] operation, which returns a list
5151
+ # calling the [DescribeFileSystems][6] operation, which returns a list
5024
5152
  # of file systems in your account. If you pass the file system ID for a
5025
5153
  # deleted file system, the `DescribeFileSystems` operation returns a
5026
5154
  # `FileSystemNotFound` error.
@@ -5036,10 +5164,12 @@ module Aws::FSx
5036
5164
  #
5037
5165
  #
5038
5166
  #
5039
- # [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/unmounting-fs.html
5040
- # [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/monitoring-cloudwatch.html#auto-import-export-metrics
5041
- # [3]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/export-data-repo-task-dra.html
5042
- # [4]: https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileSystems.html
5167
+ # [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/access-points-list
5168
+ # [2]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/delete-points-list
5169
+ # [3]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/unmounting-fs.html
5170
+ # [4]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/monitoring-cloudwatch.html#auto-import-export-metrics
5171
+ # [5]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/export-data-repo-task-dra.html
5172
+ # [6]: https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileSystems.html
5043
5173
  #
5044
5174
  # @option params [required, String] :file_system_id
5045
5175
  # The ID of the file system that you want to delete.
@@ -6511,6 +6641,82 @@ module Aws::FSx
6511
6641
  req.send_request(options)
6512
6642
  end
6513
6643
 
6644
+ # Describes one or more S3 access points attached to Amazon FSx volumes.
6645
+ #
6646
+ # The requester requires the following permission to perform this
6647
+ # action:
6648
+ #
6649
+ # * `fsx:DescribeS3AccessPointAttachments`
6650
+ #
6651
+ # ^
6652
+ #
6653
+ # @option params [Array<String>] :names
6654
+ # The names of the S3 access point attachments whose descriptions you
6655
+ # want to retrieve.
6656
+ #
6657
+ # @option params [Array<Types::S3AccessPointAttachmentsFilter>] :filters
6658
+ # Enter a filter Name and Values pair to view a select set of S3 access
6659
+ # point attachments.
6660
+ #
6661
+ # @option params [Integer] :max_results
6662
+ # The maximum number of resources to return in the response. This value
6663
+ # must be an integer greater than zero.
6664
+ #
6665
+ # @option params [String] :next_token
6666
+ # (Optional) Opaque pagination token returned from a previous operation
6667
+ # (String). If present, this token indicates from what point you can
6668
+ # continue processing the request, where the previous `NextToken` value
6669
+ # left off.
6670
+ #
6671
+ # @return [Types::DescribeS3AccessPointAttachmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6672
+ #
6673
+ # * {Types::DescribeS3AccessPointAttachmentsResponse#s3_access_point_attachments #s3_access_point_attachments} => Array&lt;Types::S3AccessPointAttachment&gt;
6674
+ # * {Types::DescribeS3AccessPointAttachmentsResponse#next_token #next_token} => String
6675
+ #
6676
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6677
+ #
6678
+ # @example Request syntax with placeholder values
6679
+ #
6680
+ # resp = client.describe_s3_access_point_attachments({
6681
+ # names: ["S3AccessPointAttachmentName"],
6682
+ # filters: [
6683
+ # {
6684
+ # name: "file-system-id", # accepts file-system-id, volume-id, type
6685
+ # values: ["S3AccessPointAttachmentsFilterValue"],
6686
+ # },
6687
+ # ],
6688
+ # max_results: 1,
6689
+ # next_token: "NextToken",
6690
+ # })
6691
+ #
6692
+ # @example Response structure
6693
+ #
6694
+ # resp.s3_access_point_attachments #=> Array
6695
+ # resp.s3_access_point_attachments[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED"
6696
+ # resp.s3_access_point_attachments[0].lifecycle_transition_reason.message #=> String
6697
+ # resp.s3_access_point_attachments[0].creation_time #=> Time
6698
+ # resp.s3_access_point_attachments[0].name #=> String
6699
+ # resp.s3_access_point_attachments[0].type #=> String, one of "OPENZFS"
6700
+ # resp.s3_access_point_attachments[0].open_zfs_configuration.volume_id #=> String
6701
+ # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.type #=> String, one of "POSIX"
6702
+ # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.uid #=> Integer
6703
+ # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.gid #=> Integer
6704
+ # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.secondary_gids #=> Array
6705
+ # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.secondary_gids[0] #=> Integer
6706
+ # resp.s3_access_point_attachments[0].s3_access_point.resource_arn #=> String
6707
+ # resp.s3_access_point_attachments[0].s3_access_point.alias #=> String
6708
+ # resp.s3_access_point_attachments[0].s3_access_point.vpc_configuration.vpc_id #=> String
6709
+ # resp.next_token #=> String
6710
+ #
6711
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeS3AccessPointAttachments AWS API Documentation
6712
+ #
6713
+ # @overload describe_s3_access_point_attachments(params = {})
6714
+ # @param [Hash] params ({})
6715
+ def describe_s3_access_point_attachments(params = {}, options = {})
6716
+ req = build_request(:describe_s3_access_point_attachments, params)
6717
+ req.send_request(options)
6718
+ end
6719
+
6514
6720
  # Indicates whether participant accounts in your organization can create
6515
6721
  # Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are
6516
6722
  # shared by a virtual private cloud (VPC) owner. For more information,
@@ -7160,6 +7366,54 @@ module Aws::FSx
7160
7366
  req.send_request(options)
7161
7367
  end
7162
7368
 
7369
+ # Detaches an S3 access point from an Amazon FSx volume and deletes the
7370
+ # S3 access point.
7371
+ #
7372
+ # The requester requires the following permission to perform this
7373
+ # action:
7374
+ #
7375
+ # * `fsx:DetachAndDeleteS3AccessPoint`
7376
+ #
7377
+ # * `s3:DeleteAccessPoint`
7378
+ #
7379
+ # @option params [String] :client_request_token
7380
+ # (Optional) An idempotency token for resource creation, in a string of
7381
+ # up to 63 ASCII characters. This token is automatically filled on your
7382
+ # behalf when you use the Command Line Interface (CLI) or an Amazon Web
7383
+ # Services SDK.
7384
+ #
7385
+ # **A suitable default value is auto-generated.** You should normally
7386
+ # not need to pass this option.**
7387
+ #
7388
+ # @option params [required, String] :name
7389
+ # The name of the S3 access point attachment that you want to delete.
7390
+ #
7391
+ # @return [Types::DetachAndDeleteS3AccessPointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7392
+ #
7393
+ # * {Types::DetachAndDeleteS3AccessPointResponse#lifecycle #lifecycle} => String
7394
+ # * {Types::DetachAndDeleteS3AccessPointResponse#name #name} => String
7395
+ #
7396
+ # @example Request syntax with placeholder values
7397
+ #
7398
+ # resp = client.detach_and_delete_s3_access_point({
7399
+ # client_request_token: "ClientRequestToken",
7400
+ # name: "S3AccessPointAttachmentName", # required
7401
+ # })
7402
+ #
7403
+ # @example Response structure
7404
+ #
7405
+ # resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED"
7406
+ # resp.name #=> String
7407
+ #
7408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DetachAndDeleteS3AccessPoint AWS API Documentation
7409
+ #
7410
+ # @overload detach_and_delete_s3_access_point(params = {})
7411
+ # @param [Hash] params ({})
7412
+ def detach_and_delete_s3_access_point(params = {}, options = {})
7413
+ req = build_request(:detach_and_delete_s3_access_point, params)
7414
+ req.send_request(options)
7415
+ end
7416
+
7163
7417
  # Use this action to disassociate, or remove, one or more Domain Name
7164
7418
  # Service (DNS) aliases from an Amazon FSx for Windows File Server file
7165
7419
  # system. If you attempt to disassociate a DNS alias that is not
@@ -9538,7 +9792,7 @@ module Aws::FSx
9538
9792
  tracer: tracer
9539
9793
  )
9540
9794
  context[:gem_name] = 'aws-sdk-fsx'
9541
- context[:gem_version] = '1.114.0'
9795
+ context[:gem_version] = '1.116.0'
9542
9796
  Seahorse::Client::Request.new(handlers, context)
9543
9797
  end
9544
9798