aws-sdk-transfer 1.127.0 → 1.128.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: 1f3fb8f7c4c25a0f3b6d3dc41d7a8b1bf00c45967af28cf6c3953c9557f0dc82
4
- data.tar.gz: 394f69e6e4347f2909ca5999dcf0e6d6c43eb084d5b77f5982441fc97b2e01d3
3
+ metadata.gz: de2bc9c516daba0432ab602e9acd71741afdb993c094a37ef15d43c2af552578
4
+ data.tar.gz: c822faf0892cb6b02c8586799c678909e349af6fe6d73689f74d42f7c37da862
5
5
  SHA512:
6
- metadata.gz: eea315d4a101683b0f1d8a565bb782c267f009e238b45565ed0dee745c687db3c9dee5aa31f10e7345fd180b4f98d5e423875e0f9877c25af77bd1139beb0018
7
- data.tar.gz: 4d0f0b9f678a810e83cc3bd67f894a3b8faa99a8369d710a6cb1a633684470e4e4acc3cd91b74e52c23469367d5c5e8bf46e772ef73eabee2e21b85539d66bd4
6
+ metadata.gz: adc05b1aebae80a7fe36642939153fef8b9f65880634dfa507561fca9be29ff648142833ccf202aefbe1bbf2022ccf75d1de2bcb0c5e34a2ddd70bd29cf3f11f
7
+ data.tar.gz: d4de7e6040bb0d2cff0a5f64fc6021fec2092768a8c5437ac6dc1d03f5218b0301a9b1165791d4054a1d8b1f8e0b2f0560ea03f4b199fd378560e13c82f3563e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.128.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - Adds support for creating Webapps accessible from a VPC.
8
+
4
9
  1.127.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.127.0
1
+ 1.128.0
@@ -1606,7 +1606,15 @@ module Aws::Transfer
1606
1606
  end
1607
1607
 
1608
1608
  # Creates a web app based on specified parameters, and returns the ID
1609
- # for the new web app.
1609
+ # for the new web app. You can configure the web app to be publicly
1610
+ # accessible or hosted within a VPC.
1611
+ #
1612
+ # For more information about using VPC endpoints with Transfer Family,
1613
+ # see [Create a Transfer Family web app in a VPC][1].
1614
+ #
1615
+ #
1616
+ #
1617
+ # [1]: https://docs.aws.amazon.com/transfer/latest/userguide/create-webapp-in-vpc.html
1610
1618
  #
1611
1619
  # @option params [required, Types::WebAppIdentityProviderDetails] :identity_provider_details
1612
1620
  # You can provide a structure that contains the details for the identity
@@ -1645,6 +1653,10 @@ module Aws::Transfer
1645
1653
  # If you are creating the web app in an Amazon Web Services GovCloud
1646
1654
  # (US) Region, you can set this parameter to `FIPS`.
1647
1655
  #
1656
+ # @option params [Types::WebAppEndpointDetails] :endpoint_details
1657
+ # The endpoint configuration for the web app. You can specify whether
1658
+ # the web app endpoint is publicly accessible or hosted within a VPC.
1659
+ #
1648
1660
  # @return [Types::CreateWebAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1649
1661
  #
1650
1662
  # * {Types::CreateWebAppResponse#web_app_id #web_app_id} => String
@@ -1669,6 +1681,13 @@ module Aws::Transfer
1669
1681
  # },
1670
1682
  # ],
1671
1683
  # web_app_endpoint_policy: "FIPS", # accepts FIPS, STANDARD
1684
+ # endpoint_details: {
1685
+ # vpc: {
1686
+ # subnet_ids: ["SubnetId"],
1687
+ # vpc_id: "VpcId",
1688
+ # security_group_ids: ["SecurityGroupId"],
1689
+ # },
1690
+ # },
1672
1691
  # })
1673
1692
  #
1674
1693
  # @example Response structure
@@ -2776,7 +2795,16 @@ module Aws::Transfer
2776
2795
  req.send_request(options)
2777
2796
  end
2778
2797
 
2779
- # Describes the web app that's identified by `WebAppId`.
2798
+ # Describes the web app that's identified by `WebAppId`. The response
2799
+ # includes endpoint configuration details such as whether the web app is
2800
+ # publicly accessible or VPC hosted.
2801
+ #
2802
+ # For more information about using VPC endpoints with Transfer Family,
2803
+ # see [Create a Transfer Family web app in a VPC][1].
2804
+ #
2805
+ #
2806
+ #
2807
+ # [1]: https://docs.aws.amazon.com/transfer/latest/userguide/create-webapp-in-vpc.html
2780
2808
  #
2781
2809
  # @option params [required, String] :web_app_id
2782
2810
  # Provide the unique identifier for the web app.
@@ -2805,6 +2833,11 @@ module Aws::Transfer
2805
2833
  # resp.web_app.tags[0].key #=> String
2806
2834
  # resp.web_app.tags[0].value #=> String
2807
2835
  # resp.web_app.web_app_endpoint_policy #=> String, one of "FIPS", "STANDARD"
2836
+ # resp.web_app.endpoint_type #=> String, one of "PUBLIC", "VPC"
2837
+ # resp.web_app.described_endpoint_details.vpc.subnet_ids #=> Array
2838
+ # resp.web_app.described_endpoint_details.vpc.subnet_ids[0] #=> String
2839
+ # resp.web_app.described_endpoint_details.vpc.vpc_id #=> String
2840
+ # resp.web_app.described_endpoint_details.vpc.vpc_endpoint_id #=> String
2808
2841
  #
2809
2842
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeWebApp AWS API Documentation
2810
2843
  #
@@ -3807,7 +3840,15 @@ module Aws::Transfer
3807
3840
  end
3808
3841
 
3809
3842
  # Lists all web apps associated with your Amazon Web Services account
3810
- # for your current region.
3843
+ # for your current region. The response includes the endpoint type for
3844
+ # each web app, showing whether it is publicly accessible or VPC hosted.
3845
+ #
3846
+ # For more information about using VPC endpoints with Transfer Family,
3847
+ # see [Create a Transfer Family web app in a VPC][1].
3848
+ #
3849
+ #
3850
+ #
3851
+ # [1]: https://docs.aws.amazon.com/transfer/latest/userguide/create-webapp-in-vpc.html
3811
3852
  #
3812
3853
  # @option params [Integer] :max_results
3813
3854
  # The maximum number of items to return.
@@ -3839,6 +3880,7 @@ module Aws::Transfer
3839
3880
  # resp.web_apps[0].web_app_id #=> String
3840
3881
  # resp.web_apps[0].access_endpoint #=> String
3841
3882
  # resp.web_apps[0].web_app_endpoint #=> String
3883
+ # resp.web_apps[0].endpoint_type #=> String, one of "PUBLIC", "VPC"
3842
3884
  #
3843
3885
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ListWebApps AWS API Documentation
3844
3886
  #
@@ -5564,7 +5606,15 @@ module Aws::Transfer
5564
5606
  end
5565
5607
 
5566
5608
  # Assigns new properties to a web app. You can modify the access point,
5567
- # identity provider details, and the web app units.
5609
+ # identity provider details, endpoint configuration, and the web app
5610
+ # units.
5611
+ #
5612
+ # For more information about using VPC endpoints with Transfer Family,
5613
+ # see [Create a Transfer Family web app in a VPC][1].
5614
+ #
5615
+ #
5616
+ #
5617
+ # [1]: https://docs.aws.amazon.com/transfer/latest/userguide/create-webapp-in-vpc.html
5568
5618
  #
5569
5619
  # @option params [required, String] :web_app_id
5570
5620
  # Provide the identifier of the web app that you are updating.
@@ -5582,6 +5632,10 @@ module Aws::Transfer
5582
5632
  # A union that contains the value for number of concurrent connections
5583
5633
  # or the user sessions on your web app.
5584
5634
  #
5635
+ # @option params [Types::UpdateWebAppEndpointDetails] :endpoint_details
5636
+ # The updated endpoint configuration for the web app. You can modify the
5637
+ # endpoint type and VPC configuration settings.
5638
+ #
5585
5639
  # @return [Types::UpdateWebAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5586
5640
  #
5587
5641
  # * {Types::UpdateWebAppResponse#web_app_id #web_app_id} => String
@@ -5599,6 +5653,11 @@ module Aws::Transfer
5599
5653
  # web_app_units: {
5600
5654
  # provisioned: 1,
5601
5655
  # },
5656
+ # endpoint_details: {
5657
+ # vpc: {
5658
+ # subnet_ids: ["SubnetId"],
5659
+ # },
5660
+ # },
5602
5661
  # })
5603
5662
  #
5604
5663
  # @example Response structure
@@ -5673,7 +5732,7 @@ module Aws::Transfer
5673
5732
  tracer: tracer
5674
5733
  )
5675
5734
  context[:gem_name] = 'aws-sdk-transfer'
5676
- context[:gem_version] = '1.127.0'
5735
+ context[:gem_version] = '1.128.0'
5677
5736
  Seahorse::Client::Request.new(handlers, context)
5678
5737
  end
5679
5738
 
@@ -126,7 +126,9 @@ module Aws::Transfer
126
126
  DescribedUser = Shapes::StructureShape.new(name: 'DescribedUser')
127
127
  DescribedWebApp = Shapes::StructureShape.new(name: 'DescribedWebApp')
128
128
  DescribedWebAppCustomization = Shapes::StructureShape.new(name: 'DescribedWebAppCustomization')
129
+ DescribedWebAppEndpointDetails = Shapes::UnionShape.new(name: 'DescribedWebAppEndpointDetails')
129
130
  DescribedWebAppIdentityProviderDetails = Shapes::UnionShape.new(name: 'DescribedWebAppIdentityProviderDetails')
131
+ DescribedWebAppVpcConfig = Shapes::StructureShape.new(name: 'DescribedWebAppVpcConfig')
130
132
  DescribedWorkflow = Shapes::StructureShape.new(name: 'DescribedWorkflow')
131
133
  Description = Shapes::StringShape.new(name: 'Description')
132
134
  DirectoryId = Shapes::StringShape.new(name: 'DirectoryId')
@@ -371,10 +373,12 @@ module Aws::Transfer
371
373
  UpdateUserResponse = Shapes::StructureShape.new(name: 'UpdateUserResponse')
372
374
  UpdateWebAppCustomizationRequest = Shapes::StructureShape.new(name: 'UpdateWebAppCustomizationRequest')
373
375
  UpdateWebAppCustomizationResponse = Shapes::StructureShape.new(name: 'UpdateWebAppCustomizationResponse')
376
+ UpdateWebAppEndpointDetails = Shapes::UnionShape.new(name: 'UpdateWebAppEndpointDetails')
374
377
  UpdateWebAppIdentityCenterConfig = Shapes::StructureShape.new(name: 'UpdateWebAppIdentityCenterConfig')
375
378
  UpdateWebAppIdentityProviderDetails = Shapes::UnionShape.new(name: 'UpdateWebAppIdentityProviderDetails')
376
379
  UpdateWebAppRequest = Shapes::StructureShape.new(name: 'UpdateWebAppRequest')
377
380
  UpdateWebAppResponse = Shapes::StructureShape.new(name: 'UpdateWebAppResponse')
381
+ UpdateWebAppVpcConfig = Shapes::StructureShape.new(name: 'UpdateWebAppVpcConfig')
378
382
  Url = Shapes::StringShape.new(name: 'Url')
379
383
  UserCount = Shapes::IntegerShape.new(name: 'UserCount')
380
384
  UserDetails = Shapes::StructureShape.new(name: 'UserDetails')
@@ -385,7 +389,9 @@ module Aws::Transfer
385
389
  VpcLatticeResourceConfigurationArn = Shapes::StringShape.new(name: 'VpcLatticeResourceConfigurationArn')
386
390
  WebAppAccessEndpoint = Shapes::StringShape.new(name: 'WebAppAccessEndpoint')
387
391
  WebAppEndpoint = Shapes::StringShape.new(name: 'WebAppEndpoint')
392
+ WebAppEndpointDetails = Shapes::UnionShape.new(name: 'WebAppEndpointDetails')
388
393
  WebAppEndpointPolicy = Shapes::StringShape.new(name: 'WebAppEndpointPolicy')
394
+ WebAppEndpointType = Shapes::StringShape.new(name: 'WebAppEndpointType')
389
395
  WebAppFaviconFile = Shapes::BlobShape.new(name: 'WebAppFaviconFile')
390
396
  WebAppId = Shapes::StringShape.new(name: 'WebAppId')
391
397
  WebAppIdentityProviderDetails = Shapes::UnionShape.new(name: 'WebAppIdentityProviderDetails')
@@ -393,6 +399,7 @@ module Aws::Transfer
393
399
  WebAppTitle = Shapes::StringShape.new(name: 'WebAppTitle')
394
400
  WebAppUnitCount = Shapes::IntegerShape.new(name: 'WebAppUnitCount')
395
401
  WebAppUnits = Shapes::UnionShape.new(name: 'WebAppUnits')
402
+ WebAppVpcConfig = Shapes::StructureShape.new(name: 'WebAppVpcConfig')
396
403
  WorkflowDescription = Shapes::StringShape.new(name: 'WorkflowDescription')
397
404
  WorkflowDetail = Shapes::StructureShape.new(name: 'WorkflowDetail')
398
405
  WorkflowDetails = Shapes::StructureShape.new(name: 'WorkflowDetails')
@@ -546,6 +553,7 @@ module Aws::Transfer
546
553
  CreateWebAppRequest.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
547
554
  CreateWebAppRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
548
555
  CreateWebAppRequest.add_member(:web_app_endpoint_policy, Shapes::ShapeRef.new(shape: WebAppEndpointPolicy, location_name: "WebAppEndpointPolicy"))
556
+ CreateWebAppRequest.add_member(:endpoint_details, Shapes::ShapeRef.new(shape: WebAppEndpointDetails, location_name: "EndpointDetails"))
549
557
  CreateWebAppRequest.struct_class = Types::CreateWebAppRequest
550
558
 
551
559
  CreateWebAppResponse.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
@@ -866,6 +874,8 @@ module Aws::Transfer
866
874
  DescribedWebApp.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
867
875
  DescribedWebApp.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
868
876
  DescribedWebApp.add_member(:web_app_endpoint_policy, Shapes::ShapeRef.new(shape: WebAppEndpointPolicy, location_name: "WebAppEndpointPolicy"))
877
+ DescribedWebApp.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: WebAppEndpointType, location_name: "EndpointType"))
878
+ DescribedWebApp.add_member(:described_endpoint_details, Shapes::ShapeRef.new(shape: DescribedWebAppEndpointDetails, location_name: "DescribedEndpointDetails"))
869
879
  DescribedWebApp.struct_class = Types::DescribedWebApp
870
880
 
871
881
  DescribedWebAppCustomization.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
@@ -875,12 +885,23 @@ module Aws::Transfer
875
885
  DescribedWebAppCustomization.add_member(:favicon_file, Shapes::ShapeRef.new(shape: WebAppFaviconFile, location_name: "FaviconFile"))
876
886
  DescribedWebAppCustomization.struct_class = Types::DescribedWebAppCustomization
877
887
 
888
+ DescribedWebAppEndpointDetails.add_member(:vpc, Shapes::ShapeRef.new(shape: DescribedWebAppVpcConfig, location_name: "Vpc"))
889
+ DescribedWebAppEndpointDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
890
+ DescribedWebAppEndpointDetails.add_member_subclass(:vpc, Types::DescribedWebAppEndpointDetails::Vpc)
891
+ DescribedWebAppEndpointDetails.add_member_subclass(:unknown, Types::DescribedWebAppEndpointDetails::Unknown)
892
+ DescribedWebAppEndpointDetails.struct_class = Types::DescribedWebAppEndpointDetails
893
+
878
894
  DescribedWebAppIdentityProviderDetails.add_member(:identity_center_config, Shapes::ShapeRef.new(shape: DescribedIdentityCenterConfig, location_name: "IdentityCenterConfig"))
879
895
  DescribedWebAppIdentityProviderDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
880
896
  DescribedWebAppIdentityProviderDetails.add_member_subclass(:identity_center_config, Types::DescribedWebAppIdentityProviderDetails::IdentityCenterConfig)
881
897
  DescribedWebAppIdentityProviderDetails.add_member_subclass(:unknown, Types::DescribedWebAppIdentityProviderDetails::Unknown)
882
898
  DescribedWebAppIdentityProviderDetails.struct_class = Types::DescribedWebAppIdentityProviderDetails
883
899
 
900
+ DescribedWebAppVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
901
+ DescribedWebAppVpcConfig.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
902
+ DescribedWebAppVpcConfig.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "VpcEndpointId"))
903
+ DescribedWebAppVpcConfig.struct_class = Types::DescribedWebAppVpcConfig
904
+
884
905
  DescribedWorkflow.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
885
906
  DescribedWorkflow.add_member(:description, Shapes::ShapeRef.new(shape: WorkflowDescription, location_name: "Description"))
886
907
  DescribedWorkflow.add_member(:steps, Shapes::ShapeRef.new(shape: WorkflowSteps, location_name: "Steps"))
@@ -1201,6 +1222,7 @@ module Aws::Transfer
1201
1222
  ListedWebApp.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
1202
1223
  ListedWebApp.add_member(:access_endpoint, Shapes::ShapeRef.new(shape: WebAppAccessEndpoint, location_name: "AccessEndpoint"))
1203
1224
  ListedWebApp.add_member(:web_app_endpoint, Shapes::ShapeRef.new(shape: WebAppEndpoint, location_name: "WebAppEndpoint"))
1225
+ ListedWebApp.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: WebAppEndpointType, location_name: "EndpointType"))
1204
1226
  ListedWebApp.struct_class = Types::ListedWebApp
1205
1227
 
1206
1228
  ListedWebApps.member = Shapes::ShapeRef.new(shape: ListedWebApp)
@@ -1519,6 +1541,12 @@ module Aws::Transfer
1519
1541
  UpdateWebAppCustomizationResponse.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
1520
1542
  UpdateWebAppCustomizationResponse.struct_class = Types::UpdateWebAppCustomizationResponse
1521
1543
 
1544
+ UpdateWebAppEndpointDetails.add_member(:vpc, Shapes::ShapeRef.new(shape: UpdateWebAppVpcConfig, location_name: "Vpc"))
1545
+ UpdateWebAppEndpointDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1546
+ UpdateWebAppEndpointDetails.add_member_subclass(:vpc, Types::UpdateWebAppEndpointDetails::Vpc)
1547
+ UpdateWebAppEndpointDetails.add_member_subclass(:unknown, Types::UpdateWebAppEndpointDetails::Unknown)
1548
+ UpdateWebAppEndpointDetails.struct_class = Types::UpdateWebAppEndpointDetails
1549
+
1522
1550
  UpdateWebAppIdentityCenterConfig.add_member(:role, Shapes::ShapeRef.new(shape: Role, location_name: "Role"))
1523
1551
  UpdateWebAppIdentityCenterConfig.struct_class = Types::UpdateWebAppIdentityCenterConfig
1524
1552
 
@@ -1532,16 +1560,26 @@ module Aws::Transfer
1532
1560
  UpdateWebAppRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: UpdateWebAppIdentityProviderDetails, location_name: "IdentityProviderDetails"))
1533
1561
  UpdateWebAppRequest.add_member(:access_endpoint, Shapes::ShapeRef.new(shape: WebAppAccessEndpoint, location_name: "AccessEndpoint"))
1534
1562
  UpdateWebAppRequest.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
1563
+ UpdateWebAppRequest.add_member(:endpoint_details, Shapes::ShapeRef.new(shape: UpdateWebAppEndpointDetails, location_name: "EndpointDetails"))
1535
1564
  UpdateWebAppRequest.struct_class = Types::UpdateWebAppRequest
1536
1565
 
1537
1566
  UpdateWebAppResponse.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
1538
1567
  UpdateWebAppResponse.struct_class = Types::UpdateWebAppResponse
1539
1568
 
1569
+ UpdateWebAppVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
1570
+ UpdateWebAppVpcConfig.struct_class = Types::UpdateWebAppVpcConfig
1571
+
1540
1572
  UserDetails.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location_name: "UserName"))
1541
1573
  UserDetails.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
1542
1574
  UserDetails.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
1543
1575
  UserDetails.struct_class = Types::UserDetails
1544
1576
 
1577
+ WebAppEndpointDetails.add_member(:vpc, Shapes::ShapeRef.new(shape: WebAppVpcConfig, location_name: "Vpc"))
1578
+ WebAppEndpointDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1579
+ WebAppEndpointDetails.add_member_subclass(:vpc, Types::WebAppEndpointDetails::Vpc)
1580
+ WebAppEndpointDetails.add_member_subclass(:unknown, Types::WebAppEndpointDetails::Unknown)
1581
+ WebAppEndpointDetails.struct_class = Types::WebAppEndpointDetails
1582
+
1545
1583
  WebAppIdentityProviderDetails.add_member(:identity_center_config, Shapes::ShapeRef.new(shape: IdentityCenterConfig, location_name: "IdentityCenterConfig"))
1546
1584
  WebAppIdentityProviderDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1547
1585
  WebAppIdentityProviderDetails.add_member_subclass(:identity_center_config, Types::WebAppIdentityProviderDetails::IdentityCenterConfig)
@@ -1554,6 +1592,11 @@ module Aws::Transfer
1554
1592
  WebAppUnits.add_member_subclass(:unknown, Types::WebAppUnits::Unknown)
1555
1593
  WebAppUnits.struct_class = Types::WebAppUnits
1556
1594
 
1595
+ WebAppVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
1596
+ WebAppVpcConfig.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
1597
+ WebAppVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
1598
+ WebAppVpcConfig.struct_class = Types::WebAppVpcConfig
1599
+
1557
1600
  WorkflowDetail.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
1558
1601
  WorkflowDetail.add_member(:execution_role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "ExecutionRole"))
1559
1602
  WorkflowDetail.struct_class = Types::WorkflowDetail
@@ -1378,6 +1378,11 @@ module Aws::Transfer
1378
1378
  # (US) Region, you can set this parameter to `FIPS`.
1379
1379
  # @return [String]
1380
1380
  #
1381
+ # @!attribute [rw] endpoint_details
1382
+ # The endpoint configuration for the web app. You can specify whether
1383
+ # the web app endpoint is publicly accessible or hosted within a VPC.
1384
+ # @return [Types::WebAppEndpointDetails]
1385
+ #
1381
1386
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateWebAppRequest AWS API Documentation
1382
1387
  #
1383
1388
  class CreateWebAppRequest < Struct.new(
@@ -1385,7 +1390,8 @@ module Aws::Transfer
1385
1390
  :access_endpoint,
1386
1391
  :web_app_units,
1387
1392
  :tags,
1388
- :web_app_endpoint_policy)
1393
+ :web_app_endpoint_policy,
1394
+ :endpoint_details)
1389
1395
  SENSITIVE = []
1390
1396
  include Aws::Structure
1391
1397
  end
@@ -3531,6 +3537,17 @@ module Aws::Transfer
3531
3537
  # the web app endpoint is FIPS-compliant.
3532
3538
  # @return [String]
3533
3539
  #
3540
+ # @!attribute [rw] endpoint_type
3541
+ # The type of endpoint hosting the web app. Valid values are `PUBLIC`
3542
+ # for publicly accessible endpoints and `VPC` for VPC-hosted endpoints
3543
+ # that provide network isolation.
3544
+ # @return [String]
3545
+ #
3546
+ # @!attribute [rw] described_endpoint_details
3547
+ # The endpoint configuration details for the web app, including VPC
3548
+ # settings if the endpoint is hosted within a VPC.
3549
+ # @return [Types::DescribedWebAppEndpointDetails]
3550
+ #
3534
3551
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedWebApp AWS API Documentation
3535
3552
  #
3536
3553
  class DescribedWebApp < Struct.new(
@@ -3541,7 +3558,9 @@ module Aws::Transfer
3541
3558
  :web_app_endpoint,
3542
3559
  :web_app_units,
3543
3560
  :tags,
3544
- :web_app_endpoint_policy)
3561
+ :web_app_endpoint_policy,
3562
+ :endpoint_type,
3563
+ :described_endpoint_details)
3545
3564
  SENSITIVE = []
3546
3565
  include Aws::Structure
3547
3566
  end
@@ -3582,6 +3601,30 @@ module Aws::Transfer
3582
3601
  include Aws::Structure
3583
3602
  end
3584
3603
 
3604
+ # Contains the endpoint configuration details for a web app, including
3605
+ # VPC configuration when the endpoint is hosted within a VPC.
3606
+ #
3607
+ # @note DescribedWebAppEndpointDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DescribedWebAppEndpointDetails corresponding to the set member.
3608
+ #
3609
+ # @!attribute [rw] vpc
3610
+ # The VPC configuration details when the web app endpoint is hosted
3611
+ # within a VPC. This includes the VPC ID, subnet IDs, and VPC endpoint
3612
+ # ID.
3613
+ # @return [Types::DescribedWebAppVpcConfig]
3614
+ #
3615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedWebAppEndpointDetails AWS API Documentation
3616
+ #
3617
+ class DescribedWebAppEndpointDetails < Struct.new(
3618
+ :vpc,
3619
+ :unknown)
3620
+ SENSITIVE = []
3621
+ include Aws::Structure
3622
+ include Aws::Structure::Union
3623
+
3624
+ class Vpc < DescribedWebAppEndpointDetails; end
3625
+ class Unknown < DescribedWebAppEndpointDetails; end
3626
+ end
3627
+
3585
3628
  # Returns a structure that contains the identity provider details for
3586
3629
  # your web app.
3587
3630
  #
@@ -3606,6 +3649,34 @@ module Aws::Transfer
3606
3649
  class Unknown < DescribedWebAppIdentityProviderDetails; end
3607
3650
  end
3608
3651
 
3652
+ # Contains the VPC configuration details for a web app endpoint,
3653
+ # including the VPC identifier, subnet IDs, and VPC endpoint ID used for
3654
+ # hosting the endpoint.
3655
+ #
3656
+ # @!attribute [rw] subnet_ids
3657
+ # The list of subnet IDs within the VPC where the web app endpoint is
3658
+ # deployed. These subnets must be in the same VPC and provide network
3659
+ # connectivity for the endpoint.
3660
+ # @return [Array<String>]
3661
+ #
3662
+ # @!attribute [rw] vpc_id
3663
+ # The identifier of the VPC where the web app endpoint is hosted.
3664
+ # @return [String]
3665
+ #
3666
+ # @!attribute [rw] vpc_endpoint_id
3667
+ # The identifier of the VPC endpoint created for the web app.
3668
+ # @return [String]
3669
+ #
3670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedWebAppVpcConfig AWS API Documentation
3671
+ #
3672
+ class DescribedWebAppVpcConfig < Struct.new(
3673
+ :subnet_ids,
3674
+ :vpc_id,
3675
+ :vpc_endpoint_id)
3676
+ SENSITIVE = []
3677
+ include Aws::Structure
3678
+ end
3679
+
3609
3680
  # Describes the properties of the specified workflow
3610
3681
  #
3611
3682
  # @!attribute [rw] arn
@@ -5514,13 +5585,20 @@ module Aws::Transfer
5514
5585
  # on CloudFront.
5515
5586
  # @return [String]
5516
5587
  #
5588
+ # @!attribute [rw] endpoint_type
5589
+ # The type of endpoint hosting the web app. Valid values are `PUBLIC`
5590
+ # for publicly accessible endpoints and `VPC` for VPC-hosted
5591
+ # endpoints.
5592
+ # @return [String]
5593
+ #
5517
5594
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ListedWebApp AWS API Documentation
5518
5595
  #
5519
5596
  class ListedWebApp < Struct.new(
5520
5597
  :arn,
5521
5598
  :web_app_id,
5522
5599
  :access_endpoint,
5523
- :web_app_endpoint)
5600
+ :web_app_endpoint,
5601
+ :endpoint_type)
5524
5602
  SENSITIVE = []
5525
5603
  include Aws::Structure
5526
5604
  end
@@ -7692,6 +7770,29 @@ module Aws::Transfer
7692
7770
  include Aws::Structure
7693
7771
  end
7694
7772
 
7773
+ # Contains the endpoint configuration details for updating a web app,
7774
+ # including VPC settings for endpoints hosted within a VPC.
7775
+ #
7776
+ # @note UpdateWebAppEndpointDetails is a union - when making an API calls you must set exactly one of the members.
7777
+ #
7778
+ # @!attribute [rw] vpc
7779
+ # The VPC configuration details for updating a web app endpoint hosted
7780
+ # within a VPC. This includes the subnet IDs for endpoint deployment.
7781
+ # @return [Types::UpdateWebAppVpcConfig]
7782
+ #
7783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebAppEndpointDetails AWS API Documentation
7784
+ #
7785
+ class UpdateWebAppEndpointDetails < Struct.new(
7786
+ :vpc,
7787
+ :unknown)
7788
+ SENSITIVE = []
7789
+ include Aws::Structure
7790
+ include Aws::Structure::Union
7791
+
7792
+ class Vpc < UpdateWebAppEndpointDetails; end
7793
+ class Unknown < UpdateWebAppEndpointDetails; end
7794
+ end
7795
+
7695
7796
  # A structure that describes the values to use for the IAM Identity
7696
7797
  # Center settings when you update a web app.
7697
7798
  #
@@ -7749,13 +7850,19 @@ module Aws::Transfer
7749
7850
  # or the user sessions on your web app.
7750
7851
  # @return [Types::WebAppUnits]
7751
7852
  #
7853
+ # @!attribute [rw] endpoint_details
7854
+ # The updated endpoint configuration for the web app. You can modify
7855
+ # the endpoint type and VPC configuration settings.
7856
+ # @return [Types::UpdateWebAppEndpointDetails]
7857
+ #
7752
7858
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebAppRequest AWS API Documentation
7753
7859
  #
7754
7860
  class UpdateWebAppRequest < Struct.new(
7755
7861
  :web_app_id,
7756
7862
  :identity_provider_details,
7757
7863
  :access_endpoint,
7758
- :web_app_units)
7864
+ :web_app_units,
7865
+ :endpoint_details)
7759
7866
  SENSITIVE = []
7760
7867
  include Aws::Structure
7761
7868
  end
@@ -7772,6 +7879,23 @@ module Aws::Transfer
7772
7879
  include Aws::Structure
7773
7880
  end
7774
7881
 
7882
+ # Contains the VPC configuration settings for updating a web app
7883
+ # endpoint, including the subnet IDs where the endpoint should be
7884
+ # deployed.
7885
+ #
7886
+ # @!attribute [rw] subnet_ids
7887
+ # The list of subnet IDs within the VPC where the web app endpoint
7888
+ # should be deployed during the update operation.
7889
+ # @return [Array<String>]
7890
+ #
7891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebAppVpcConfig AWS API Documentation
7892
+ #
7893
+ class UpdateWebAppVpcConfig < Struct.new(
7894
+ :subnet_ids)
7895
+ SENSITIVE = []
7896
+ include Aws::Structure
7897
+ end
7898
+
7775
7899
  # Specifies the user name, server ID, and session ID for a workflow.
7776
7900
  #
7777
7901
  # @!attribute [rw] user_name
@@ -7799,6 +7923,28 @@ module Aws::Transfer
7799
7923
  include Aws::Structure
7800
7924
  end
7801
7925
 
7926
+ # Contains the endpoint configuration for a web app, including VPC
7927
+ # settings when the endpoint is hosted within a VPC.
7928
+ #
7929
+ # @note WebAppEndpointDetails is a union - when making an API calls you must set exactly one of the members.
7930
+ #
7931
+ # @!attribute [rw] vpc
7932
+ # The VPC configuration for hosting the web app endpoint within a VPC.
7933
+ # @return [Types::WebAppVpcConfig]
7934
+ #
7935
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/WebAppEndpointDetails AWS API Documentation
7936
+ #
7937
+ class WebAppEndpointDetails < Struct.new(
7938
+ :vpc,
7939
+ :unknown)
7940
+ SENSITIVE = []
7941
+ include Aws::Structure
7942
+ include Aws::Structure::Union
7943
+
7944
+ class Vpc < WebAppEndpointDetails; end
7945
+ class Unknown < WebAppEndpointDetails; end
7946
+ end
7947
+
7802
7948
  # A union that contains the `IdentityCenterConfig` object.
7803
7949
  #
7804
7950
  # @note WebAppIdentityProviderDetails is a union - when making an API calls you must set exactly one of the members.
@@ -7851,6 +7997,36 @@ module Aws::Transfer
7851
7997
  class Unknown < WebAppUnits; end
7852
7998
  end
7853
7999
 
8000
+ # Contains the VPC configuration settings for hosting a web app
8001
+ # endpoint, including the VPC ID, subnet IDs, and security group IDs for
8002
+ # access control.
8003
+ #
8004
+ # @!attribute [rw] subnet_ids
8005
+ # The list of subnet IDs within the VPC where the web app endpoint
8006
+ # will be deployed. These subnets must be in the same VPC specified in
8007
+ # the VpcId parameter.
8008
+ # @return [Array<String>]
8009
+ #
8010
+ # @!attribute [rw] vpc_id
8011
+ # The identifier of the VPC where the web app endpoint will be hosted.
8012
+ # @return [String]
8013
+ #
8014
+ # @!attribute [rw] security_group_ids
8015
+ # The list of security group IDs that control access to the web app
8016
+ # endpoint. These security groups determine which sources can access
8017
+ # the endpoint based on IP addresses and port configurations.
8018
+ # @return [Array<String>]
8019
+ #
8020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/WebAppVpcConfig AWS API Documentation
8021
+ #
8022
+ class WebAppVpcConfig < Struct.new(
8023
+ :subnet_ids,
8024
+ :vpc_id,
8025
+ :security_group_ids)
8026
+ SENSITIVE = []
8027
+ include Aws::Structure
8028
+ end
8029
+
7854
8030
  # Specifies the workflow ID for the workflow to assign and the execution
7855
8031
  # role that's used for executing the workflow.
7856
8032
  #
@@ -55,7 +55,7 @@ module Aws::Transfer
55
55
  autoload :EndpointProvider, 'aws-sdk-transfer/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-transfer/endpoints'
57
57
 
58
- GEM_VERSION = '1.127.0'
58
+ GEM_VERSION = '1.128.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -319,7 +319,14 @@ module Aws
319
319
  value: ::String
320
320
  },
321
321
  ],
322
- ?web_app_endpoint_policy: ("FIPS" | "STANDARD")
322
+ ?web_app_endpoint_policy: ("FIPS" | "STANDARD"),
323
+ ?endpoint_details: {
324
+ vpc: {
325
+ subnet_ids: Array[::String]?,
326
+ vpc_id: ::String?,
327
+ security_group_ids: Array[::String]?
328
+ }?
329
+ }
323
330
  ) -> _CreateWebAppResponseSuccess
324
331
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWebAppResponseSuccess
325
332
 
@@ -1257,6 +1264,11 @@ module Aws
1257
1264
  ?access_endpoint: ::String,
1258
1265
  ?web_app_units: {
1259
1266
  provisioned: ::Integer?
1267
+ },
1268
+ ?endpoint_details: {
1269
+ vpc: {
1270
+ subnet_ids: Array[::String]?
1271
+ }?
1260
1272
  }
1261
1273
  ) -> _UpdateWebAppResponseSuccess
1262
1274
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWebAppResponseSuccess
data/sig/types.rbs CHANGED
@@ -186,6 +186,7 @@ module Aws::Transfer
186
186
  attr_accessor web_app_units: Types::WebAppUnits
187
187
  attr_accessor tags: ::Array[Types::Tag]
188
188
  attr_accessor web_app_endpoint_policy: ("FIPS" | "STANDARD")
189
+ attr_accessor endpoint_details: Types::WebAppEndpointDetails
189
190
  SENSITIVE: []
190
191
  end
191
192
 
@@ -627,6 +628,8 @@ module Aws::Transfer
627
628
  attr_accessor web_app_units: Types::WebAppUnits
628
629
  attr_accessor tags: ::Array[Types::Tag]
629
630
  attr_accessor web_app_endpoint_policy: ("FIPS" | "STANDARD")
631
+ attr_accessor endpoint_type: ("PUBLIC" | "VPC")
632
+ attr_accessor described_endpoint_details: Types::DescribedWebAppEndpointDetails
630
633
  SENSITIVE: []
631
634
  end
632
635
 
@@ -639,6 +642,17 @@ module Aws::Transfer
639
642
  SENSITIVE: [:logo_file, :favicon_file]
640
643
  end
641
644
 
645
+ class DescribedWebAppEndpointDetails
646
+ attr_accessor vpc: Types::DescribedWebAppVpcConfig
647
+ attr_accessor unknown: untyped
648
+ SENSITIVE: []
649
+
650
+ class Vpc < DescribedWebAppEndpointDetails
651
+ end
652
+ class Unknown < DescribedWebAppEndpointDetails
653
+ end
654
+ end
655
+
642
656
  class DescribedWebAppIdentityProviderDetails
643
657
  attr_accessor identity_center_config: Types::DescribedIdentityCenterConfig
644
658
  attr_accessor unknown: untyped
@@ -650,6 +664,13 @@ module Aws::Transfer
650
664
  end
651
665
  end
652
666
 
667
+ class DescribedWebAppVpcConfig
668
+ attr_accessor subnet_ids: ::Array[::String]
669
+ attr_accessor vpc_id: ::String
670
+ attr_accessor vpc_endpoint_id: ::String
671
+ SENSITIVE: []
672
+ end
673
+
653
674
  class DescribedWorkflow
654
675
  attr_accessor arn: ::String
655
676
  attr_accessor description: ::String
@@ -1061,6 +1082,7 @@ module Aws::Transfer
1061
1082
  attr_accessor web_app_id: ::String
1062
1083
  attr_accessor access_endpoint: ::String
1063
1084
  attr_accessor web_app_endpoint: ::String
1085
+ attr_accessor endpoint_type: ("PUBLIC" | "VPC")
1064
1086
  SENSITIVE: []
1065
1087
  end
1066
1088
 
@@ -1458,6 +1480,17 @@ module Aws::Transfer
1458
1480
  SENSITIVE: []
1459
1481
  end
1460
1482
 
1483
+ class UpdateWebAppEndpointDetails
1484
+ attr_accessor vpc: Types::UpdateWebAppVpcConfig
1485
+ attr_accessor unknown: untyped
1486
+ SENSITIVE: []
1487
+
1488
+ class Vpc < UpdateWebAppEndpointDetails
1489
+ end
1490
+ class Unknown < UpdateWebAppEndpointDetails
1491
+ end
1492
+ end
1493
+
1461
1494
  class UpdateWebAppIdentityCenterConfig
1462
1495
  attr_accessor role: ::String
1463
1496
  SENSITIVE: []
@@ -1479,6 +1512,7 @@ module Aws::Transfer
1479
1512
  attr_accessor identity_provider_details: Types::UpdateWebAppIdentityProviderDetails
1480
1513
  attr_accessor access_endpoint: ::String
1481
1514
  attr_accessor web_app_units: Types::WebAppUnits
1515
+ attr_accessor endpoint_details: Types::UpdateWebAppEndpointDetails
1482
1516
  SENSITIVE: []
1483
1517
  end
1484
1518
 
@@ -1487,6 +1521,11 @@ module Aws::Transfer
1487
1521
  SENSITIVE: []
1488
1522
  end
1489
1523
 
1524
+ class UpdateWebAppVpcConfig
1525
+ attr_accessor subnet_ids: ::Array[::String]
1526
+ SENSITIVE: []
1527
+ end
1528
+
1490
1529
  class UserDetails
1491
1530
  attr_accessor user_name: ::String
1492
1531
  attr_accessor server_id: ::String
@@ -1494,6 +1533,17 @@ module Aws::Transfer
1494
1533
  SENSITIVE: []
1495
1534
  end
1496
1535
 
1536
+ class WebAppEndpointDetails
1537
+ attr_accessor vpc: Types::WebAppVpcConfig
1538
+ attr_accessor unknown: untyped
1539
+ SENSITIVE: []
1540
+
1541
+ class Vpc < WebAppEndpointDetails
1542
+ end
1543
+ class Unknown < WebAppEndpointDetails
1544
+ end
1545
+ end
1546
+
1497
1547
  class WebAppIdentityProviderDetails
1498
1548
  attr_accessor identity_center_config: Types::IdentityCenterConfig
1499
1549
  attr_accessor unknown: untyped
@@ -1516,6 +1566,13 @@ module Aws::Transfer
1516
1566
  end
1517
1567
  end
1518
1568
 
1569
+ class WebAppVpcConfig
1570
+ attr_accessor subnet_ids: ::Array[::String]
1571
+ attr_accessor vpc_id: ::String
1572
+ attr_accessor security_group_ids: ::Array[::String]
1573
+ SENSITIVE: []
1574
+ end
1575
+
1519
1576
  class WorkflowDetail
1520
1577
  attr_accessor workflow_id: ::String
1521
1578
  attr_accessor execution_role: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.127.0
4
+ version: 1.128.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement