aws-sdk-fsx 1.114.0 → 1.115.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.
@@ -10,6 +10,28 @@
10
10
  module Aws::FSx
11
11
  module Types
12
12
 
13
+ # An access point with that name already exists in the Amazon Web
14
+ # Services Region in your Amazon Web Services account.
15
+ #
16
+ # @!attribute [rw] error_code
17
+ # An error code indicating that an access point with that name already
18
+ # exists in the Amazon Web Services Region in your Amazon Web Services
19
+ # account.
20
+ # @return [String]
21
+ #
22
+ # @!attribute [rw] message
23
+ # A detailed error message.
24
+ # @return [String]
25
+ #
26
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AccessPointAlreadyOwnedByYou AWS API Documentation
27
+ #
28
+ class AccessPointAlreadyOwnedByYou < Struct.new(
29
+ :error_code,
30
+ :message)
31
+ SENSITIVE = []
32
+ include Aws::Structure
33
+ end
34
+
13
35
  # The Microsoft Active Directory attributes of the Amazon FSx for
14
36
  # Windows File Server file system.
15
37
  #
@@ -1091,6 +1113,116 @@ module Aws::FSx
1091
1113
  include Aws::Structure
1092
1114
  end
1093
1115
 
1116
+ # Specifies the FSx for OpenZFS volume that the S3 access point will be
1117
+ # attached to, and the file system user identity.
1118
+ #
1119
+ # @!attribute [rw] volume_id
1120
+ # The ID of the FSx for OpenZFS volume to which you want the S3 access
1121
+ # point attached.
1122
+ # @return [String]
1123
+ #
1124
+ # @!attribute [rw] file_system_identity
1125
+ # Specifies the file system user identity to use for authorizing file
1126
+ # read and write requests that are made using this S3 access point.
1127
+ # @return [Types::OpenZFSFileSystemIdentity]
1128
+ #
1129
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateAndAttachS3AccessPointOpenZFSConfiguration AWS API Documentation
1130
+ #
1131
+ class CreateAndAttachS3AccessPointOpenZFSConfiguration < Struct.new(
1132
+ :volume_id,
1133
+ :file_system_identity)
1134
+ SENSITIVE = []
1135
+ include Aws::Structure
1136
+ end
1137
+
1138
+ # @!attribute [rw] client_request_token
1139
+ # (Optional) An idempotency token for resource creation, in a string
1140
+ # of up to 63 ASCII characters. This token is automatically filled on
1141
+ # your behalf when you use the Command Line Interface (CLI) or an
1142
+ # Amazon Web Services SDK.
1143
+ #
1144
+ # **A suitable default value is auto-generated.** You should normally
1145
+ # not need to pass this option.
1146
+ # @return [String]
1147
+ #
1148
+ # @!attribute [rw] name
1149
+ # The name you want to assign to this S3 access point.
1150
+ # @return [String]
1151
+ #
1152
+ # @!attribute [rw] type
1153
+ # The type of S3 access point you want to create. Only `OpenZFS` is
1154
+ # supported.
1155
+ # @return [String]
1156
+ #
1157
+ # @!attribute [rw] open_zfs_configuration
1158
+ # Specifies the configuration to use when creating and attaching an S3
1159
+ # access point to an FSx for OpenZFS volume.
1160
+ # @return [Types::CreateAndAttachS3AccessPointOpenZFSConfiguration]
1161
+ #
1162
+ # @!attribute [rw] s3_access_point
1163
+ # Specifies the virtual private cloud (VPC) configuration if you're
1164
+ # creating an access point that is restricted to a VPC. For more
1165
+ # information, see [Creating access points restricted to a virtual
1166
+ # private cloud][1].
1167
+ #
1168
+ #
1169
+ #
1170
+ # [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/access-points-vpc.html
1171
+ # @return [Types::CreateAndAttachS3AccessPointS3Configuration]
1172
+ #
1173
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateAndAttachS3AccessPointRequest AWS API Documentation
1174
+ #
1175
+ class CreateAndAttachS3AccessPointRequest < Struct.new(
1176
+ :client_request_token,
1177
+ :name,
1178
+ :type,
1179
+ :open_zfs_configuration,
1180
+ :s3_access_point)
1181
+ SENSITIVE = []
1182
+ include Aws::Structure
1183
+ end
1184
+
1185
+ # @!attribute [rw] s3_access_point_attachment
1186
+ # Describes the configuration of the S3 access point created.
1187
+ # @return [Types::S3AccessPointAttachment]
1188
+ #
1189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateAndAttachS3AccessPointResponse AWS API Documentation
1190
+ #
1191
+ class CreateAndAttachS3AccessPointResponse < Struct.new(
1192
+ :s3_access_point_attachment)
1193
+ SENSITIVE = []
1194
+ include Aws::Structure
1195
+ end
1196
+
1197
+ # Used to create an S3 access point that accepts requests only from a
1198
+ # virtual private cloud (VPC) to restrict data access to a private
1199
+ # network.
1200
+ #
1201
+ # @!attribute [rw] vpc_configuration
1202
+ # If included, Amazon S3 restricts access to this S3 access point to
1203
+ # requests made from the specified virtual private cloud (VPC).
1204
+ # @return [Types::S3AccessPointVpcConfiguration]
1205
+ #
1206
+ # @!attribute [rw] policy
1207
+ # Specifies an access policy to associate with the S3 access point
1208
+ # configuration. For more information, see [Configuring IAM policies
1209
+ # for using access points][1] in the Amazon Simple Storage Service
1210
+ # User Guide.
1211
+ #
1212
+ #
1213
+ #
1214
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-policies.html
1215
+ # @return [String]
1216
+ #
1217
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateAndAttachS3AccessPointS3Configuration AWS API Documentation
1218
+ #
1219
+ class CreateAndAttachS3AccessPointS3Configuration < Struct.new(
1220
+ :vpc_configuration,
1221
+ :policy)
1222
+ SENSITIVE = []
1223
+ include Aws::Structure
1224
+ end
1225
+
1094
1226
  # The request object for the `CreateBackup` operation.
1095
1227
  #
1096
1228
  # @!attribute [rw] file_system_id
@@ -2504,7 +2636,7 @@ module Aws::FSx
2504
2636
  #
2505
2637
  #
2506
2638
  # [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
2507
- # [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-storage-classes
2639
+ # [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-fsx-lustre.html#lustre-storage-classes
2508
2640
  # [3]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance-intelligent-tiering
2509
2641
  # @return [String]
2510
2642
  #
@@ -5134,6 +5266,60 @@ module Aws::FSx
5134
5266
  include Aws::Structure
5135
5267
  end
5136
5268
 
5269
+ # @!attribute [rw] names
5270
+ # The names of the S3 access point attachments whose descriptions you
5271
+ # want to retrieve.
5272
+ # @return [Array<String>]
5273
+ #
5274
+ # @!attribute [rw] filters
5275
+ # Enter a filter Name and Values pair to view a select set of S3
5276
+ # access point attachments.
5277
+ # @return [Array<Types::S3AccessPointAttachmentsFilter>]
5278
+ #
5279
+ # @!attribute [rw] max_results
5280
+ # The maximum number of resources to return in the response. This
5281
+ # value must be an integer greater than zero.
5282
+ # @return [Integer]
5283
+ #
5284
+ # @!attribute [rw] next_token
5285
+ # (Optional) Opaque pagination token returned from a previous
5286
+ # operation (String). If present, this token indicates from what point
5287
+ # you can continue processing the request, where the previous
5288
+ # `NextToken` value left off.
5289
+ # @return [String]
5290
+ #
5291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeS3AccessPointAttachmentsRequest AWS API Documentation
5292
+ #
5293
+ class DescribeS3AccessPointAttachmentsRequest < Struct.new(
5294
+ :names,
5295
+ :filters,
5296
+ :max_results,
5297
+ :next_token)
5298
+ SENSITIVE = []
5299
+ include Aws::Structure
5300
+ end
5301
+
5302
+ # @!attribute [rw] s3_access_point_attachments
5303
+ # Array of S3 access point attachments returned after a successful
5304
+ # `DescribeS3AccessPointAttachments` operation.
5305
+ # @return [Array<Types::S3AccessPointAttachment>]
5306
+ #
5307
+ # @!attribute [rw] next_token
5308
+ # (Optional) Opaque pagination token returned from a previous
5309
+ # operation (String). If present, this token indicates from what point
5310
+ # you can continue processing the request, where the previous
5311
+ # `NextToken` value left off.
5312
+ # @return [String]
5313
+ #
5314
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeS3AccessPointAttachmentsResponse AWS API Documentation
5315
+ #
5316
+ class DescribeS3AccessPointAttachmentsResponse < Struct.new(
5317
+ :s3_access_point_attachments,
5318
+ :next_token)
5319
+ SENSITIVE = []
5320
+ include Aws::Structure
5321
+ end
5322
+
5137
5323
  # @api private
5138
5324
  #
5139
5325
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeSharedVpcConfigurationRequest AWS API Documentation
@@ -5320,6 +5506,46 @@ module Aws::FSx
5320
5506
  include Aws::Structure
5321
5507
  end
5322
5508
 
5509
+ # @!attribute [rw] client_request_token
5510
+ # (Optional) An idempotency token for resource creation, in a string
5511
+ # of up to 63 ASCII characters. This token is automatically filled on
5512
+ # your behalf when you use the Command Line Interface (CLI) or an
5513
+ # Amazon Web Services SDK.
5514
+ #
5515
+ # **A suitable default value is auto-generated.** You should normally
5516
+ # not need to pass this option.
5517
+ # @return [String]
5518
+ #
5519
+ # @!attribute [rw] name
5520
+ # The name of the S3 access point attachment that you want to delete.
5521
+ # @return [String]
5522
+ #
5523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DetachAndDeleteS3AccessPointRequest AWS API Documentation
5524
+ #
5525
+ class DetachAndDeleteS3AccessPointRequest < Struct.new(
5526
+ :client_request_token,
5527
+ :name)
5528
+ SENSITIVE = []
5529
+ include Aws::Structure
5530
+ end
5531
+
5532
+ # @!attribute [rw] lifecycle
5533
+ # The lifecycle status of the S3 access point attachment.
5534
+ # @return [String]
5535
+ #
5536
+ # @!attribute [rw] name
5537
+ # The name of the S3 access point attachment being deleted.
5538
+ # @return [String]
5539
+ #
5540
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DetachAndDeleteS3AccessPointResponse AWS API Documentation
5541
+ #
5542
+ class DetachAndDeleteS3AccessPointResponse < Struct.new(
5543
+ :lifecycle,
5544
+ :name)
5545
+ SENSITIVE = []
5546
+ include Aws::Structure
5547
+ end
5548
+
5323
5549
  # The request object of DNS aliases to disassociate from an Amazon FSx
5324
5550
  # for Windows File Server file system.
5325
5551
  #
@@ -6296,6 +6522,26 @@ module Aws::FSx
6296
6522
  include Aws::Structure
6297
6523
  end
6298
6524
 
6525
+ # The access point specified doesn't exist.
6526
+ #
6527
+ # @!attribute [rw] error_code
6528
+ # An error code indicating that the access point specified doesn't
6529
+ # exist.
6530
+ # @return [String]
6531
+ #
6532
+ # @!attribute [rw] message
6533
+ # A detailed error message.
6534
+ # @return [String]
6535
+ #
6536
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/InvalidAccessPoint AWS API Documentation
6537
+ #
6538
+ class InvalidAccessPoint < Struct.new(
6539
+ :error_code,
6540
+ :message)
6541
+ SENSITIVE = []
6542
+ include Aws::Structure
6543
+ end
6544
+
6299
6545
  # You have filtered the response to a data repository type that is not
6300
6546
  # supported.
6301
6547
  #
@@ -6416,6 +6662,27 @@ module Aws::FSx
6416
6662
  include Aws::Structure
6417
6663
  end
6418
6664
 
6665
+ # The action or operation requested is invalid. Verify that the action
6666
+ # is typed correctly.
6667
+ #
6668
+ # @!attribute [rw] error_code
6669
+ # An error code indicating that the action or operation requested is
6670
+ # invalid.
6671
+ # @return [String]
6672
+ #
6673
+ # @!attribute [rw] message
6674
+ # A detailed error message.
6675
+ # @return [String]
6676
+ #
6677
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/InvalidRequest AWS API Documentation
6678
+ #
6679
+ class InvalidRequest < Struct.new(
6680
+ :error_code,
6681
+ :message)
6682
+ SENSITIVE = []
6683
+ include Aws::Structure
6684
+ end
6685
+
6419
6686
  # The Key Management Service (KMS) key of the source backup is not
6420
6687
  # valid.
6421
6688
  #
@@ -7508,6 +7775,28 @@ module Aws::FSx
7508
7775
  include Aws::Structure
7509
7776
  end
7510
7777
 
7778
+ # Specifies the file system user identity that will be used for
7779
+ # authorizing all file access requests that are made using the S3 access
7780
+ # point.
7781
+ #
7782
+ # @!attribute [rw] type
7783
+ # Specifies the FSx for OpenZFS user identity type, accepts only
7784
+ # `POSIX`.
7785
+ # @return [String]
7786
+ #
7787
+ # @!attribute [rw] posix_user
7788
+ # Specifies the UID and GIDs of the file system POSIX user.
7789
+ # @return [Types::OpenZFSPosixFileSystemUser]
7790
+ #
7791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OpenZFSFileSystemIdentity AWS API Documentation
7792
+ #
7793
+ class OpenZFSFileSystemIdentity < Struct.new(
7794
+ :type,
7795
+ :posix_user)
7796
+ SENSITIVE = []
7797
+ include Aws::Structure
7798
+ end
7799
+
7511
7800
  # The Network File System (NFS) configurations for mounting an Amazon
7512
7801
  # FSx for OpenZFS file system.
7513
7802
  #
@@ -7571,6 +7860,31 @@ module Aws::FSx
7571
7860
  include Aws::Structure
7572
7861
  end
7573
7862
 
7863
+ # The FSx for OpenZFS file system user that is used for authorizing all
7864
+ # file access requests that are made using the S3 access point.
7865
+ #
7866
+ # @!attribute [rw] uid
7867
+ # The UID of the file system user.
7868
+ # @return [Integer]
7869
+ #
7870
+ # @!attribute [rw] gid
7871
+ # The GID of the file system user.
7872
+ # @return [Integer]
7873
+ #
7874
+ # @!attribute [rw] secondary_gids
7875
+ # The list of secondary GIDs for the file system user.
7876
+ # @return [Array<Integer>]
7877
+ #
7878
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OpenZFSPosixFileSystemUser AWS API Documentation
7879
+ #
7880
+ class OpenZFSPosixFileSystemUser < Struct.new(
7881
+ :uid,
7882
+ :gid,
7883
+ :secondary_gids)
7884
+ SENSITIVE = []
7885
+ include Aws::Structure
7886
+ end
7887
+
7574
7888
  # The configuration for the optional provisioned SSD read cache on
7575
7889
  # Amazon FSx for OpenZFS file systems that use the Intelligent-Tiering
7576
7890
  # storage class.
@@ -8025,6 +8339,165 @@ module Aws::FSx
8025
8339
  include Aws::Structure
8026
8340
  end
8027
8341
 
8342
+ # Describes the S3 access point configuration of the S3 access point
8343
+ # attachment.
8344
+ #
8345
+ # @!attribute [rw] resource_arn
8346
+ # he S3 access point's ARN.
8347
+ # @return [String]
8348
+ #
8349
+ # @!attribute [rw] alias
8350
+ # The S3 access point's alias.
8351
+ # @return [String]
8352
+ #
8353
+ # @!attribute [rw] vpc_configuration
8354
+ # The S3 access point's virtual private cloud (VPC) configuration.
8355
+ # @return [Types::S3AccessPointVpcConfiguration]
8356
+ #
8357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/S3AccessPoint AWS API Documentation
8358
+ #
8359
+ class S3AccessPoint < Struct.new(
8360
+ :resource_arn,
8361
+ :alias,
8362
+ :vpc_configuration)
8363
+ SENSITIVE = []
8364
+ include Aws::Structure
8365
+ end
8366
+
8367
+ # An S3 access point attached to an Amazon FSx volume.
8368
+ #
8369
+ # @!attribute [rw] lifecycle
8370
+ # The lifecycle status of the S3 access point attachment. The
8371
+ # lifecycle can have the following values:
8372
+ #
8373
+ # * AVAILABLE - the S3 access point attachment is available for use
8374
+ #
8375
+ # * CREATING - Amazon FSx is creating the S3 access point and
8376
+ # attachment
8377
+ #
8378
+ # * DELETING - Amazon FSx is deleting the S3 access point and
8379
+ # attachment
8380
+ #
8381
+ # * FAILED - The S3 access point attachment is in a failed state.
8382
+ # Delete and detach the S3 access point attachment, and create a new
8383
+ # one.
8384
+ #
8385
+ # * UPDATING - Amazon FSx is updating the S3 access point attachment
8386
+ # @return [String]
8387
+ #
8388
+ # @!attribute [rw] lifecycle_transition_reason
8389
+ # Describes why a resource lifecycle state changed.
8390
+ # @return [Types::LifecycleTransitionReason]
8391
+ #
8392
+ # @!attribute [rw] creation_time
8393
+ # The time that the resource was created, in seconds (since
8394
+ # 1970-01-01T00:00:00Z), also known as Unix time.
8395
+ # @return [Time]
8396
+ #
8397
+ # @!attribute [rw] name
8398
+ # The name of the S3 access point attachment; also used for the name
8399
+ # of the S3 access point.
8400
+ # @return [String]
8401
+ #
8402
+ # @!attribute [rw] type
8403
+ # The type of Amazon FSx volume that the S3 access point is attached
8404
+ # to.
8405
+ # @return [String]
8406
+ #
8407
+ # @!attribute [rw] open_zfs_configuration
8408
+ # The OpenZFSConfiguration of the S3 access point attachment.
8409
+ # @return [Types::S3AccessPointOpenZFSConfiguration]
8410
+ #
8411
+ # @!attribute [rw] s3_access_point
8412
+ # The S3 access point configuration of the S3 access point attachment.
8413
+ # @return [Types::S3AccessPoint]
8414
+ #
8415
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/S3AccessPointAttachment AWS API Documentation
8416
+ #
8417
+ class S3AccessPointAttachment < Struct.new(
8418
+ :lifecycle,
8419
+ :lifecycle_transition_reason,
8420
+ :creation_time,
8421
+ :name,
8422
+ :type,
8423
+ :open_zfs_configuration,
8424
+ :s3_access_point)
8425
+ SENSITIVE = []
8426
+ include Aws::Structure
8427
+ end
8428
+
8429
+ # The access point specified was not found.
8430
+ #
8431
+ # @!attribute [rw] message
8432
+ # A detailed error message.
8433
+ # @return [String]
8434
+ #
8435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/S3AccessPointAttachmentNotFound AWS API Documentation
8436
+ #
8437
+ class S3AccessPointAttachmentNotFound < Struct.new(
8438
+ :message)
8439
+ SENSITIVE = []
8440
+ include Aws::Structure
8441
+ end
8442
+
8443
+ # A set of Name and Values pairs used to view a select set of S3 access
8444
+ # point attachments.
8445
+ #
8446
+ # @!attribute [rw] name
8447
+ # The name of the filter.
8448
+ # @return [String]
8449
+ #
8450
+ # @!attribute [rw] values
8451
+ # The values of the filter.
8452
+ # @return [Array<String>]
8453
+ #
8454
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/S3AccessPointAttachmentsFilter AWS API Documentation
8455
+ #
8456
+ class S3AccessPointAttachmentsFilter < Struct.new(
8457
+ :name,
8458
+ :values)
8459
+ SENSITIVE = []
8460
+ include Aws::Structure
8461
+ end
8462
+
8463
+ # Describes the FSx for OpenZFS attachment configuration of an S3 access
8464
+ # point attachment.
8465
+ #
8466
+ # @!attribute [rw] volume_id
8467
+ # The ID of the FSx for OpenZFS volume that the S3 access point is
8468
+ # attached to.
8469
+ # @return [String]
8470
+ #
8471
+ # @!attribute [rw] file_system_identity
8472
+ # The file system identity used to authorize file access requests made
8473
+ # using the S3 access point.
8474
+ # @return [Types::OpenZFSFileSystemIdentity]
8475
+ #
8476
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/S3AccessPointOpenZFSConfiguration AWS API Documentation
8477
+ #
8478
+ class S3AccessPointOpenZFSConfiguration < Struct.new(
8479
+ :volume_id,
8480
+ :file_system_identity)
8481
+ SENSITIVE = []
8482
+ include Aws::Structure
8483
+ end
8484
+
8485
+ # If included, Amazon S3 restricts access to this access point to
8486
+ # requests from the specified virtual private cloud (VPC).
8487
+ #
8488
+ # @!attribute [rw] vpc_id
8489
+ # Specifies the virtual private cloud (VPC) for the S3 access point
8490
+ # VPC configuration, if one exists.
8491
+ # @return [String]
8492
+ #
8493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/S3AccessPointVpcConfiguration AWS API Documentation
8494
+ #
8495
+ class S3AccessPointVpcConfiguration < Struct.new(
8496
+ :vpc_id)
8497
+ SENSITIVE = []
8498
+ include Aws::Structure
8499
+ end
8500
+
8028
8501
  # The configuration for an Amazon S3 data repository linked to an Amazon
8029
8502
  # FSx for Lustre file system with a data repository association. The
8030
8503
  # configuration consists of an `AutoImportPolicy` that defines which
@@ -8879,6 +9352,35 @@ module Aws::FSx
8879
9352
  include Aws::Structure
8880
9353
  end
8881
9354
 
9355
+ # You have reached the maximum number of S3 access points attachments
9356
+ # allowed for your account in this Amazon Web Services Region, or for
9357
+ # the file system. For more information, or to request an increase, see
9358
+ # [Service quotas on FSx resources][1] in the FSx for OpenZFS User
9359
+ # Guide.
9360
+ #
9361
+ #
9362
+ #
9363
+ # [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/limits.html
9364
+ #
9365
+ # @!attribute [rw] error_code
9366
+ # An error code indicating that you have reached the maximum number of
9367
+ # S3 access points attachments allowed for your account in this Amazon
9368
+ # Web Services Region, or for the file system.
9369
+ # @return [String]
9370
+ #
9371
+ # @!attribute [rw] message
9372
+ # A detailed error message.
9373
+ # @return [String]
9374
+ #
9375
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/TooManyAccessPoints AWS API Documentation
9376
+ #
9377
+ class TooManyAccessPoints < Struct.new(
9378
+ :error_code,
9379
+ :message)
9380
+ SENSITIVE = []
9381
+ include Aws::Structure
9382
+ end
9383
+
8882
9384
  # The requested operation is not supported for this resource or API.
8883
9385
  #
8884
9386
  # @!attribute [rw] message
data/lib/aws-sdk-fsx.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::FSx
54
54
  autoload :EndpointProvider, 'aws-sdk-fsx/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-fsx/endpoints'
56
56
 
57
- GEM_VERSION = '1.114.0'
57
+ GEM_VERSION = '1.115.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -137,6 +137,35 @@ module Aws
137
137
  ) -> _CopySnapshotAndUpdateVolumeResponseSuccess
138
138
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopySnapshotAndUpdateVolumeResponseSuccess
139
139
 
140
+ interface _CreateAndAttachS3AccessPointResponseSuccess
141
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAndAttachS3AccessPointResponse]
142
+ def s3_access_point_attachment: () -> Types::S3AccessPointAttachment
143
+ end
144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FSx/Client.html#create_and_attach_s3_access_point-instance_method
145
+ def create_and_attach_s3_access_point: (
146
+ ?client_request_token: ::String,
147
+ name: ::String,
148
+ type: ("OPENZFS"),
149
+ ?open_zfs_configuration: {
150
+ volume_id: ::String,
151
+ file_system_identity: {
152
+ type: ("POSIX"),
153
+ posix_user: {
154
+ uid: ::Integer,
155
+ gid: ::Integer,
156
+ secondary_gids: Array[::Integer]?
157
+ }?
158
+ }
159
+ },
160
+ ?s3_access_point: {
161
+ vpc_configuration: {
162
+ vpc_id: ::String?
163
+ }?,
164
+ policy: ::String?
165
+ }
166
+ ) -> _CreateAndAttachS3AccessPointResponseSuccess
167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAndAttachS3AccessPointResponseSuccess
168
+
140
169
  interface _CreateBackupResponseSuccess
141
170
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateBackupResponse]
142
171
  def backup: () -> Types::Backup
@@ -958,6 +987,25 @@ module Aws
958
987
  ) -> _DescribeFileSystemsResponseSuccess
959
988
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFileSystemsResponseSuccess
960
989
 
990
+ interface _DescribeS3AccessPointAttachmentsResponseSuccess
991
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeS3AccessPointAttachmentsResponse]
992
+ def s3_access_point_attachments: () -> ::Array[Types::S3AccessPointAttachment]
993
+ def next_token: () -> ::String
994
+ end
995
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FSx/Client.html#describe_s3_access_point_attachments-instance_method
996
+ def describe_s3_access_point_attachments: (
997
+ ?names: Array[::String],
998
+ ?filters: Array[
999
+ {
1000
+ name: ("file-system-id" | "volume-id" | "type")?,
1001
+ values: Array[::String]?
1002
+ },
1003
+ ],
1004
+ ?max_results: ::Integer,
1005
+ ?next_token: ::String
1006
+ ) -> _DescribeS3AccessPointAttachmentsResponseSuccess
1007
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeS3AccessPointAttachmentsResponseSuccess
1008
+
961
1009
  interface _DescribeSharedVpcConfigurationResponseSuccess
962
1010
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSharedVpcConfigurationResponse]
963
1011
  def enable_fsx_route_table_updates_from_participant_accounts: () -> ::String
@@ -1025,6 +1073,18 @@ module Aws
1025
1073
  ) -> _DescribeVolumesResponseSuccess
1026
1074
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVolumesResponseSuccess
1027
1075
 
1076
+ interface _DetachAndDeleteS3AccessPointResponseSuccess
1077
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetachAndDeleteS3AccessPointResponse]
1078
+ def lifecycle: () -> ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
1079
+ def name: () -> ::String
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FSx/Client.html#detach_and_delete_s3_access_point-instance_method
1082
+ def detach_and_delete_s3_access_point: (
1083
+ ?client_request_token: ::String,
1084
+ name: ::String
1085
+ ) -> _DetachAndDeleteS3AccessPointResponseSuccess
1086
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetachAndDeleteS3AccessPointResponseSuccess
1087
+
1028
1088
  interface _DisassociateFileSystemAliasesResponseSuccess
1029
1089
  include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateFileSystemAliasesResponse]
1030
1090
  def aliases: () -> ::Array[Types::Alias]