aws-sdk-apprunner 1.17.0 → 1.19.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apprunner/client.rb +333 -1
- data/lib/aws-sdk-apprunner/client_api.rb +169 -1
- data/lib/aws-sdk-apprunner/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-apprunner/endpoint_provider.rb +75 -76
- data/lib/aws-sdk-apprunner/endpoints.rb +70 -0
- data/lib/aws-sdk-apprunner/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-apprunner/types.rb +430 -607
- data/lib/aws-sdk-apprunner.rb +1 -1
- metadata +2 -2
@@ -10,15 +10,6 @@
|
|
10
10
|
module Aws::AppRunner
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass AssociateCustomDomainRequest
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# service_arn: "AppRunnerResourceArn", # required
|
18
|
-
# domain_name: "DomainName", # required
|
19
|
-
# enable_www_subdomain: false,
|
20
|
-
# }
|
21
|
-
#
|
22
13
|
# @!attribute [rw] service_arn
|
23
14
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
24
15
|
# want to associate a custom domain name with.
|
@@ -62,12 +53,17 @@ module Aws::AppRunner
|
|
62
53
|
# A description of the domain name that's being associated.
|
63
54
|
# @return [Types::CustomDomain]
|
64
55
|
#
|
56
|
+
# @!attribute [rw] vpc_dns_targets
|
57
|
+
# DNS Target records for the custom domains of this Amazon VPC.
|
58
|
+
# @return [Array<Types::VpcDNSTarget>]
|
59
|
+
#
|
65
60
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/AssociateCustomDomainResponse AWS API Documentation
|
66
61
|
#
|
67
62
|
class AssociateCustomDomainResponse < Struct.new(
|
68
63
|
:dns_target,
|
69
64
|
:service_arn,
|
70
|
-
:custom_domain
|
65
|
+
:custom_domain,
|
66
|
+
:vpc_dns_targets)
|
71
67
|
SENSITIVE = []
|
72
68
|
include Aws::Structure
|
73
69
|
end
|
@@ -76,14 +72,6 @@ module Aws::AppRunner
|
|
76
72
|
# repositories. The specific resource depends on the repository
|
77
73
|
# provider.
|
78
74
|
#
|
79
|
-
# @note When making an API call, you may pass AuthenticationConfiguration
|
80
|
-
# data as a hash:
|
81
|
-
#
|
82
|
-
# {
|
83
|
-
# connection_arn: "AppRunnerResourceArn",
|
84
|
-
# access_role_arn: "RoleArn",
|
85
|
-
# }
|
86
|
-
#
|
87
75
|
# @!attribute [rw] connection_arn
|
88
76
|
# The Amazon Resource Name (ARN) of the App Runner connection that
|
89
77
|
# enables the App Runner service to connect to a source repository.
|
@@ -273,22 +261,6 @@ module Aws::AppRunner
|
|
273
261
|
# Describes the configuration that App Runner uses to build and run an
|
274
262
|
# App Runner service from a source code repository.
|
275
263
|
#
|
276
|
-
# @note When making an API call, you may pass CodeConfiguration
|
277
|
-
# data as a hash:
|
278
|
-
#
|
279
|
-
# {
|
280
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
281
|
-
# code_configuration_values: {
|
282
|
-
# 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
|
-
# build_command: "BuildCommand",
|
284
|
-
# start_command: "StartCommand",
|
285
|
-
# port: "String",
|
286
|
-
# runtime_environment_variables: {
|
287
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
288
|
-
# },
|
289
|
-
# },
|
290
|
-
# }
|
291
|
-
#
|
292
264
|
# @!attribute [rw] configuration_source
|
293
265
|
# The source of the App Runner configuration. Values are interpreted
|
294
266
|
# as follows:
|
@@ -323,19 +295,6 @@ module Aws::AppRunner
|
|
323
295
|
# possible configuration options. Fur full configuration capabilities,
|
324
296
|
# use a `apprunner.yaml` file in the source code repository.
|
325
297
|
#
|
326
|
-
# @note When making an API call, you may pass CodeConfigurationValues
|
327
|
-
# data as a hash:
|
328
|
-
#
|
329
|
-
# {
|
330
|
-
# 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
|
-
# build_command: "BuildCommand",
|
332
|
-
# start_command: "StartCommand",
|
333
|
-
# port: "String",
|
334
|
-
# runtime_environment_variables: {
|
335
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
336
|
-
# },
|
337
|
-
# }
|
338
|
-
#
|
339
298
|
# @!attribute [rw] runtime
|
340
299
|
# A runtime environment type for building and running an App Runner
|
341
300
|
# service. It represents a programming language runtime.
|
@@ -357,8 +316,26 @@ module Aws::AppRunner
|
|
357
316
|
#
|
358
317
|
# @!attribute [rw] runtime_environment_variables
|
359
318
|
# The environment variables that are available to your running App
|
360
|
-
# Runner service. An array of key-value pairs.
|
361
|
-
#
|
319
|
+
# Runner service. An array of key-value pairs.
|
320
|
+
# @return [Hash<String,String>]
|
321
|
+
#
|
322
|
+
# @!attribute [rw] runtime_environment_secrets
|
323
|
+
# An array of key-value pairs representing the secrets and parameters
|
324
|
+
# that get referenced to your service as an environment variable. The
|
325
|
+
# supported values are either the full Amazon Resource Name (ARN) of
|
326
|
+
# the Secrets Manager secret or the full ARN of the parameter in the
|
327
|
+
# Amazon Web Services Systems Manager Parameter Store.
|
328
|
+
#
|
329
|
+
# <note markdown="1"> * If the Amazon Web Services Systems Manager Parameter Store
|
330
|
+
# parameter exists in the same Amazon Web Services Region as the
|
331
|
+
# service that you're launching, you can use either the full ARN or
|
332
|
+
# name of the secret. If the parameter exists in a different Region,
|
333
|
+
# then the full ARN must be specified.
|
334
|
+
#
|
335
|
+
# * Currently, cross account referencing of Amazon Web Services
|
336
|
+
# Systems Manager Parameter Store parameter is not supported.
|
337
|
+
#
|
338
|
+
# </note>
|
362
339
|
# @return [Hash<String,String>]
|
363
340
|
#
|
364
341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CodeConfigurationValues AWS API Documentation
|
@@ -368,36 +345,14 @@ module Aws::AppRunner
|
|
368
345
|
:build_command,
|
369
346
|
:start_command,
|
370
347
|
:port,
|
371
|
-
:runtime_environment_variables
|
348
|
+
:runtime_environment_variables,
|
349
|
+
:runtime_environment_secrets)
|
372
350
|
SENSITIVE = [:build_command, :start_command]
|
373
351
|
include Aws::Structure
|
374
352
|
end
|
375
353
|
|
376
354
|
# Describes a source code repository.
|
377
355
|
#
|
378
|
-
# @note When making an API call, you may pass CodeRepository
|
379
|
-
# data as a hash:
|
380
|
-
#
|
381
|
-
# {
|
382
|
-
# repository_url: "String", # required
|
383
|
-
# source_code_version: { # required
|
384
|
-
# type: "BRANCH", # required, accepts BRANCH
|
385
|
-
# value: "String", # required
|
386
|
-
# },
|
387
|
-
# code_configuration: {
|
388
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
389
|
-
# code_configuration_values: {
|
390
|
-
# 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
|
-
# build_command: "BuildCommand",
|
392
|
-
# start_command: "StartCommand",
|
393
|
-
# port: "String",
|
394
|
-
# runtime_environment_variables: {
|
395
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
396
|
-
# },
|
397
|
-
# },
|
398
|
-
# },
|
399
|
-
# }
|
400
|
-
#
|
401
356
|
# @!attribute [rw] repository_url
|
402
357
|
# The location of the repository that contains the source code.
|
403
358
|
# @return [String]
|
@@ -499,22 +454,6 @@ module Aws::AppRunner
|
|
499
454
|
include Aws::Structure
|
500
455
|
end
|
501
456
|
|
502
|
-
# @note When making an API call, you may pass CreateAutoScalingConfigurationRequest
|
503
|
-
# data as a hash:
|
504
|
-
#
|
505
|
-
# {
|
506
|
-
# auto_scaling_configuration_name: "AutoScalingConfigurationName", # required
|
507
|
-
# max_concurrency: 1,
|
508
|
-
# min_size: 1,
|
509
|
-
# max_size: 1,
|
510
|
-
# tags: [
|
511
|
-
# {
|
512
|
-
# key: "TagKey",
|
513
|
-
# value: "TagValue",
|
514
|
-
# },
|
515
|
-
# ],
|
516
|
-
# }
|
517
|
-
#
|
518
457
|
# @!attribute [rw] auto_scaling_configuration_name
|
519
458
|
# A name for the auto scaling configuration. When you use it for the
|
520
459
|
# first time in an Amazon Web Services Region, App Runner creates
|
@@ -595,20 +534,6 @@ module Aws::AppRunner
|
|
595
534
|
include Aws::Structure
|
596
535
|
end
|
597
536
|
|
598
|
-
# @note When making an API call, you may pass CreateConnectionRequest
|
599
|
-
# data as a hash:
|
600
|
-
#
|
601
|
-
# {
|
602
|
-
# connection_name: "ConnectionName", # required
|
603
|
-
# provider_type: "GITHUB", # required, accepts GITHUB
|
604
|
-
# tags: [
|
605
|
-
# {
|
606
|
-
# key: "TagKey",
|
607
|
-
# value: "TagValue",
|
608
|
-
# },
|
609
|
-
# ],
|
610
|
-
# }
|
611
|
-
#
|
612
537
|
# @!attribute [rw] connection_name
|
613
538
|
# A name for the new connection. It must be unique across all App
|
614
539
|
# Runner connections for the Amazon Web Services account in the Amazon
|
@@ -647,22 +572,6 @@ module Aws::AppRunner
|
|
647
572
|
include Aws::Structure
|
648
573
|
end
|
649
574
|
|
650
|
-
# @note When making an API call, you may pass CreateObservabilityConfigurationRequest
|
651
|
-
# data as a hash:
|
652
|
-
#
|
653
|
-
# {
|
654
|
-
# observability_configuration_name: "ObservabilityConfigurationName", # required
|
655
|
-
# trace_configuration: {
|
656
|
-
# vendor: "AWSXRAY", # required, accepts AWSXRAY
|
657
|
-
# },
|
658
|
-
# tags: [
|
659
|
-
# {
|
660
|
-
# key: "TagKey",
|
661
|
-
# value: "TagValue",
|
662
|
-
# },
|
663
|
-
# ],
|
664
|
-
# }
|
665
|
-
#
|
666
575
|
# @!attribute [rw] observability_configuration_name
|
667
576
|
# A name for the observability configuration. When you use it for the
|
668
577
|
# first time in an Amazon Web Services Region, App Runner creates
|
@@ -715,83 +624,6 @@ module Aws::AppRunner
|
|
715
624
|
include Aws::Structure
|
716
625
|
end
|
717
626
|
|
718
|
-
# @note When making an API call, you may pass CreateServiceRequest
|
719
|
-
# data as a hash:
|
720
|
-
#
|
721
|
-
# {
|
722
|
-
# service_name: "ServiceName", # required
|
723
|
-
# source_configuration: { # required
|
724
|
-
# code_repository: {
|
725
|
-
# repository_url: "String", # required
|
726
|
-
# source_code_version: { # required
|
727
|
-
# type: "BRANCH", # required, accepts BRANCH
|
728
|
-
# value: "String", # required
|
729
|
-
# },
|
730
|
-
# code_configuration: {
|
731
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
732
|
-
# code_configuration_values: {
|
733
|
-
# 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
|
-
# build_command: "BuildCommand",
|
735
|
-
# start_command: "StartCommand",
|
736
|
-
# port: "String",
|
737
|
-
# runtime_environment_variables: {
|
738
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
739
|
-
# },
|
740
|
-
# },
|
741
|
-
# },
|
742
|
-
# },
|
743
|
-
# image_repository: {
|
744
|
-
# image_identifier: "ImageIdentifier", # required
|
745
|
-
# image_configuration: {
|
746
|
-
# runtime_environment_variables: {
|
747
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
748
|
-
# },
|
749
|
-
# start_command: "StartCommand",
|
750
|
-
# port: "String",
|
751
|
-
# },
|
752
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
753
|
-
# },
|
754
|
-
# auto_deployments_enabled: false,
|
755
|
-
# authentication_configuration: {
|
756
|
-
# connection_arn: "AppRunnerResourceArn",
|
757
|
-
# access_role_arn: "RoleArn",
|
758
|
-
# },
|
759
|
-
# },
|
760
|
-
# instance_configuration: {
|
761
|
-
# cpu: "Cpu",
|
762
|
-
# memory: "Memory",
|
763
|
-
# instance_role_arn: "RoleArn",
|
764
|
-
# },
|
765
|
-
# tags: [
|
766
|
-
# {
|
767
|
-
# key: "TagKey",
|
768
|
-
# value: "TagValue",
|
769
|
-
# },
|
770
|
-
# ],
|
771
|
-
# encryption_configuration: {
|
772
|
-
# kms_key: "KmsKeyArn", # required
|
773
|
-
# },
|
774
|
-
# health_check_configuration: {
|
775
|
-
# protocol: "TCP", # accepts TCP, HTTP
|
776
|
-
# path: "HealthCheckPath",
|
777
|
-
# interval: 1,
|
778
|
-
# timeout: 1,
|
779
|
-
# healthy_threshold: 1,
|
780
|
-
# unhealthy_threshold: 1,
|
781
|
-
# },
|
782
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn",
|
783
|
-
# network_configuration: {
|
784
|
-
# egress_configuration: {
|
785
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
786
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
787
|
-
# },
|
788
|
-
# },
|
789
|
-
# observability_configuration: {
|
790
|
-
# observability_enabled: false, # required
|
791
|
-
# observability_configuration_arn: "AppRunnerResourceArn",
|
792
|
-
# },
|
793
|
-
# }
|
794
|
-
#
|
795
627
|
# @!attribute [rw] service_name
|
796
628
|
# A name for the App Runner service. It must be unique across all the
|
797
629
|
# running App Runner services in your Amazon Web Services account in
|
@@ -888,21 +720,6 @@ module Aws::AppRunner
|
|
888
720
|
include Aws::Structure
|
889
721
|
end
|
890
722
|
|
891
|
-
# @note When making an API call, you may pass CreateVpcConnectorRequest
|
892
|
-
# data as a hash:
|
893
|
-
#
|
894
|
-
# {
|
895
|
-
# vpc_connector_name: "VpcConnectorName", # required
|
896
|
-
# subnets: ["String"], # required
|
897
|
-
# security_groups: ["String"],
|
898
|
-
# tags: [
|
899
|
-
# {
|
900
|
-
# key: "TagKey",
|
901
|
-
# value: "TagValue",
|
902
|
-
# },
|
903
|
-
# ],
|
904
|
-
# }
|
905
|
-
#
|
906
723
|
# @!attribute [rw] vpc_connector_name
|
907
724
|
# A name for the VPC connector.
|
908
725
|
# @return [String]
|
@@ -954,6 +771,52 @@ module Aws::AppRunner
|
|
954
771
|
include Aws::Structure
|
955
772
|
end
|
956
773
|
|
774
|
+
# @!attribute [rw] service_arn
|
775
|
+
# The Amazon Resource Name (ARN) for this App Runner service that is
|
776
|
+
# used to create the VPC Ingress Connection resource.
|
777
|
+
# @return [String]
|
778
|
+
#
|
779
|
+
# @!attribute [rw] vpc_ingress_connection_name
|
780
|
+
# A name for the VPC Ingress Connection resource. It must be unique
|
781
|
+
# across all the active VPC Ingress Connections in your Amazon Web
|
782
|
+
# Services account in the Amazon Web Services Region.
|
783
|
+
# @return [String]
|
784
|
+
#
|
785
|
+
# @!attribute [rw] ingress_vpc_configuration
|
786
|
+
# Specifications for the customer’s Amazon VPC and the related Amazon
|
787
|
+
# Web Services PrivateLink VPC endpoint that are used to create the
|
788
|
+
# VPC Ingress Connection resource.
|
789
|
+
# @return [Types::IngressVpcConfiguration]
|
790
|
+
#
|
791
|
+
# @!attribute [rw] tags
|
792
|
+
# An optional list of metadata items that you can associate with the
|
793
|
+
# VPC Ingress Connection resource. A tag is a key-value pair.
|
794
|
+
# @return [Array<Types::Tag>]
|
795
|
+
#
|
796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnectionRequest AWS API Documentation
|
797
|
+
#
|
798
|
+
class CreateVpcIngressConnectionRequest < Struct.new(
|
799
|
+
:service_arn,
|
800
|
+
:vpc_ingress_connection_name,
|
801
|
+
:ingress_vpc_configuration,
|
802
|
+
:tags)
|
803
|
+
SENSITIVE = []
|
804
|
+
include Aws::Structure
|
805
|
+
end
|
806
|
+
|
807
|
+
# @!attribute [rw] vpc_ingress_connection
|
808
|
+
# A description of the App Runner VPC Ingress Connection resource
|
809
|
+
# that's created by this request.
|
810
|
+
# @return [Types::VpcIngressConnection]
|
811
|
+
#
|
812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnectionResponse AWS API Documentation
|
813
|
+
#
|
814
|
+
class CreateVpcIngressConnectionResponse < Struct.new(
|
815
|
+
:vpc_ingress_connection)
|
816
|
+
SENSITIVE = []
|
817
|
+
include Aws::Structure
|
818
|
+
end
|
819
|
+
|
957
820
|
# Describes a custom domain that's associated with an App Runner
|
958
821
|
# service.
|
959
822
|
#
|
@@ -989,13 +852,6 @@ module Aws::AppRunner
|
|
989
852
|
include Aws::Structure
|
990
853
|
end
|
991
854
|
|
992
|
-
# @note When making an API call, you may pass DeleteAutoScalingConfigurationRequest
|
993
|
-
# data as a hash:
|
994
|
-
#
|
995
|
-
# {
|
996
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn", # required
|
997
|
-
# }
|
998
|
-
#
|
999
855
|
# @!attribute [rw] auto_scaling_configuration_arn
|
1000
856
|
# The Amazon Resource Name (ARN) of the App Runner auto scaling
|
1001
857
|
# configuration that you want to delete.
|
@@ -1026,13 +882,6 @@ module Aws::AppRunner
|
|
1026
882
|
include Aws::Structure
|
1027
883
|
end
|
1028
884
|
|
1029
|
-
# @note When making an API call, you may pass DeleteConnectionRequest
|
1030
|
-
# data as a hash:
|
1031
|
-
#
|
1032
|
-
# {
|
1033
|
-
# connection_arn: "AppRunnerResourceArn", # required
|
1034
|
-
# }
|
1035
|
-
#
|
1036
885
|
# @!attribute [rw] connection_arn
|
1037
886
|
# The Amazon Resource Name (ARN) of the App Runner connection that you
|
1038
887
|
# want to delete.
|
@@ -1059,13 +908,6 @@ module Aws::AppRunner
|
|
1059
908
|
include Aws::Structure
|
1060
909
|
end
|
1061
910
|
|
1062
|
-
# @note When making an API call, you may pass DeleteObservabilityConfigurationRequest
|
1063
|
-
# data as a hash:
|
1064
|
-
#
|
1065
|
-
# {
|
1066
|
-
# observability_configuration_arn: "AppRunnerResourceArn", # required
|
1067
|
-
# }
|
1068
|
-
#
|
1069
911
|
# @!attribute [rw] observability_configuration_arn
|
1070
912
|
# The Amazon Resource Name (ARN) of the App Runner observability
|
1071
913
|
# configuration that you want to delete.
|
@@ -1096,13 +938,6 @@ module Aws::AppRunner
|
|
1096
938
|
include Aws::Structure
|
1097
939
|
end
|
1098
940
|
|
1099
|
-
# @note When making an API call, you may pass DeleteServiceRequest
|
1100
|
-
# data as a hash:
|
1101
|
-
#
|
1102
|
-
# {
|
1103
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1104
|
-
# }
|
1105
|
-
#
|
1106
941
|
# @!attribute [rw] service_arn
|
1107
942
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1108
943
|
# want to delete.
|
@@ -1136,13 +971,6 @@ module Aws::AppRunner
|
|
1136
971
|
include Aws::Structure
|
1137
972
|
end
|
1138
973
|
|
1139
|
-
# @note When making an API call, you may pass DeleteVpcConnectorRequest
|
1140
|
-
# data as a hash:
|
1141
|
-
#
|
1142
|
-
# {
|
1143
|
-
# vpc_connector_arn: "AppRunnerResourceArn", # required
|
1144
|
-
# }
|
1145
|
-
#
|
1146
974
|
# @!attribute [rw] vpc_connector_arn
|
1147
975
|
# The Amazon Resource Name (ARN) of the App Runner VPC connector that
|
1148
976
|
# you want to delete.
|
@@ -1171,13 +999,32 @@ module Aws::AppRunner
|
|
1171
999
|
include Aws::Structure
|
1172
1000
|
end
|
1173
1001
|
|
1174
|
-
#
|
1175
|
-
#
|
1002
|
+
# @!attribute [rw] vpc_ingress_connection_arn
|
1003
|
+
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1004
|
+
# Connection that you want to delete.
|
1005
|
+
# @return [String]
|
1006
|
+
#
|
1007
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnectionRequest AWS API Documentation
|
1008
|
+
#
|
1009
|
+
class DeleteVpcIngressConnectionRequest < Struct.new(
|
1010
|
+
:vpc_ingress_connection_arn)
|
1011
|
+
SENSITIVE = []
|
1012
|
+
include Aws::Structure
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
# @!attribute [rw] vpc_ingress_connection
|
1016
|
+
# A description of the App Runner VPC Ingress Connection that this
|
1017
|
+
# request just deleted.
|
1018
|
+
# @return [Types::VpcIngressConnection]
|
1176
1019
|
#
|
1177
|
-
#
|
1178
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn", # required
|
1179
|
-
# }
|
1020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnectionResponse AWS API Documentation
|
1180
1021
|
#
|
1022
|
+
class DeleteVpcIngressConnectionResponse < Struct.new(
|
1023
|
+
:vpc_ingress_connection)
|
1024
|
+
SENSITIVE = []
|
1025
|
+
include Aws::Structure
|
1026
|
+
end
|
1027
|
+
|
1181
1028
|
# @!attribute [rw] auto_scaling_configuration_arn
|
1182
1029
|
# The Amazon Resource Name (ARN) of the App Runner auto scaling
|
1183
1030
|
# configuration that you want a description for.
|
@@ -1208,15 +1055,6 @@ module Aws::AppRunner
|
|
1208
1055
|
include Aws::Structure
|
1209
1056
|
end
|
1210
1057
|
|
1211
|
-
# @note When making an API call, you may pass DescribeCustomDomainsRequest
|
1212
|
-
# data as a hash:
|
1213
|
-
#
|
1214
|
-
# {
|
1215
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1216
|
-
# next_token: "String",
|
1217
|
-
# max_results: 1,
|
1218
|
-
# }
|
1219
|
-
#
|
1220
1058
|
# @!attribute [rw] service_arn
|
1221
1059
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1222
1060
|
# want associated custom domain names to be described for.
|
@@ -1266,6 +1104,10 @@ module Aws::AppRunner
|
|
1266
1104
|
# `MaxResults` records per call.
|
1267
1105
|
# @return [Array<Types::CustomDomain>]
|
1268
1106
|
#
|
1107
|
+
# @!attribute [rw] vpc_dns_targets
|
1108
|
+
# DNS Target records for the custom domains of this Amazon VPC.
|
1109
|
+
# @return [Array<Types::VpcDNSTarget>]
|
1110
|
+
#
|
1269
1111
|
# @!attribute [rw] next_token
|
1270
1112
|
# The token that you can pass in a subsequent request to get the next
|
1271
1113
|
# result page. It's returned in a paginated request.
|
@@ -1277,18 +1119,12 @@ module Aws::AppRunner
|
|
1277
1119
|
:dns_target,
|
1278
1120
|
:service_arn,
|
1279
1121
|
:custom_domains,
|
1122
|
+
:vpc_dns_targets,
|
1280
1123
|
:next_token)
|
1281
1124
|
SENSITIVE = []
|
1282
1125
|
include Aws::Structure
|
1283
1126
|
end
|
1284
1127
|
|
1285
|
-
# @note When making an API call, you may pass DescribeObservabilityConfigurationRequest
|
1286
|
-
# data as a hash:
|
1287
|
-
#
|
1288
|
-
# {
|
1289
|
-
# observability_configuration_arn: "AppRunnerResourceArn", # required
|
1290
|
-
# }
|
1291
|
-
#
|
1292
1128
|
# @!attribute [rw] observability_configuration_arn
|
1293
1129
|
# The Amazon Resource Name (ARN) of the App Runner observability
|
1294
1130
|
# configuration that you want a description for.
|
@@ -1319,13 +1155,6 @@ module Aws::AppRunner
|
|
1319
1155
|
include Aws::Structure
|
1320
1156
|
end
|
1321
1157
|
|
1322
|
-
# @note When making an API call, you may pass DescribeServiceRequest
|
1323
|
-
# data as a hash:
|
1324
|
-
#
|
1325
|
-
# {
|
1326
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1327
|
-
# }
|
1328
|
-
#
|
1329
1158
|
# @!attribute [rw] service_arn
|
1330
1159
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1331
1160
|
# want a description for.
|
@@ -1352,13 +1181,6 @@ module Aws::AppRunner
|
|
1352
1181
|
include Aws::Structure
|
1353
1182
|
end
|
1354
1183
|
|
1355
|
-
# @note When making an API call, you may pass DescribeVpcConnectorRequest
|
1356
|
-
# data as a hash:
|
1357
|
-
#
|
1358
|
-
# {
|
1359
|
-
# vpc_connector_arn: "AppRunnerResourceArn", # required
|
1360
|
-
# }
|
1361
|
-
#
|
1362
1184
|
# @!attribute [rw] vpc_connector_arn
|
1363
1185
|
# The Amazon Resource Name (ARN) of the App Runner VPC connector that
|
1364
1186
|
# you want a description for.
|
@@ -1387,14 +1209,32 @@ module Aws::AppRunner
|
|
1387
1209
|
include Aws::Structure
|
1388
1210
|
end
|
1389
1211
|
|
1390
|
-
#
|
1391
|
-
#
|
1212
|
+
# @!attribute [rw] vpc_ingress_connection_arn
|
1213
|
+
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1214
|
+
# Connection that you want a description for.
|
1215
|
+
# @return [String]
|
1392
1216
|
#
|
1393
|
-
#
|
1394
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1395
|
-
# domain_name: "DomainName", # required
|
1396
|
-
# }
|
1217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnectionRequest AWS API Documentation
|
1397
1218
|
#
|
1219
|
+
class DescribeVpcIngressConnectionRequest < Struct.new(
|
1220
|
+
:vpc_ingress_connection_arn)
|
1221
|
+
SENSITIVE = []
|
1222
|
+
include Aws::Structure
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
# @!attribute [rw] vpc_ingress_connection
|
1226
|
+
# A description of the App Runner VPC Ingress Connection that you
|
1227
|
+
# specified in this request.
|
1228
|
+
# @return [Types::VpcIngressConnection]
|
1229
|
+
#
|
1230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnectionResponse AWS API Documentation
|
1231
|
+
#
|
1232
|
+
class DescribeVpcIngressConnectionResponse < Struct.new(
|
1233
|
+
:vpc_ingress_connection)
|
1234
|
+
SENSITIVE = []
|
1235
|
+
include Aws::Structure
|
1236
|
+
end
|
1237
|
+
|
1398
1238
|
# @!attribute [rw] service_arn
|
1399
1239
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1400
1240
|
# want to disassociate a custom domain name from.
|
@@ -1428,12 +1268,17 @@ module Aws::AppRunner
|
|
1428
1268
|
# A description of the domain name that's being disassociated.
|
1429
1269
|
# @return [Types::CustomDomain]
|
1430
1270
|
#
|
1271
|
+
# @!attribute [rw] vpc_dns_targets
|
1272
|
+
# DNS Target records for the custom domains of this Amazon VPC.
|
1273
|
+
# @return [Array<Types::VpcDNSTarget>]
|
1274
|
+
#
|
1431
1275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomainResponse AWS API Documentation
|
1432
1276
|
#
|
1433
1277
|
class DisassociateCustomDomainResponse < Struct.new(
|
1434
1278
|
:dns_target,
|
1435
1279
|
:service_arn,
|
1436
|
-
:custom_domain
|
1280
|
+
:custom_domain,
|
1281
|
+
:vpc_dns_targets)
|
1437
1282
|
SENSITIVE = []
|
1438
1283
|
include Aws::Structure
|
1439
1284
|
end
|
@@ -1441,14 +1286,6 @@ module Aws::AppRunner
|
|
1441
1286
|
# Describes configuration settings related to outbound network traffic
|
1442
1287
|
# of an App Runner service.
|
1443
1288
|
#
|
1444
|
-
# @note When making an API call, you may pass EgressConfiguration
|
1445
|
-
# data as a hash:
|
1446
|
-
#
|
1447
|
-
# {
|
1448
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
1449
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
1450
|
-
# }
|
1451
|
-
#
|
1452
1289
|
# @!attribute [rw] egress_type
|
1453
1290
|
# The type of egress configuration.
|
1454
1291
|
#
|
@@ -1476,13 +1313,6 @@ module Aws::AppRunner
|
|
1476
1313
|
# Describes a custom encryption key that App Runner uses to encrypt
|
1477
1314
|
# copies of the source repository and service logs.
|
1478
1315
|
#
|
1479
|
-
# @note When making an API call, you may pass EncryptionConfiguration
|
1480
|
-
# data as a hash:
|
1481
|
-
#
|
1482
|
-
# {
|
1483
|
-
# kms_key: "KmsKeyArn", # required
|
1484
|
-
# }
|
1485
|
-
#
|
1486
1316
|
# @!attribute [rw] kms_key
|
1487
1317
|
# The ARN of the KMS key that's used for encryption.
|
1488
1318
|
# @return [String]
|
@@ -1498,18 +1328,6 @@ module Aws::AppRunner
|
|
1498
1328
|
# Describes the settings for the health check that App Runner performs
|
1499
1329
|
# to monitor the health of a service.
|
1500
1330
|
#
|
1501
|
-
# @note When making an API call, you may pass HealthCheckConfiguration
|
1502
|
-
# data as a hash:
|
1503
|
-
#
|
1504
|
-
# {
|
1505
|
-
# protocol: "TCP", # accepts TCP, HTTP
|
1506
|
-
# path: "HealthCheckPath",
|
1507
|
-
# interval: 1,
|
1508
|
-
# timeout: 1,
|
1509
|
-
# healthy_threshold: 1,
|
1510
|
-
# unhealthy_threshold: 1,
|
1511
|
-
# }
|
1512
|
-
#
|
1513
1331
|
# @!attribute [rw] protocol
|
1514
1332
|
# The IP protocol that App Runner uses to perform health checks for
|
1515
1333
|
# your service.
|
@@ -1571,21 +1389,9 @@ module Aws::AppRunner
|
|
1571
1389
|
# Describes the configuration that App Runner uses to run an App Runner
|
1572
1390
|
# service using an image pulled from a source image repository.
|
1573
1391
|
#
|
1574
|
-
# @note When making an API call, you may pass ImageConfiguration
|
1575
|
-
# data as a hash:
|
1576
|
-
#
|
1577
|
-
# {
|
1578
|
-
# runtime_environment_variables: {
|
1579
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
1580
|
-
# },
|
1581
|
-
# start_command: "StartCommand",
|
1582
|
-
# port: "String",
|
1583
|
-
# }
|
1584
|
-
#
|
1585
1392
|
# @!attribute [rw] runtime_environment_variables
|
1586
1393
|
# Environment variables that are available to your running App Runner
|
1587
|
-
# service. An array of key-value pairs.
|
1588
|
-
# `AWSAPPRUNNER` are reserved for system use and aren't valid.
|
1394
|
+
# service. An array of key-value pairs.
|
1589
1395
|
# @return [Hash<String,String>]
|
1590
1396
|
#
|
1591
1397
|
# @!attribute [rw] start_command
|
@@ -1600,33 +1406,38 @@ module Aws::AppRunner
|
|
1600
1406
|
# Default: `8080`
|
1601
1407
|
# @return [String]
|
1602
1408
|
#
|
1409
|
+
# @!attribute [rw] runtime_environment_secrets
|
1410
|
+
# An array of key-value pairs representing the secrets and parameters
|
1411
|
+
# that get referenced to your service as an environment variable. The
|
1412
|
+
# supported values are either the full Amazon Resource Name (ARN) of
|
1413
|
+
# the Secrets Manager secret or the full ARN of the parameter in the
|
1414
|
+
# Amazon Web Services Systems Manager Parameter Store.
|
1415
|
+
#
|
1416
|
+
# <note markdown="1"> * If the Amazon Web Services Systems Manager Parameter Store
|
1417
|
+
# parameter exists in the same Amazon Web Services Region as the
|
1418
|
+
# service that you're launching, you can use either the full ARN or
|
1419
|
+
# name of the secret. If the parameter exists in a different Region,
|
1420
|
+
# then the full ARN must be specified.
|
1421
|
+
#
|
1422
|
+
# * Currently, cross account referencing of Amazon Web Services
|
1423
|
+
# Systems Manager Parameter Store parameter is not supported.
|
1424
|
+
#
|
1425
|
+
# </note>
|
1426
|
+
# @return [Hash<String,String>]
|
1427
|
+
#
|
1603
1428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ImageConfiguration AWS API Documentation
|
1604
1429
|
#
|
1605
1430
|
class ImageConfiguration < Struct.new(
|
1606
1431
|
:runtime_environment_variables,
|
1607
1432
|
:start_command,
|
1608
|
-
:port
|
1433
|
+
:port,
|
1434
|
+
:runtime_environment_secrets)
|
1609
1435
|
SENSITIVE = [:start_command]
|
1610
1436
|
include Aws::Structure
|
1611
1437
|
end
|
1612
1438
|
|
1613
1439
|
# Describes a source image repository.
|
1614
1440
|
#
|
1615
|
-
# @note When making an API call, you may pass ImageRepository
|
1616
|
-
# data as a hash:
|
1617
|
-
#
|
1618
|
-
# {
|
1619
|
-
# image_identifier: "ImageIdentifier", # required
|
1620
|
-
# image_configuration: {
|
1621
|
-
# runtime_environment_variables: {
|
1622
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
1623
|
-
# },
|
1624
|
-
# start_command: "StartCommand",
|
1625
|
-
# port: "String",
|
1626
|
-
# },
|
1627
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
1628
|
-
# }
|
1629
|
-
#
|
1630
1441
|
# @!attribute [rw] image_identifier
|
1631
1442
|
# The identifier of an image.
|
1632
1443
|
#
|
@@ -1658,17 +1469,46 @@ module Aws::AppRunner
|
|
1658
1469
|
include Aws::Structure
|
1659
1470
|
end
|
1660
1471
|
|
1661
|
-
#
|
1662
|
-
#
|
1472
|
+
# Network configuration settings for inbound network traffic.
|
1473
|
+
#
|
1474
|
+
# @!attribute [rw] is_publicly_accessible
|
1475
|
+
# Specifies whether your App Runner service is publicly accessible. To
|
1476
|
+
# make the service publicly accessible set it to `True`. To make the
|
1477
|
+
# service privately accessible, from only within an Amazon VPC set it
|
1478
|
+
# to `False`.
|
1479
|
+
# @return [Boolean]
|
1663
1480
|
#
|
1664
|
-
# @
|
1665
|
-
# data as a hash:
|
1481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/IngressConfiguration AWS API Documentation
|
1666
1482
|
#
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1483
|
+
class IngressConfiguration < Struct.new(
|
1484
|
+
:is_publicly_accessible)
|
1485
|
+
SENSITIVE = []
|
1486
|
+
include Aws::Structure
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
# The configuration of your VPC and the associated VPC endpoint. The VPC
|
1490
|
+
# endpoint is an Amazon Web Services PrivateLink resource that allows
|
1491
|
+
# access to your App Runner services from within an Amazon VPC.
|
1492
|
+
#
|
1493
|
+
# @!attribute [rw] vpc_id
|
1494
|
+
# The ID of the VPC that is used for the VPC endpoint.
|
1495
|
+
# @return [String]
|
1496
|
+
#
|
1497
|
+
# @!attribute [rw] vpc_endpoint_id
|
1498
|
+
# The ID of the VPC endpoint that your App Runner service connects to.
|
1499
|
+
# @return [String]
|
1500
|
+
#
|
1501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/IngressVpcConfiguration AWS API Documentation
|
1502
|
+
#
|
1503
|
+
class IngressVpcConfiguration < Struct.new(
|
1504
|
+
:vpc_id,
|
1505
|
+
:vpc_endpoint_id)
|
1506
|
+
SENSITIVE = []
|
1507
|
+
include Aws::Structure
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
# Describes the runtime configuration of an App Runner service instance
|
1511
|
+
# (scaling unit).
|
1672
1512
|
#
|
1673
1513
|
# @!attribute [rw] cpu
|
1674
1514
|
# The number of CPU units reserved for each instance of your App
|
@@ -1741,16 +1581,6 @@ module Aws::AppRunner
|
|
1741
1581
|
include Aws::Structure
|
1742
1582
|
end
|
1743
1583
|
|
1744
|
-
# @note When making an API call, you may pass ListAutoScalingConfigurationsRequest
|
1745
|
-
# data as a hash:
|
1746
|
-
#
|
1747
|
-
# {
|
1748
|
-
# auto_scaling_configuration_name: "AutoScalingConfigurationName",
|
1749
|
-
# latest_only: false,
|
1750
|
-
# max_results: 1,
|
1751
|
-
# next_token: "NextToken",
|
1752
|
-
# }
|
1753
|
-
#
|
1754
1584
|
# @!attribute [rw] auto_scaling_configuration_name
|
1755
1585
|
# The name of the App Runner auto scaling configuration that you want
|
1756
1586
|
# to list. If specified, App Runner lists revisions that share this
|
@@ -1817,15 +1647,6 @@ module Aws::AppRunner
|
|
1817
1647
|
include Aws::Structure
|
1818
1648
|
end
|
1819
1649
|
|
1820
|
-
# @note When making an API call, you may pass ListConnectionsRequest
|
1821
|
-
# data as a hash:
|
1822
|
-
#
|
1823
|
-
# {
|
1824
|
-
# connection_name: "ConnectionName",
|
1825
|
-
# max_results: 1,
|
1826
|
-
# next_token: "NextToken",
|
1827
|
-
# }
|
1828
|
-
#
|
1829
1650
|
# @!attribute [rw] connection_name
|
1830
1651
|
# If specified, only this connection is returned. If not specified,
|
1831
1652
|
# the result isn't filtered by name.
|
@@ -1879,16 +1700,6 @@ module Aws::AppRunner
|
|
1879
1700
|
include Aws::Structure
|
1880
1701
|
end
|
1881
1702
|
|
1882
|
-
# @note When making an API call, you may pass ListObservabilityConfigurationsRequest
|
1883
|
-
# data as a hash:
|
1884
|
-
#
|
1885
|
-
# {
|
1886
|
-
# observability_configuration_name: "ObservabilityConfigurationName",
|
1887
|
-
# latest_only: false,
|
1888
|
-
# max_results: 1,
|
1889
|
-
# next_token: "NextToken",
|
1890
|
-
# }
|
1891
|
-
#
|
1892
1703
|
# @!attribute [rw] observability_configuration_name
|
1893
1704
|
# The name of the App Runner observability configuration that you want
|
1894
1705
|
# to list. If specified, App Runner lists revisions that share this
|
@@ -1955,15 +1766,6 @@ module Aws::AppRunner
|
|
1955
1766
|
include Aws::Structure
|
1956
1767
|
end
|
1957
1768
|
|
1958
|
-
# @note When making an API call, you may pass ListOperationsRequest
|
1959
|
-
# data as a hash:
|
1960
|
-
#
|
1961
|
-
# {
|
1962
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1963
|
-
# next_token: "String",
|
1964
|
-
# max_results: 1,
|
1965
|
-
# }
|
1966
|
-
#
|
1967
1769
|
# @!attribute [rw] service_arn
|
1968
1770
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1969
1771
|
# want a list of operations for.
|
@@ -2017,14 +1819,6 @@ module Aws::AppRunner
|
|
2017
1819
|
include Aws::Structure
|
2018
1820
|
end
|
2019
1821
|
|
2020
|
-
# @note When making an API call, you may pass ListServicesRequest
|
2021
|
-
# data as a hash:
|
2022
|
-
#
|
2023
|
-
# {
|
2024
|
-
# next_token: "String",
|
2025
|
-
# max_results: 1,
|
2026
|
-
# }
|
2027
|
-
#
|
2028
1822
|
# @!attribute [rw] next_token
|
2029
1823
|
# A token from a previous result page. Used for a paginated request.
|
2030
1824
|
# The request retrieves the next result page. All other parameter
|
@@ -2072,13 +1866,6 @@ module Aws::AppRunner
|
|
2072
1866
|
include Aws::Structure
|
2073
1867
|
end
|
2074
1868
|
|
2075
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2076
|
-
# data as a hash:
|
2077
|
-
#
|
2078
|
-
# {
|
2079
|
-
# resource_arn: "AppRunnerResourceArn", # required
|
2080
|
-
# }
|
2081
|
-
#
|
2082
1869
|
# @!attribute [rw] resource_arn
|
2083
1870
|
# The Amazon Resource Name (ARN) of the resource that a tag list is
|
2084
1871
|
# requested for.
|
@@ -2107,14 +1894,6 @@ module Aws::AppRunner
|
|
2107
1894
|
include Aws::Structure
|
2108
1895
|
end
|
2109
1896
|
|
2110
|
-
# @note When making an API call, you may pass ListVpcConnectorsRequest
|
2111
|
-
# data as a hash:
|
2112
|
-
#
|
2113
|
-
# {
|
2114
|
-
# max_results: 1,
|
2115
|
-
# next_token: "NextToken",
|
2116
|
-
# }
|
2117
|
-
#
|
2118
1897
|
# @!attribute [rw] max_results
|
2119
1898
|
# The maximum number of results to include in each response (result
|
2120
1899
|
# page). It's used for a paginated request.
|
@@ -2162,28 +1941,97 @@ module Aws::AppRunner
|
|
2162
1941
|
include Aws::Structure
|
2163
1942
|
end
|
2164
1943
|
|
1944
|
+
# Returns a list of VPC Ingress Connections based on the filter
|
1945
|
+
# provided. It can return either `ServiceArn` or `VpcEndpointId`, or
|
1946
|
+
# both.
|
1947
|
+
#
|
1948
|
+
# @!attribute [rw] service_arn
|
1949
|
+
# The Amazon Resource Name (ARN) of a service to filter by.
|
1950
|
+
# @return [String]
|
1951
|
+
#
|
1952
|
+
# @!attribute [rw] vpc_endpoint_id
|
1953
|
+
# The ID of a VPC Endpoint to filter by.
|
1954
|
+
# @return [String]
|
1955
|
+
#
|
1956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnectionsFilter AWS API Documentation
|
1957
|
+
#
|
1958
|
+
class ListVpcIngressConnectionsFilter < Struct.new(
|
1959
|
+
:service_arn,
|
1960
|
+
:vpc_endpoint_id)
|
1961
|
+
SENSITIVE = []
|
1962
|
+
include Aws::Structure
|
1963
|
+
end
|
1964
|
+
|
1965
|
+
# @!attribute [rw] filter
|
1966
|
+
# The VPC Ingress Connections to be listed based on either the Service
|
1967
|
+
# Arn or Vpc Endpoint Id, or both.
|
1968
|
+
# @return [Types::ListVpcIngressConnectionsFilter]
|
1969
|
+
#
|
1970
|
+
# @!attribute [rw] max_results
|
1971
|
+
# The maximum number of results to include in each response (result
|
1972
|
+
# page). It's used for a paginated request.
|
1973
|
+
#
|
1974
|
+
# If you don't specify `MaxResults`, the request retrieves all
|
1975
|
+
# available results in a single response.
|
1976
|
+
# @return [Integer]
|
1977
|
+
#
|
1978
|
+
# @!attribute [rw] next_token
|
1979
|
+
# A token from a previous result page. It's used for a paginated
|
1980
|
+
# request. The request retrieves the next result page. All other
|
1981
|
+
# parameter values must be identical to the ones that are specified in
|
1982
|
+
# the initial request.
|
1983
|
+
#
|
1984
|
+
# If you don't specify `NextToken`, the request retrieves the first
|
1985
|
+
# result page.
|
1986
|
+
# @return [String]
|
1987
|
+
#
|
1988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnectionsRequest AWS API Documentation
|
1989
|
+
#
|
1990
|
+
class ListVpcIngressConnectionsRequest < Struct.new(
|
1991
|
+
:filter,
|
1992
|
+
:max_results,
|
1993
|
+
:next_token)
|
1994
|
+
SENSITIVE = []
|
1995
|
+
include Aws::Structure
|
1996
|
+
end
|
1997
|
+
|
1998
|
+
# @!attribute [rw] vpc_ingress_connection_summary_list
|
1999
|
+
# A list of summary information records for VPC Ingress Connections.
|
2000
|
+
# In a paginated request, the request returns up to `MaxResults`
|
2001
|
+
# records for each call.
|
2002
|
+
# @return [Array<Types::VpcIngressConnectionSummary>]
|
2003
|
+
#
|
2004
|
+
# @!attribute [rw] next_token
|
2005
|
+
# The token that you can pass in a subsequent request to get the next
|
2006
|
+
# result page. It's returned in a paginated request.
|
2007
|
+
# @return [String]
|
2008
|
+
#
|
2009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnectionsResponse AWS API Documentation
|
2010
|
+
#
|
2011
|
+
class ListVpcIngressConnectionsResponse < Struct.new(
|
2012
|
+
:vpc_ingress_connection_summary_list,
|
2013
|
+
:next_token)
|
2014
|
+
SENSITIVE = []
|
2015
|
+
include Aws::Structure
|
2016
|
+
end
|
2017
|
+
|
2165
2018
|
# Describes configuration settings related to network traffic of an App
|
2166
2019
|
# Runner service. Consists of embedded objects for each configurable
|
2167
2020
|
# network feature.
|
2168
2021
|
#
|
2169
|
-
# @note When making an API call, you may pass NetworkConfiguration
|
2170
|
-
# data as a hash:
|
2171
|
-
#
|
2172
|
-
# {
|
2173
|
-
# egress_configuration: {
|
2174
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
2175
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
2176
|
-
# },
|
2177
|
-
# }
|
2178
|
-
#
|
2179
2022
|
# @!attribute [rw] egress_configuration
|
2180
2023
|
# Network configuration settings for outbound message traffic.
|
2181
2024
|
# @return [Types::EgressConfiguration]
|
2182
2025
|
#
|
2026
|
+
# @!attribute [rw] ingress_configuration
|
2027
|
+
# Network configuration settings for inbound message traffic.
|
2028
|
+
# @return [Types::IngressConfiguration]
|
2029
|
+
#
|
2183
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/NetworkConfiguration AWS API Documentation
|
2184
2031
|
#
|
2185
2032
|
class NetworkConfiguration < Struct.new(
|
2186
|
-
:egress_configuration
|
2033
|
+
:egress_configuration,
|
2034
|
+
:ingress_configuration)
|
2187
2035
|
SENSITIVE = []
|
2188
2036
|
include Aws::Structure
|
2189
2037
|
end
|
@@ -2344,13 +2192,6 @@ module Aws::AppRunner
|
|
2344
2192
|
include Aws::Structure
|
2345
2193
|
end
|
2346
2194
|
|
2347
|
-
# @note When making an API call, you may pass PauseServiceRequest
|
2348
|
-
# data as a hash:
|
2349
|
-
#
|
2350
|
-
# {
|
2351
|
-
# service_arn: "AppRunnerResourceArn", # required
|
2352
|
-
# }
|
2353
|
-
#
|
2354
2195
|
# @!attribute [rw] service_arn
|
2355
2196
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
2356
2197
|
# want to pause.
|
@@ -2398,13 +2239,6 @@ module Aws::AppRunner
|
|
2398
2239
|
include Aws::Structure
|
2399
2240
|
end
|
2400
2241
|
|
2401
|
-
# @note When making an API call, you may pass ResumeServiceRequest
|
2402
|
-
# data as a hash:
|
2403
|
-
#
|
2404
|
-
# {
|
2405
|
-
# service_arn: "AppRunnerResourceArn", # required
|
2406
|
-
# }
|
2407
|
-
#
|
2408
2242
|
# @!attribute [rw] service_arn
|
2409
2243
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
2410
2244
|
# want to resume.
|
@@ -2569,14 +2403,6 @@ module Aws::AppRunner
|
|
2569
2403
|
# choose to enable. They're configured in a separate resource that you
|
2570
2404
|
# associate with your service.
|
2571
2405
|
#
|
2572
|
-
# @note When making an API call, you may pass ServiceObservabilityConfiguration
|
2573
|
-
# data as a hash:
|
2574
|
-
#
|
2575
|
-
# {
|
2576
|
-
# observability_enabled: false, # required
|
2577
|
-
# observability_configuration_arn: "AppRunnerResourceArn",
|
2578
|
-
# }
|
2579
|
-
#
|
2580
2406
|
# @!attribute [rw] observability_enabled
|
2581
2407
|
# When `true`, an observability configuration resource is associated
|
2582
2408
|
# with the service, and an `ObservabilityConfigurationArn` is
|
@@ -2704,14 +2530,6 @@ module Aws::AppRunner
|
|
2704
2530
|
# Identifies a version of code that App Runner refers to within a source
|
2705
2531
|
# code repository.
|
2706
2532
|
#
|
2707
|
-
# @note When making an API call, you may pass SourceCodeVersion
|
2708
|
-
# data as a hash:
|
2709
|
-
#
|
2710
|
-
# {
|
2711
|
-
# type: "BRANCH", # required, accepts BRANCH
|
2712
|
-
# value: "String", # required
|
2713
|
-
# }
|
2714
|
-
#
|
2715
2533
|
# @!attribute [rw] type
|
2716
2534
|
# The type of version identifier.
|
2717
2535
|
#
|
@@ -2737,47 +2555,6 @@ module Aws::AppRunner
|
|
2737
2555
|
# Describes the source deployed to an App Runner service. It can be a
|
2738
2556
|
# code or an image repository.
|
2739
2557
|
#
|
2740
|
-
# @note When making an API call, you may pass SourceConfiguration
|
2741
|
-
# data as a hash:
|
2742
|
-
#
|
2743
|
-
# {
|
2744
|
-
# code_repository: {
|
2745
|
-
# repository_url: "String", # required
|
2746
|
-
# source_code_version: { # required
|
2747
|
-
# type: "BRANCH", # required, accepts BRANCH
|
2748
|
-
# value: "String", # required
|
2749
|
-
# },
|
2750
|
-
# code_configuration: {
|
2751
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
2752
|
-
# code_configuration_values: {
|
2753
|
-
# 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
|
-
# build_command: "BuildCommand",
|
2755
|
-
# start_command: "StartCommand",
|
2756
|
-
# port: "String",
|
2757
|
-
# runtime_environment_variables: {
|
2758
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
2759
|
-
# },
|
2760
|
-
# },
|
2761
|
-
# },
|
2762
|
-
# },
|
2763
|
-
# image_repository: {
|
2764
|
-
# image_identifier: "ImageIdentifier", # required
|
2765
|
-
# image_configuration: {
|
2766
|
-
# runtime_environment_variables: {
|
2767
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
2768
|
-
# },
|
2769
|
-
# start_command: "StartCommand",
|
2770
|
-
# port: "String",
|
2771
|
-
# },
|
2772
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
2773
|
-
# },
|
2774
|
-
# auto_deployments_enabled: false,
|
2775
|
-
# authentication_configuration: {
|
2776
|
-
# connection_arn: "AppRunnerResourceArn",
|
2777
|
-
# access_role_arn: "RoleArn",
|
2778
|
-
# },
|
2779
|
-
# }
|
2780
|
-
#
|
2781
2558
|
# @!attribute [rw] code_repository
|
2782
2559
|
# The description of a source code repository.
|
2783
2560
|
#
|
@@ -2822,13 +2599,6 @@ module Aws::AppRunner
|
|
2822
2599
|
include Aws::Structure
|
2823
2600
|
end
|
2824
2601
|
|
2825
|
-
# @note When making an API call, you may pass StartDeploymentRequest
|
2826
|
-
# data as a hash:
|
2827
|
-
#
|
2828
|
-
# {
|
2829
|
-
# service_arn: "AppRunnerResourceArn", # required
|
2830
|
-
# }
|
2831
|
-
#
|
2832
2602
|
# @!attribute [rw] service_arn
|
2833
2603
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
2834
2604
|
# want to manually deploy to.
|
@@ -2859,14 +2629,6 @@ module Aws::AppRunner
|
|
2859
2629
|
# Describes a tag that is applied to an App Runner resource. A tag is a
|
2860
2630
|
# metadata item consisting of a key-value pair.
|
2861
2631
|
#
|
2862
|
-
# @note When making an API call, you may pass Tag
|
2863
|
-
# data as a hash:
|
2864
|
-
#
|
2865
|
-
# {
|
2866
|
-
# key: "TagKey",
|
2867
|
-
# value: "TagValue",
|
2868
|
-
# }
|
2869
|
-
#
|
2870
2632
|
# @!attribute [rw] key
|
2871
2633
|
# The key of the tag.
|
2872
2634
|
# @return [String]
|
@@ -2884,19 +2646,6 @@ module Aws::AppRunner
|
|
2884
2646
|
include Aws::Structure
|
2885
2647
|
end
|
2886
2648
|
|
2887
|
-
# @note When making an API call, you may pass TagResourceRequest
|
2888
|
-
# data as a hash:
|
2889
|
-
#
|
2890
|
-
# {
|
2891
|
-
# resource_arn: "AppRunnerResourceArn", # required
|
2892
|
-
# tags: [ # required
|
2893
|
-
# {
|
2894
|
-
# key: "TagKey",
|
2895
|
-
# value: "TagValue",
|
2896
|
-
# },
|
2897
|
-
# ],
|
2898
|
-
# }
|
2899
|
-
#
|
2900
2649
|
# @!attribute [rw] resource_arn
|
2901
2650
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
2902
2651
|
# update tags for.
|
@@ -2927,13 +2676,6 @@ module Aws::AppRunner
|
|
2927
2676
|
# Describes the configuration of the tracing feature within an App
|
2928
2677
|
# Runner observability configuration.
|
2929
2678
|
#
|
2930
|
-
# @note When making an API call, you may pass TraceConfiguration
|
2931
|
-
# data as a hash:
|
2932
|
-
#
|
2933
|
-
# {
|
2934
|
-
# vendor: "AWSXRAY", # required, accepts AWSXRAY
|
2935
|
-
# }
|
2936
|
-
#
|
2937
2679
|
# @!attribute [rw] vendor
|
2938
2680
|
# The implementation provider chosen for tracing App Runner services.
|
2939
2681
|
# @return [String]
|
@@ -2946,14 +2688,6 @@ module Aws::AppRunner
|
|
2946
2688
|
include Aws::Structure
|
2947
2689
|
end
|
2948
2690
|
|
2949
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
2950
|
-
# data as a hash:
|
2951
|
-
#
|
2952
|
-
# {
|
2953
|
-
# resource_arn: "AppRunnerResourceArn", # required
|
2954
|
-
# tag_keys: ["TagKey"], # required
|
2955
|
-
# }
|
2956
|
-
#
|
2957
2691
|
# @!attribute [rw] resource_arn
|
2958
2692
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
2959
2693
|
# remove tags from.
|
@@ -2978,74 +2712,6 @@ module Aws::AppRunner
|
|
2978
2712
|
#
|
2979
2713
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2980
2714
|
|
2981
|
-
# @note When making an API call, you may pass UpdateServiceRequest
|
2982
|
-
# data as a hash:
|
2983
|
-
#
|
2984
|
-
# {
|
2985
|
-
# service_arn: "AppRunnerResourceArn", # required
|
2986
|
-
# source_configuration: {
|
2987
|
-
# code_repository: {
|
2988
|
-
# repository_url: "String", # required
|
2989
|
-
# source_code_version: { # required
|
2990
|
-
# type: "BRANCH", # required, accepts BRANCH
|
2991
|
-
# value: "String", # required
|
2992
|
-
# },
|
2993
|
-
# code_configuration: {
|
2994
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
2995
|
-
# code_configuration_values: {
|
2996
|
-
# 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
|
-
# build_command: "BuildCommand",
|
2998
|
-
# start_command: "StartCommand",
|
2999
|
-
# port: "String",
|
3000
|
-
# runtime_environment_variables: {
|
3001
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
3002
|
-
# },
|
3003
|
-
# },
|
3004
|
-
# },
|
3005
|
-
# },
|
3006
|
-
# image_repository: {
|
3007
|
-
# image_identifier: "ImageIdentifier", # required
|
3008
|
-
# image_configuration: {
|
3009
|
-
# runtime_environment_variables: {
|
3010
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
3011
|
-
# },
|
3012
|
-
# start_command: "StartCommand",
|
3013
|
-
# port: "String",
|
3014
|
-
# },
|
3015
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
3016
|
-
# },
|
3017
|
-
# auto_deployments_enabled: false,
|
3018
|
-
# authentication_configuration: {
|
3019
|
-
# connection_arn: "AppRunnerResourceArn",
|
3020
|
-
# access_role_arn: "RoleArn",
|
3021
|
-
# },
|
3022
|
-
# },
|
3023
|
-
# instance_configuration: {
|
3024
|
-
# cpu: "Cpu",
|
3025
|
-
# memory: "Memory",
|
3026
|
-
# instance_role_arn: "RoleArn",
|
3027
|
-
# },
|
3028
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn",
|
3029
|
-
# health_check_configuration: {
|
3030
|
-
# protocol: "TCP", # accepts TCP, HTTP
|
3031
|
-
# path: "HealthCheckPath",
|
3032
|
-
# interval: 1,
|
3033
|
-
# timeout: 1,
|
3034
|
-
# healthy_threshold: 1,
|
3035
|
-
# unhealthy_threshold: 1,
|
3036
|
-
# },
|
3037
|
-
# network_configuration: {
|
3038
|
-
# egress_configuration: {
|
3039
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
3040
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
3041
|
-
# },
|
3042
|
-
# },
|
3043
|
-
# observability_configuration: {
|
3044
|
-
# observability_enabled: false, # required
|
3045
|
-
# observability_configuration_arn: "AppRunnerResourceArn",
|
3046
|
-
# },
|
3047
|
-
# }
|
3048
|
-
#
|
3049
2715
|
# @!attribute [rw] service_arn
|
3050
2716
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
3051
2717
|
# want to update.
|
@@ -3124,6 +2790,39 @@ module Aws::AppRunner
|
|
3124
2790
|
include Aws::Structure
|
3125
2791
|
end
|
3126
2792
|
|
2793
|
+
# @!attribute [rw] vpc_ingress_connection_arn
|
2794
|
+
# The Amazon Resource Name (Arn) for the App Runner VPC Ingress
|
2795
|
+
# Connection resource that you want to update.
|
2796
|
+
# @return [String]
|
2797
|
+
#
|
2798
|
+
# @!attribute [rw] ingress_vpc_configuration
|
2799
|
+
# Specifications for the customer’s Amazon VPC and the related Amazon
|
2800
|
+
# Web Services PrivateLink VPC endpoint that are used to update the
|
2801
|
+
# VPC Ingress Connection resource.
|
2802
|
+
# @return [Types::IngressVpcConfiguration]
|
2803
|
+
#
|
2804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnectionRequest AWS API Documentation
|
2805
|
+
#
|
2806
|
+
class UpdateVpcIngressConnectionRequest < Struct.new(
|
2807
|
+
:vpc_ingress_connection_arn,
|
2808
|
+
:ingress_vpc_configuration)
|
2809
|
+
SENSITIVE = []
|
2810
|
+
include Aws::Structure
|
2811
|
+
end
|
2812
|
+
|
2813
|
+
# @!attribute [rw] vpc_ingress_connection
|
2814
|
+
# A description of the App Runner VPC Ingress Connection resource
|
2815
|
+
# that's updated by this request.
|
2816
|
+
# @return [Types::VpcIngressConnection]
|
2817
|
+
#
|
2818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnectionResponse AWS API Documentation
|
2819
|
+
#
|
2820
|
+
class UpdateVpcIngressConnectionResponse < Struct.new(
|
2821
|
+
:vpc_ingress_connection)
|
2822
|
+
SENSITIVE = []
|
2823
|
+
include Aws::Structure
|
2824
|
+
end
|
2825
|
+
|
3127
2826
|
# Describes an App Runner VPC connector resource. A VPC connector
|
3128
2827
|
# describes the Amazon Virtual Private Cloud (Amazon VPC) that an App
|
3129
2828
|
# Runner service is associated with, and the subnets and security group
|
@@ -3197,5 +2896,129 @@ module Aws::AppRunner
|
|
3197
2896
|
include Aws::Structure
|
3198
2897
|
end
|
3199
2898
|
|
2899
|
+
# DNS Target record for a custom domain of this Amazon VPC.
|
2900
|
+
#
|
2901
|
+
# @!attribute [rw] vpc_ingress_connection_arn
|
2902
|
+
# The Amazon Resource Name (ARN) of the VPC Ingress Connection that is
|
2903
|
+
# associated with your service.
|
2904
|
+
# @return [String]
|
2905
|
+
#
|
2906
|
+
# @!attribute [rw] vpc_id
|
2907
|
+
# The ID of the Amazon VPC that is associated with the custom domain
|
2908
|
+
# name of the target DNS.
|
2909
|
+
# @return [String]
|
2910
|
+
#
|
2911
|
+
# @!attribute [rw] domain_name
|
2912
|
+
# The domain name of your target DNS that is associated with the
|
2913
|
+
# Amazon VPC.
|
2914
|
+
# @return [String]
|
2915
|
+
#
|
2916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/VpcDNSTarget AWS API Documentation
|
2917
|
+
#
|
2918
|
+
class VpcDNSTarget < Struct.new(
|
2919
|
+
:vpc_ingress_connection_arn,
|
2920
|
+
:vpc_id,
|
2921
|
+
:domain_name)
|
2922
|
+
SENSITIVE = []
|
2923
|
+
include Aws::Structure
|
2924
|
+
end
|
2925
|
+
|
2926
|
+
# The App Runner resource that specifies an App Runner endpoint for
|
2927
|
+
# incoming traffic. It establishes a connection between a VPC interface
|
2928
|
+
# endpoint and a App Runner service, to make your App Runner service
|
2929
|
+
# accessible from only within an Amazon VPC.
|
2930
|
+
#
|
2931
|
+
# @!attribute [rw] vpc_ingress_connection_arn
|
2932
|
+
# The Amazon Resource Name (ARN) of the VPC Ingress Connection.
|
2933
|
+
# @return [String]
|
2934
|
+
#
|
2935
|
+
# @!attribute [rw] vpc_ingress_connection_name
|
2936
|
+
# The customer-provided VPC Ingress Connection name.
|
2937
|
+
# @return [String]
|
2938
|
+
#
|
2939
|
+
# @!attribute [rw] service_arn
|
2940
|
+
# The Amazon Resource Name (ARN) of the service associated with the
|
2941
|
+
# VPC Ingress Connection.
|
2942
|
+
# @return [String]
|
2943
|
+
#
|
2944
|
+
# @!attribute [rw] status
|
2945
|
+
# The current status of the VPC Ingress Connection. The VPC Ingress
|
2946
|
+
# Connection displays one of the following statuses: `AVAILABLE`,
|
2947
|
+
# `PENDING_CREATION`, `PENDING_UPDATE`,
|
2948
|
+
# `PENDING_DELETION`,`FAILED_CREATION`, `FAILED_UPDATE`,
|
2949
|
+
# `FAILED_DELETION`, and `DELETED`..
|
2950
|
+
# @return [String]
|
2951
|
+
#
|
2952
|
+
# @!attribute [rw] account_id
|
2953
|
+
# The Account Id you use to create the VPC Ingress Connection
|
2954
|
+
# resource.
|
2955
|
+
# @return [String]
|
2956
|
+
#
|
2957
|
+
# @!attribute [rw] domain_name
|
2958
|
+
# The domain name associated with the VPC Ingress Connection resource.
|
2959
|
+
# @return [String]
|
2960
|
+
#
|
2961
|
+
# @!attribute [rw] ingress_vpc_configuration
|
2962
|
+
# Specifications for the customer’s VPC and related PrivateLink VPC
|
2963
|
+
# endpoint that are used to associate with the VPC Ingress Connection
|
2964
|
+
# resource.
|
2965
|
+
# @return [Types::IngressVpcConfiguration]
|
2966
|
+
#
|
2967
|
+
# @!attribute [rw] created_at
|
2968
|
+
# The time when the VPC Ingress Connection was created. It's in the
|
2969
|
+
# Unix time stamp format.
|
2970
|
+
#
|
2971
|
+
# * Type: Timestamp
|
2972
|
+
#
|
2973
|
+
# * Required: Yes
|
2974
|
+
# @return [Time]
|
2975
|
+
#
|
2976
|
+
# @!attribute [rw] deleted_at
|
2977
|
+
# The time when the App Runner service was deleted. It's in the Unix
|
2978
|
+
# time stamp format.
|
2979
|
+
#
|
2980
|
+
# * Type: Timestamp
|
2981
|
+
#
|
2982
|
+
# * Required: No
|
2983
|
+
# @return [Time]
|
2984
|
+
#
|
2985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/VpcIngressConnection AWS API Documentation
|
2986
|
+
#
|
2987
|
+
class VpcIngressConnection < Struct.new(
|
2988
|
+
:vpc_ingress_connection_arn,
|
2989
|
+
:vpc_ingress_connection_name,
|
2990
|
+
:service_arn,
|
2991
|
+
:status,
|
2992
|
+
:account_id,
|
2993
|
+
:domain_name,
|
2994
|
+
:ingress_vpc_configuration,
|
2995
|
+
:created_at,
|
2996
|
+
:deleted_at)
|
2997
|
+
SENSITIVE = []
|
2998
|
+
include Aws::Structure
|
2999
|
+
end
|
3000
|
+
|
3001
|
+
# Provides summary information about an VPC Ingress Connection, which
|
3002
|
+
# includes its VPC Ingress Connection ARN and its associated Service
|
3003
|
+
# ARN.
|
3004
|
+
#
|
3005
|
+
# @!attribute [rw] vpc_ingress_connection_arn
|
3006
|
+
# The Amazon Resource Name (ARN) of the VPC Ingress Connection.
|
3007
|
+
# @return [String]
|
3008
|
+
#
|
3009
|
+
# @!attribute [rw] service_arn
|
3010
|
+
# The Amazon Resource Name (ARN) of the service associated with the
|
3011
|
+
# VPC Ingress Connection.
|
3012
|
+
# @return [String]
|
3013
|
+
#
|
3014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/VpcIngressConnectionSummary AWS API Documentation
|
3015
|
+
#
|
3016
|
+
class VpcIngressConnectionSummary < Struct.new(
|
3017
|
+
:vpc_ingress_connection_arn,
|
3018
|
+
:service_arn)
|
3019
|
+
SENSITIVE = []
|
3020
|
+
include Aws::Structure
|
3021
|
+
end
|
3022
|
+
|
3200
3023
|
end
|
3201
3024
|
end
|