aws-sdk-apprunner 1.16.0 → 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -62,12 +62,17 @@ module Aws::AppRunner
62
62
  # A description of the domain name that's being associated.
63
63
  # @return [Types::CustomDomain]
64
64
  #
65
+ # @!attribute [rw] vpc_dns_targets
66
+ # DNS Target records for the custom domains of this Amazon VPC.
67
+ # @return [Array<Types::VpcDNSTarget>]
68
+ #
65
69
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/AssociateCustomDomainResponse AWS API Documentation
66
70
  #
67
71
  class AssociateCustomDomainResponse < Struct.new(
68
72
  :dns_target,
69
73
  :service_arn,
70
- :custom_domain)
74
+ :custom_domain,
75
+ :vpc_dns_targets)
71
76
  SENSITIVE = []
72
77
  include Aws::Structure
73
78
  end
@@ -279,7 +284,7 @@ module Aws::AppRunner
279
284
  # {
280
285
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
281
286
  # code_configuration_values: {
282
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16
287
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
283
288
  # build_command: "BuildCommand",
284
289
  # start_command: "StartCommand",
285
290
  # port: "String",
@@ -327,7 +332,7 @@ module Aws::AppRunner
327
332
  # data as a hash:
328
333
  #
329
334
  # {
330
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16
335
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
331
336
  # build_command: "BuildCommand",
332
337
  # start_command: "StartCommand",
333
338
  # port: "String",
@@ -387,7 +392,7 @@ module Aws::AppRunner
387
392
  # code_configuration: {
388
393
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
389
394
  # code_configuration_values: {
390
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16
395
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
391
396
  # build_command: "BuildCommand",
392
397
  # start_command: "StartCommand",
393
398
  # port: "String",
@@ -730,7 +735,7 @@ module Aws::AppRunner
730
735
  # code_configuration: {
731
736
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
732
737
  # code_configuration_values: {
733
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16
738
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
734
739
  # build_command: "BuildCommand",
735
740
  # start_command: "StartCommand",
736
741
  # port: "String",
@@ -785,6 +790,9 @@ module Aws::AppRunner
785
790
  # egress_type: "DEFAULT", # accepts DEFAULT, VPC
786
791
  # vpc_connector_arn: "AppRunnerResourceArn",
787
792
  # },
793
+ # ingress_configuration: {
794
+ # is_publicly_accessible: false,
795
+ # },
788
796
  # },
789
797
  # observability_configuration: {
790
798
  # observability_enabled: false, # required
@@ -954,6 +962,70 @@ module Aws::AppRunner
954
962
  include Aws::Structure
955
963
  end
956
964
 
965
+ # @note When making an API call, you may pass CreateVpcIngressConnectionRequest
966
+ # data as a hash:
967
+ #
968
+ # {
969
+ # service_arn: "AppRunnerResourceArn", # required
970
+ # vpc_ingress_connection_name: "VpcIngressConnectionName", # required
971
+ # ingress_vpc_configuration: { # required
972
+ # vpc_id: "String",
973
+ # vpc_endpoint_id: "String",
974
+ # },
975
+ # tags: [
976
+ # {
977
+ # key: "TagKey",
978
+ # value: "TagValue",
979
+ # },
980
+ # ],
981
+ # }
982
+ #
983
+ # @!attribute [rw] service_arn
984
+ # The Amazon Resource Name (ARN) for this App Runner service that is
985
+ # used to create the VPC Ingress Connection resource.
986
+ # @return [String]
987
+ #
988
+ # @!attribute [rw] vpc_ingress_connection_name
989
+ # A name for the VPC Ingress Connection resource. It must be unique
990
+ # across all the active VPC Ingress Connections in your Amazon Web
991
+ # Services account in the Amazon Web Services Region.
992
+ # @return [String]
993
+ #
994
+ # @!attribute [rw] ingress_vpc_configuration
995
+ # Specifications for the customer’s Amazon VPC and the related Amazon
996
+ # Web Services PrivateLink VPC endpoint that are used to create the
997
+ # VPC Ingress Connection resource.
998
+ # @return [Types::IngressVpcConfiguration]
999
+ #
1000
+ # @!attribute [rw] tags
1001
+ # An optional list of metadata items that you can associate with the
1002
+ # VPC Ingress Connection resource. A tag is a key-value pair.
1003
+ # @return [Array<Types::Tag>]
1004
+ #
1005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnectionRequest AWS API Documentation
1006
+ #
1007
+ class CreateVpcIngressConnectionRequest < Struct.new(
1008
+ :service_arn,
1009
+ :vpc_ingress_connection_name,
1010
+ :ingress_vpc_configuration,
1011
+ :tags)
1012
+ SENSITIVE = []
1013
+ include Aws::Structure
1014
+ end
1015
+
1016
+ # @!attribute [rw] vpc_ingress_connection
1017
+ # A description of the App Runner VPC Ingress Connection resource
1018
+ # that's created by this request.
1019
+ # @return [Types::VpcIngressConnection]
1020
+ #
1021
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnectionResponse AWS API Documentation
1022
+ #
1023
+ class CreateVpcIngressConnectionResponse < Struct.new(
1024
+ :vpc_ingress_connection)
1025
+ SENSITIVE = []
1026
+ include Aws::Structure
1027
+ end
1028
+
957
1029
  # Describes a custom domain that's associated with an App Runner
958
1030
  # service.
959
1031
  #
@@ -1171,6 +1243,39 @@ module Aws::AppRunner
1171
1243
  include Aws::Structure
1172
1244
  end
1173
1245
 
1246
+ # @note When making an API call, you may pass DeleteVpcIngressConnectionRequest
1247
+ # data as a hash:
1248
+ #
1249
+ # {
1250
+ # vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
1251
+ # }
1252
+ #
1253
+ # @!attribute [rw] vpc_ingress_connection_arn
1254
+ # The Amazon Resource Name (ARN) of the App Runner VPC Ingress
1255
+ # Connection that you want to delete.
1256
+ # @return [String]
1257
+ #
1258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnectionRequest AWS API Documentation
1259
+ #
1260
+ class DeleteVpcIngressConnectionRequest < Struct.new(
1261
+ :vpc_ingress_connection_arn)
1262
+ SENSITIVE = []
1263
+ include Aws::Structure
1264
+ end
1265
+
1266
+ # @!attribute [rw] vpc_ingress_connection
1267
+ # A description of the App Runner VPC Ingress Connection that this
1268
+ # request just deleted.
1269
+ # @return [Types::VpcIngressConnection]
1270
+ #
1271
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnectionResponse AWS API Documentation
1272
+ #
1273
+ class DeleteVpcIngressConnectionResponse < Struct.new(
1274
+ :vpc_ingress_connection)
1275
+ SENSITIVE = []
1276
+ include Aws::Structure
1277
+ end
1278
+
1174
1279
  # @note When making an API call, you may pass DescribeAutoScalingConfigurationRequest
1175
1280
  # data as a hash:
1176
1281
  #
@@ -1266,6 +1371,10 @@ module Aws::AppRunner
1266
1371
  # `MaxResults` records per call.
1267
1372
  # @return [Array<Types::CustomDomain>]
1268
1373
  #
1374
+ # @!attribute [rw] vpc_dns_targets
1375
+ # DNS Target records for the custom domains of this Amazon VPC.
1376
+ # @return [Array<Types::VpcDNSTarget>]
1377
+ #
1269
1378
  # @!attribute [rw] next_token
1270
1379
  # The token that you can pass in a subsequent request to get the next
1271
1380
  # result page. It's returned in a paginated request.
@@ -1277,6 +1386,7 @@ module Aws::AppRunner
1277
1386
  :dns_target,
1278
1387
  :service_arn,
1279
1388
  :custom_domains,
1389
+ :vpc_dns_targets,
1280
1390
  :next_token)
1281
1391
  SENSITIVE = []
1282
1392
  include Aws::Structure
@@ -1387,6 +1497,39 @@ module Aws::AppRunner
1387
1497
  include Aws::Structure
1388
1498
  end
1389
1499
 
1500
+ # @note When making an API call, you may pass DescribeVpcIngressConnectionRequest
1501
+ # data as a hash:
1502
+ #
1503
+ # {
1504
+ # vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
1505
+ # }
1506
+ #
1507
+ # @!attribute [rw] vpc_ingress_connection_arn
1508
+ # The Amazon Resource Name (ARN) of the App Runner VPC Ingress
1509
+ # Connection that you want a description for.
1510
+ # @return [String]
1511
+ #
1512
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnectionRequest AWS API Documentation
1513
+ #
1514
+ class DescribeVpcIngressConnectionRequest < Struct.new(
1515
+ :vpc_ingress_connection_arn)
1516
+ SENSITIVE = []
1517
+ include Aws::Structure
1518
+ end
1519
+
1520
+ # @!attribute [rw] vpc_ingress_connection
1521
+ # A description of the App Runner VPC Ingress Connection that you
1522
+ # specified in this request.
1523
+ # @return [Types::VpcIngressConnection]
1524
+ #
1525
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnectionResponse AWS API Documentation
1526
+ #
1527
+ class DescribeVpcIngressConnectionResponse < Struct.new(
1528
+ :vpc_ingress_connection)
1529
+ SENSITIVE = []
1530
+ include Aws::Structure
1531
+ end
1532
+
1390
1533
  # @note When making an API call, you may pass DisassociateCustomDomainRequest
1391
1534
  # data as a hash:
1392
1535
  #
@@ -1428,12 +1571,17 @@ module Aws::AppRunner
1428
1571
  # A description of the domain name that's being disassociated.
1429
1572
  # @return [Types::CustomDomain]
1430
1573
  #
1574
+ # @!attribute [rw] vpc_dns_targets
1575
+ # DNS Target records for the custom domains of this Amazon VPC.
1576
+ # @return [Array<Types::VpcDNSTarget>]
1577
+ #
1431
1578
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomainResponse AWS API Documentation
1432
1579
  #
1433
1580
  class DisassociateCustomDomainResponse < Struct.new(
1434
1581
  :dns_target,
1435
1582
  :service_arn,
1436
- :custom_domain)
1583
+ :custom_domain,
1584
+ :vpc_dns_targets)
1437
1585
  SENSITIVE = []
1438
1586
  include Aws::Structure
1439
1587
  end
@@ -1658,6 +1806,59 @@ module Aws::AppRunner
1658
1806
  include Aws::Structure
1659
1807
  end
1660
1808
 
1809
+ # Network configuration settings for inbound network traffic.
1810
+ #
1811
+ # @note When making an API call, you may pass IngressConfiguration
1812
+ # data as a hash:
1813
+ #
1814
+ # {
1815
+ # is_publicly_accessible: false,
1816
+ # }
1817
+ #
1818
+ # @!attribute [rw] is_publicly_accessible
1819
+ # Specifies whether your App Runner service is publicly accessible. To
1820
+ # make the service publicly accessible set it to `True`. To make the
1821
+ # service privately accessible, from only within an Amazon VPC set it
1822
+ # to `False`.
1823
+ # @return [Boolean]
1824
+ #
1825
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/IngressConfiguration AWS API Documentation
1826
+ #
1827
+ class IngressConfiguration < Struct.new(
1828
+ :is_publicly_accessible)
1829
+ SENSITIVE = []
1830
+ include Aws::Structure
1831
+ end
1832
+
1833
+ # The configuration of your VPC and the associated VPC endpoint. The VPC
1834
+ # endpoint is an Amazon Web Services PrivateLink resource that allows
1835
+ # access to your App Runner services from within an Amazon VPC.
1836
+ #
1837
+ # @note When making an API call, you may pass IngressVpcConfiguration
1838
+ # data as a hash:
1839
+ #
1840
+ # {
1841
+ # vpc_id: "String",
1842
+ # vpc_endpoint_id: "String",
1843
+ # }
1844
+ #
1845
+ # @!attribute [rw] vpc_id
1846
+ # The ID of the VPC that is used for the VPC endpoint.
1847
+ # @return [String]
1848
+ #
1849
+ # @!attribute [rw] vpc_endpoint_id
1850
+ # The ID of the VPC endpoint that your App Runner service connects to.
1851
+ # @return [String]
1852
+ #
1853
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/IngressVpcConfiguration AWS API Documentation
1854
+ #
1855
+ class IngressVpcConfiguration < Struct.new(
1856
+ :vpc_id,
1857
+ :vpc_endpoint_id)
1858
+ SENSITIVE = []
1859
+ include Aws::Structure
1860
+ end
1861
+
1661
1862
  # Describes the runtime configuration of an App Runner service instance
1662
1863
  # (scaling unit).
1663
1864
  #
@@ -2162,6 +2363,100 @@ module Aws::AppRunner
2162
2363
  include Aws::Structure
2163
2364
  end
2164
2365
 
2366
+ # Returns a list of VPC Ingress Connections based on the filter
2367
+ # provided. It can return either `ServiceArn` or `VpcEndpointId`, or
2368
+ # both.
2369
+ #
2370
+ # @note When making an API call, you may pass ListVpcIngressConnectionsFilter
2371
+ # data as a hash:
2372
+ #
2373
+ # {
2374
+ # service_arn: "AppRunnerResourceArn",
2375
+ # vpc_endpoint_id: "String",
2376
+ # }
2377
+ #
2378
+ # @!attribute [rw] service_arn
2379
+ # The Amazon Resource Name (ARN) of a service to filter by.
2380
+ # @return [String]
2381
+ #
2382
+ # @!attribute [rw] vpc_endpoint_id
2383
+ # The ID of a VPC Endpoint to filter by.
2384
+ # @return [String]
2385
+ #
2386
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnectionsFilter AWS API Documentation
2387
+ #
2388
+ class ListVpcIngressConnectionsFilter < Struct.new(
2389
+ :service_arn,
2390
+ :vpc_endpoint_id)
2391
+ SENSITIVE = []
2392
+ include Aws::Structure
2393
+ end
2394
+
2395
+ # @note When making an API call, you may pass ListVpcIngressConnectionsRequest
2396
+ # data as a hash:
2397
+ #
2398
+ # {
2399
+ # filter: {
2400
+ # service_arn: "AppRunnerResourceArn",
2401
+ # vpc_endpoint_id: "String",
2402
+ # },
2403
+ # max_results: 1,
2404
+ # next_token: "NextToken",
2405
+ # }
2406
+ #
2407
+ # @!attribute [rw] filter
2408
+ # The VPC Ingress Connections to be listed based on either the Service
2409
+ # Arn or Vpc Endpoint Id, or both.
2410
+ # @return [Types::ListVpcIngressConnectionsFilter]
2411
+ #
2412
+ # @!attribute [rw] max_results
2413
+ # The maximum number of results to include in each response (result
2414
+ # page). It's used for a paginated request.
2415
+ #
2416
+ # If you don't specify `MaxResults`, the request retrieves all
2417
+ # available results in a single response.
2418
+ # @return [Integer]
2419
+ #
2420
+ # @!attribute [rw] next_token
2421
+ # A token from a previous result page. It's used for a paginated
2422
+ # request. The request retrieves the next result page. All other
2423
+ # parameter values must be identical to the ones that are specified in
2424
+ # the initial request.
2425
+ #
2426
+ # If you don't specify `NextToken`, the request retrieves the first
2427
+ # result page.
2428
+ # @return [String]
2429
+ #
2430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnectionsRequest AWS API Documentation
2431
+ #
2432
+ class ListVpcIngressConnectionsRequest < Struct.new(
2433
+ :filter,
2434
+ :max_results,
2435
+ :next_token)
2436
+ SENSITIVE = []
2437
+ include Aws::Structure
2438
+ end
2439
+
2440
+ # @!attribute [rw] vpc_ingress_connection_summary_list
2441
+ # A list of summary information records for VPC Ingress Connections.
2442
+ # In a paginated request, the request returns up to `MaxResults`
2443
+ # records for each call.
2444
+ # @return [Array<Types::VpcIngressConnectionSummary>]
2445
+ #
2446
+ # @!attribute [rw] next_token
2447
+ # The token that you can pass in a subsequent request to get the next
2448
+ # result page. It's returned in a paginated request.
2449
+ # @return [String]
2450
+ #
2451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnectionsResponse AWS API Documentation
2452
+ #
2453
+ class ListVpcIngressConnectionsResponse < Struct.new(
2454
+ :vpc_ingress_connection_summary_list,
2455
+ :next_token)
2456
+ SENSITIVE = []
2457
+ include Aws::Structure
2458
+ end
2459
+
2165
2460
  # Describes configuration settings related to network traffic of an App
2166
2461
  # Runner service. Consists of embedded objects for each configurable
2167
2462
  # network feature.
@@ -2174,16 +2469,24 @@ module Aws::AppRunner
2174
2469
  # egress_type: "DEFAULT", # accepts DEFAULT, VPC
2175
2470
  # vpc_connector_arn: "AppRunnerResourceArn",
2176
2471
  # },
2472
+ # ingress_configuration: {
2473
+ # is_publicly_accessible: false,
2474
+ # },
2177
2475
  # }
2178
2476
  #
2179
2477
  # @!attribute [rw] egress_configuration
2180
2478
  # Network configuration settings for outbound message traffic.
2181
2479
  # @return [Types::EgressConfiguration]
2182
2480
  #
2481
+ # @!attribute [rw] ingress_configuration
2482
+ # Network configuration settings for inbound message traffic.
2483
+ # @return [Types::IngressConfiguration]
2484
+ #
2183
2485
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/NetworkConfiguration AWS API Documentation
2184
2486
  #
2185
2487
  class NetworkConfiguration < Struct.new(
2186
- :egress_configuration)
2488
+ :egress_configuration,
2489
+ :ingress_configuration)
2187
2490
  SENSITIVE = []
2188
2491
  include Aws::Structure
2189
2492
  end
@@ -2750,7 +3053,7 @@ module Aws::AppRunner
2750
3053
  # code_configuration: {
2751
3054
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
2752
3055
  # code_configuration_values: {
2753
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16
3056
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
2754
3057
  # build_command: "BuildCommand",
2755
3058
  # start_command: "StartCommand",
2756
3059
  # port: "String",
@@ -2993,7 +3296,7 @@ module Aws::AppRunner
2993
3296
  # code_configuration: {
2994
3297
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
2995
3298
  # code_configuration_values: {
2996
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16
3299
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
2997
3300
  # build_command: "BuildCommand",
2998
3301
  # start_command: "StartCommand",
2999
3302
  # port: "String",
@@ -3039,6 +3342,9 @@ module Aws::AppRunner
3039
3342
  # egress_type: "DEFAULT", # accepts DEFAULT, VPC
3040
3343
  # vpc_connector_arn: "AppRunnerResourceArn",
3041
3344
  # },
3345
+ # ingress_configuration: {
3346
+ # is_publicly_accessible: false,
3347
+ # },
3042
3348
  # },
3043
3349
  # observability_configuration: {
3044
3350
  # observability_enabled: false, # required
@@ -3124,6 +3430,50 @@ module Aws::AppRunner
3124
3430
  include Aws::Structure
3125
3431
  end
3126
3432
 
3433
+ # @note When making an API call, you may pass UpdateVpcIngressConnectionRequest
3434
+ # data as a hash:
3435
+ #
3436
+ # {
3437
+ # vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
3438
+ # ingress_vpc_configuration: { # required
3439
+ # vpc_id: "String",
3440
+ # vpc_endpoint_id: "String",
3441
+ # },
3442
+ # }
3443
+ #
3444
+ # @!attribute [rw] vpc_ingress_connection_arn
3445
+ # The Amazon Resource Name (Arn) for the App Runner VPC Ingress
3446
+ # Connection resource that you want to update.
3447
+ # @return [String]
3448
+ #
3449
+ # @!attribute [rw] ingress_vpc_configuration
3450
+ # Specifications for the customer’s Amazon VPC and the related Amazon
3451
+ # Web Services PrivateLink VPC endpoint that are used to update the
3452
+ # VPC Ingress Connection resource.
3453
+ # @return [Types::IngressVpcConfiguration]
3454
+ #
3455
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnectionRequest AWS API Documentation
3456
+ #
3457
+ class UpdateVpcIngressConnectionRequest < Struct.new(
3458
+ :vpc_ingress_connection_arn,
3459
+ :ingress_vpc_configuration)
3460
+ SENSITIVE = []
3461
+ include Aws::Structure
3462
+ end
3463
+
3464
+ # @!attribute [rw] vpc_ingress_connection
3465
+ # A description of the App Runner VPC Ingress Connection resource
3466
+ # that's updated by this request.
3467
+ # @return [Types::VpcIngressConnection]
3468
+ #
3469
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnectionResponse AWS API Documentation
3470
+ #
3471
+ class UpdateVpcIngressConnectionResponse < Struct.new(
3472
+ :vpc_ingress_connection)
3473
+ SENSITIVE = []
3474
+ include Aws::Structure
3475
+ end
3476
+
3127
3477
  # Describes an App Runner VPC connector resource. A VPC connector
3128
3478
  # describes the Amazon Virtual Private Cloud (Amazon VPC) that an App
3129
3479
  # Runner service is associated with, and the subnets and security group
@@ -3197,5 +3547,129 @@ module Aws::AppRunner
3197
3547
  include Aws::Structure
3198
3548
  end
3199
3549
 
3550
+ # DNS Target record for a custom domain of this Amazon VPC.
3551
+ #
3552
+ # @!attribute [rw] vpc_ingress_connection_arn
3553
+ # The Amazon Resource Name (ARN) of the VPC Ingress Connection that is
3554
+ # associated with your service.
3555
+ # @return [String]
3556
+ #
3557
+ # @!attribute [rw] vpc_id
3558
+ # The ID of the Amazon VPC that is associated with the custom domain
3559
+ # name of the target DNS.
3560
+ # @return [String]
3561
+ #
3562
+ # @!attribute [rw] domain_name
3563
+ # The domain name of your target DNS that is associated with the
3564
+ # Amazon VPC.
3565
+ # @return [String]
3566
+ #
3567
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/VpcDNSTarget AWS API Documentation
3568
+ #
3569
+ class VpcDNSTarget < Struct.new(
3570
+ :vpc_ingress_connection_arn,
3571
+ :vpc_id,
3572
+ :domain_name)
3573
+ SENSITIVE = []
3574
+ include Aws::Structure
3575
+ end
3576
+
3577
+ # The App Runner resource that specifies an App Runner endpoint for
3578
+ # incoming traffic. It establishes a connection between a VPC interface
3579
+ # endpoint and a App Runner service, to make your App Runner service
3580
+ # accessible from only within an Amazon VPC.
3581
+ #
3582
+ # @!attribute [rw] vpc_ingress_connection_arn
3583
+ # The Amazon Resource Name (ARN) of the VPC Ingress Connection.
3584
+ # @return [String]
3585
+ #
3586
+ # @!attribute [rw] vpc_ingress_connection_name
3587
+ # The customer-provided VPC Ingress Connection name.
3588
+ # @return [String]
3589
+ #
3590
+ # @!attribute [rw] service_arn
3591
+ # The Amazon Resource Name (ARN) of the service associated with the
3592
+ # VPC Ingress Connection.
3593
+ # @return [String]
3594
+ #
3595
+ # @!attribute [rw] status
3596
+ # The current status of the VPC Ingress Connection. The VPC Ingress
3597
+ # Connection displays one of the following statuses: `AVAILABLE`,
3598
+ # `PENDING_CREATION`, `PENDING_UPDATE`,
3599
+ # `PENDING_DELETION`,`FAILED_CREATION`, `FAILED_UPDATE`,
3600
+ # `FAILED_DELETION`, and `DELETED`..
3601
+ # @return [String]
3602
+ #
3603
+ # @!attribute [rw] account_id
3604
+ # The Account Id you use to create the VPC Ingress Connection
3605
+ # resource.
3606
+ # @return [String]
3607
+ #
3608
+ # @!attribute [rw] domain_name
3609
+ # The domain name associated with the VPC Ingress Connection resource.
3610
+ # @return [String]
3611
+ #
3612
+ # @!attribute [rw] ingress_vpc_configuration
3613
+ # Specifications for the customer’s VPC and related PrivateLink VPC
3614
+ # endpoint that are used to associate with the VPC Ingress Connection
3615
+ # resource.
3616
+ # @return [Types::IngressVpcConfiguration]
3617
+ #
3618
+ # @!attribute [rw] created_at
3619
+ # The time when the VPC Ingress Connection was created. It's in the
3620
+ # Unix time stamp format.
3621
+ #
3622
+ # * Type: Timestamp
3623
+ #
3624
+ # * Required: Yes
3625
+ # @return [Time]
3626
+ #
3627
+ # @!attribute [rw] deleted_at
3628
+ # The time when the App Runner service was deleted. It's in the Unix
3629
+ # time stamp format.
3630
+ #
3631
+ # * Type: Timestamp
3632
+ #
3633
+ # * Required: No
3634
+ # @return [Time]
3635
+ #
3636
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/VpcIngressConnection AWS API Documentation
3637
+ #
3638
+ class VpcIngressConnection < Struct.new(
3639
+ :vpc_ingress_connection_arn,
3640
+ :vpc_ingress_connection_name,
3641
+ :service_arn,
3642
+ :status,
3643
+ :account_id,
3644
+ :domain_name,
3645
+ :ingress_vpc_configuration,
3646
+ :created_at,
3647
+ :deleted_at)
3648
+ SENSITIVE = []
3649
+ include Aws::Structure
3650
+ end
3651
+
3652
+ # Provides summary information about an VPC Ingress Connection, which
3653
+ # includes its VPC Ingress Connection ARN and its associated Service
3654
+ # ARN.
3655
+ #
3656
+ # @!attribute [rw] vpc_ingress_connection_arn
3657
+ # The Amazon Resource Name (ARN) of the VPC Ingress Connection.
3658
+ # @return [String]
3659
+ #
3660
+ # @!attribute [rw] service_arn
3661
+ # The Amazon Resource Name (ARN) of the service associated with the
3662
+ # VPC Ingress Connection.
3663
+ # @return [String]
3664
+ #
3665
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/VpcIngressConnectionSummary AWS API Documentation
3666
+ #
3667
+ class VpcIngressConnectionSummary < Struct.new(
3668
+ :vpc_ingress_connection_arn,
3669
+ :service_arn)
3670
+ SENSITIVE = []
3671
+ include Aws::Structure
3672
+ end
3673
+
3200
3674
  end
3201
3675
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-apprunner/customizations'
52
52
  # @!group service
53
53
  module Aws::AppRunner
54
54
 
55
- GEM_VERSION = '1.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-apprunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core