pulumi-aws 7.15.0__py3-none-any.whl → 7.16.0__py3-none-any.whl
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.
- pulumi_aws/__init__.py +80 -0
- pulumi_aws/alb/listener.py +7 -7
- pulumi_aws/alb/target_group.py +7 -7
- pulumi_aws/alb/target_group_attachment.py +83 -0
- pulumi_aws/apigateway/domain_name.py +86 -7
- pulumi_aws/apigateway/get_domain_name.py +15 -1
- pulumi_aws/apigateway/integration.py +48 -8
- pulumi_aws/athena/_inputs.py +412 -5
- pulumi_aws/athena/outputs.py +342 -2
- pulumi_aws/backup/global_settings.py +15 -7
- pulumi_aws/bedrock/agentcore_memory_strategy.py +8 -0
- pulumi_aws/cleanrooms/collaboration.py +26 -6
- pulumi_aws/cloudfront/__init__.py +6 -0
- pulumi_aws/cloudfront/_inputs.py +3601 -478
- pulumi_aws/cloudfront/connection_function.py +658 -0
- pulumi_aws/cloudfront/connection_group.py +649 -0
- pulumi_aws/cloudfront/distribution.py +142 -0
- pulumi_aws/cloudfront/distribution_tenant.py +857 -0
- pulumi_aws/cloudfront/get_connection_group.py +249 -0
- pulumi_aws/cloudfront/get_distribution_tenant.py +279 -0
- pulumi_aws/cloudfront/multitenant_distribution.py +1181 -0
- pulumi_aws/cloudfront/outputs.py +3034 -376
- pulumi_aws/cloudwatch/log_subscription_filter.py +136 -42
- pulumi_aws/directconnect/gateway.py +78 -3
- pulumi_aws/directconnect/get_gateway.py +24 -4
- pulumi_aws/dlm/_inputs.py +3 -3
- pulumi_aws/dlm/outputs.py +2 -2
- pulumi_aws/dynamodb/__init__.py +1 -0
- pulumi_aws/dynamodb/_inputs.py +370 -0
- pulumi_aws/dynamodb/global_secondary_index.py +666 -0
- pulumi_aws/dynamodb/outputs.py +315 -0
- pulumi_aws/dynamodb/table.py +9 -1
- pulumi_aws/ec2/_inputs.py +44 -4
- pulumi_aws/ec2/get_vpc_endpoint.py +24 -4
- pulumi_aws/ec2/outputs.py +54 -4
- pulumi_aws/ecr/__init__.py +1 -0
- pulumi_aws/ecr/_inputs.py +58 -22
- pulumi_aws/ecr/get_repository_creation_template.py +1 -1
- pulumi_aws/ecr/lifecycle_policy.py +152 -64
- pulumi_aws/ecr/outputs.py +37 -15
- pulumi_aws/ecr/pull_time_update_exclusion.py +363 -0
- pulumi_aws/ecr/repository_creation_template.py +7 -7
- pulumi_aws/ecs/_inputs.py +20 -0
- pulumi_aws/ecs/outputs.py +14 -0
- pulumi_aws/ecs/task_definition.py +28 -28
- pulumi_aws/elasticache/replication_group.py +7 -7
- pulumi_aws/fsx/ontap_file_system.py +14 -0
- pulumi_aws/glue/resource_policy.py +4 -4
- pulumi_aws/guardduty/_inputs.py +41 -1
- pulumi_aws/guardduty/outputs.py +27 -1
- pulumi_aws/iam/get_saml_provider.py +15 -1
- pulumi_aws/iam/outbound_web_identity_federation.py +0 -4
- pulumi_aws/iam/policy.py +47 -0
- pulumi_aws/iam/saml_provider.py +28 -0
- pulumi_aws/iam/virtual_mfa_device.py +66 -38
- pulumi_aws/imagebuilder/_inputs.py +87 -0
- pulumi_aws/imagebuilder/image.py +47 -0
- pulumi_aws/imagebuilder/image_pipeline.py +47 -0
- pulumi_aws/imagebuilder/outputs.py +87 -0
- pulumi_aws/kms/grant.py +18 -18
- pulumi_aws/lambda_/_inputs.py +24 -4
- pulumi_aws/lambda_/event_source_mapping.py +2 -0
- pulumi_aws/lambda_/function.py +28 -0
- pulumi_aws/lambda_/function_url.py +4 -0
- pulumi_aws/lambda_/get_function.py +15 -1
- pulumi_aws/lambda_/outputs.py +17 -3
- pulumi_aws/lambda_/permission.py +47 -0
- pulumi_aws/lb/listener.py +7 -7
- pulumi_aws/lb/target_group.py +7 -7
- pulumi_aws/lb/target_group_attachment.py +83 -0
- pulumi_aws/networkfirewall/_inputs.py +3 -3
- pulumi_aws/networkfirewall/outputs.py +2 -2
- pulumi_aws/networkfirewall/vpc_endpoint_association.py +2 -2
- pulumi_aws/networkmanager/vpc_attachment.py +7 -7
- pulumi_aws/opensearchingest/pipeline.py +47 -0
- pulumi_aws/organizations/__init__.py +1 -0
- pulumi_aws/organizations/tag.py +292 -0
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/rds/cluster.py +21 -21
- pulumi_aws/rds/get_proxy.py +29 -1
- pulumi_aws/rds/proxy.py +94 -0
- pulumi_aws/rds/proxy_default_target_group.py +0 -76
- pulumi_aws/rds/proxy_target.py +0 -80
- pulumi_aws/redshift/__init__.py +1 -0
- pulumi_aws/redshift/_inputs.py +329 -0
- pulumi_aws/redshift/idc_application.py +687 -0
- pulumi_aws/redshift/outputs.py +265 -0
- pulumi_aws/route53/get_resolver_firewall_rules.py +9 -0
- pulumi_aws/route53/get_resolver_rule.py +19 -4
- pulumi_aws/route53/outputs.py +108 -1
- pulumi_aws/route53/resolver_firewall_rule.py +199 -32
- pulumi_aws/secretsmanager/__init__.py +1 -0
- pulumi_aws/secretsmanager/tag.py +333 -0
- pulumi_aws/sesv2/__init__.py +1 -0
- pulumi_aws/sesv2/tenant.py +418 -0
- pulumi_aws/sfn/activity.py +0 -4
- pulumi_aws/sfn/alias.py +0 -4
- pulumi_aws/transfer/_inputs.py +126 -0
- pulumi_aws/transfer/outputs.py +97 -0
- pulumi_aws/transfer/web_app.py +54 -7
- pulumi_aws/vpclattice/service_network_resource_association.py +47 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/RECORD +105 -93
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/top_level.txt +0 -0
pulumi_aws/__init__.py
CHANGED
|
@@ -2583,6 +2583,22 @@ _utilities.register(
|
|
|
2583
2583
|
"aws:cloudfront/cachePolicy:CachePolicy": "CachePolicy"
|
|
2584
2584
|
}
|
|
2585
2585
|
},
|
|
2586
|
+
{
|
|
2587
|
+
"pkg": "aws",
|
|
2588
|
+
"mod": "cloudfront/connectionFunction",
|
|
2589
|
+
"fqn": "pulumi_aws.cloudfront",
|
|
2590
|
+
"classes": {
|
|
2591
|
+
"aws:cloudfront/connectionFunction:ConnectionFunction": "ConnectionFunction"
|
|
2592
|
+
}
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
"pkg": "aws",
|
|
2596
|
+
"mod": "cloudfront/connectionGroup",
|
|
2597
|
+
"fqn": "pulumi_aws.cloudfront",
|
|
2598
|
+
"classes": {
|
|
2599
|
+
"aws:cloudfront/connectionGroup:ConnectionGroup": "ConnectionGroup"
|
|
2600
|
+
}
|
|
2601
|
+
},
|
|
2586
2602
|
{
|
|
2587
2603
|
"pkg": "aws",
|
|
2588
2604
|
"mod": "cloudfront/continuousDeploymentPolicy",
|
|
@@ -2599,6 +2615,14 @@ _utilities.register(
|
|
|
2599
2615
|
"aws:cloudfront/distribution:Distribution": "Distribution"
|
|
2600
2616
|
}
|
|
2601
2617
|
},
|
|
2618
|
+
{
|
|
2619
|
+
"pkg": "aws",
|
|
2620
|
+
"mod": "cloudfront/distributionTenant",
|
|
2621
|
+
"fqn": "pulumi_aws.cloudfront",
|
|
2622
|
+
"classes": {
|
|
2623
|
+
"aws:cloudfront/distributionTenant:DistributionTenant": "DistributionTenant"
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2602
2626
|
{
|
|
2603
2627
|
"pkg": "aws",
|
|
2604
2628
|
"mod": "cloudfront/fieldLevelEncryptionConfig",
|
|
@@ -2663,6 +2687,14 @@ _utilities.register(
|
|
|
2663
2687
|
"aws:cloudfront/monitoringSubscription:MonitoringSubscription": "MonitoringSubscription"
|
|
2664
2688
|
}
|
|
2665
2689
|
},
|
|
2690
|
+
{
|
|
2691
|
+
"pkg": "aws",
|
|
2692
|
+
"mod": "cloudfront/multitenantDistribution",
|
|
2693
|
+
"fqn": "pulumi_aws.cloudfront",
|
|
2694
|
+
"classes": {
|
|
2695
|
+
"aws:cloudfront/multitenantDistribution:MultitenantDistribution": "MultitenantDistribution"
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2666
2698
|
{
|
|
2667
2699
|
"pkg": "aws",
|
|
2668
2700
|
"mod": "cloudfront/originAccessControl",
|
|
@@ -4439,6 +4471,14 @@ _utilities.register(
|
|
|
4439
4471
|
"aws:dynamodb/contributorInsights:ContributorInsights": "ContributorInsights"
|
|
4440
4472
|
}
|
|
4441
4473
|
},
|
|
4474
|
+
{
|
|
4475
|
+
"pkg": "aws",
|
|
4476
|
+
"mod": "dynamodb/globalSecondaryIndex",
|
|
4477
|
+
"fqn": "pulumi_aws.dynamodb",
|
|
4478
|
+
"classes": {
|
|
4479
|
+
"aws:dynamodb/globalSecondaryIndex:GlobalSecondaryIndex": "GlobalSecondaryIndex"
|
|
4480
|
+
}
|
|
4481
|
+
},
|
|
4442
4482
|
{
|
|
4443
4483
|
"pkg": "aws",
|
|
4444
4484
|
"mod": "dynamodb/globalTable",
|
|
@@ -5639,6 +5679,14 @@ _utilities.register(
|
|
|
5639
5679
|
"aws:ecr/pullThroughCacheRule:PullThroughCacheRule": "PullThroughCacheRule"
|
|
5640
5680
|
}
|
|
5641
5681
|
},
|
|
5682
|
+
{
|
|
5683
|
+
"pkg": "aws",
|
|
5684
|
+
"mod": "ecr/pullTimeUpdateExclusion",
|
|
5685
|
+
"fqn": "pulumi_aws.ecr",
|
|
5686
|
+
"classes": {
|
|
5687
|
+
"aws:ecr/pullTimeUpdateExclusion:PullTimeUpdateExclusion": "PullTimeUpdateExclusion"
|
|
5688
|
+
}
|
|
5689
|
+
},
|
|
5642
5690
|
{
|
|
5643
5691
|
"pkg": "aws",
|
|
5644
5692
|
"mod": "ecr/registryPolicy",
|
|
@@ -9279,6 +9327,14 @@ _utilities.register(
|
|
|
9279
9327
|
"aws:organizations/resourcePolicy:ResourcePolicy": "ResourcePolicy"
|
|
9280
9328
|
}
|
|
9281
9329
|
},
|
|
9330
|
+
{
|
|
9331
|
+
"pkg": "aws",
|
|
9332
|
+
"mod": "organizations/tag",
|
|
9333
|
+
"fqn": "pulumi_aws.organizations",
|
|
9334
|
+
"classes": {
|
|
9335
|
+
"aws:organizations/tag:Tag": "Tag"
|
|
9336
|
+
}
|
|
9337
|
+
},
|
|
9282
9338
|
{
|
|
9283
9339
|
"pkg": "aws",
|
|
9284
9340
|
"mod": "paymentcryptography/key",
|
|
@@ -10015,6 +10071,14 @@ _utilities.register(
|
|
|
10015
10071
|
"aws:redshift/hsmConfiguration:HsmConfiguration": "HsmConfiguration"
|
|
10016
10072
|
}
|
|
10017
10073
|
},
|
|
10074
|
+
{
|
|
10075
|
+
"pkg": "aws",
|
|
10076
|
+
"mod": "redshift/idcApplication",
|
|
10077
|
+
"fqn": "pulumi_aws.redshift",
|
|
10078
|
+
"classes": {
|
|
10079
|
+
"aws:redshift/idcApplication:IdcApplication": "IdcApplication"
|
|
10080
|
+
}
|
|
10081
|
+
},
|
|
10018
10082
|
{
|
|
10019
10083
|
"pkg": "aws",
|
|
10020
10084
|
"mod": "redshift/integration",
|
|
@@ -11423,6 +11487,14 @@ _utilities.register(
|
|
|
11423
11487
|
"aws:secretsmanager/secretVersion:SecretVersion": "SecretVersion"
|
|
11424
11488
|
}
|
|
11425
11489
|
},
|
|
11490
|
+
{
|
|
11491
|
+
"pkg": "aws",
|
|
11492
|
+
"mod": "secretsmanager/tag",
|
|
11493
|
+
"fqn": "pulumi_aws.secretsmanager",
|
|
11494
|
+
"classes": {
|
|
11495
|
+
"aws:secretsmanager/tag:Tag": "Tag"
|
|
11496
|
+
}
|
|
11497
|
+
},
|
|
11426
11498
|
{
|
|
11427
11499
|
"pkg": "aws",
|
|
11428
11500
|
"mod": "securityhub/account",
|
|
@@ -11983,6 +12055,14 @@ _utilities.register(
|
|
|
11983
12055
|
"aws:sesv2/emailIdentityPolicy:EmailIdentityPolicy": "EmailIdentityPolicy"
|
|
11984
12056
|
}
|
|
11985
12057
|
},
|
|
12058
|
+
{
|
|
12059
|
+
"pkg": "aws",
|
|
12060
|
+
"mod": "sesv2/tenant",
|
|
12061
|
+
"fqn": "pulumi_aws.sesv2",
|
|
12062
|
+
"classes": {
|
|
12063
|
+
"aws:sesv2/tenant:Tenant": "Tenant"
|
|
12064
|
+
}
|
|
12065
|
+
},
|
|
11986
12066
|
{
|
|
11987
12067
|
"pkg": "aws",
|
|
11988
12068
|
"mod": "sfn/activity",
|
pulumi_aws/alb/listener.py
CHANGED
|
@@ -61,7 +61,7 @@ class ListenerArgs:
|
|
|
61
61
|
:param pulumi.Input[_builtins.str] certificate_arn: ARN of the default SSL server certificate. Exactly one certificate is required if the protocol is HTTPS. For adding additional SSL certificates, see the `lb.ListenerCertificate` resource.
|
|
62
62
|
:param pulumi.Input['ListenerMutualAuthenticationArgs'] mutual_authentication: The mutual authentication configuration information. See below.
|
|
63
63
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
64
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
64
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
65
65
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
66
66
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
67
67
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -225,7 +225,7 @@ class ListenerArgs:
|
|
|
225
225
|
@pulumi.getter
|
|
226
226
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
227
227
|
"""
|
|
228
|
-
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
228
|
+
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "protocol")
|
|
231
231
|
|
|
@@ -558,7 +558,7 @@ class _ListenerState:
|
|
|
558
558
|
The following arguments are optional:
|
|
559
559
|
:param pulumi.Input['ListenerMutualAuthenticationArgs'] mutual_authentication: The mutual authentication configuration information. See below.
|
|
560
560
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
561
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
561
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
562
562
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
563
563
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
564
564
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -741,7 +741,7 @@ class _ListenerState:
|
|
|
741
741
|
@pulumi.getter
|
|
742
742
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
743
743
|
"""
|
|
744
|
-
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
744
|
+
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
745
745
|
"""
|
|
746
746
|
return pulumi.get(self, "protocol")
|
|
747
747
|
|
|
@@ -1372,7 +1372,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1372
1372
|
The following arguments are optional:
|
|
1373
1373
|
:param pulumi.Input[Union['ListenerMutualAuthenticationArgs', 'ListenerMutualAuthenticationArgsDict']] mutual_authentication: The mutual authentication configuration information. See below.
|
|
1374
1374
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
1375
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
1375
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
1376
1376
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
1377
1377
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
1378
1378
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -1840,7 +1840,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1840
1840
|
The following arguments are optional:
|
|
1841
1841
|
:param pulumi.Input[Union['ListenerMutualAuthenticationArgs', 'ListenerMutualAuthenticationArgsDict']] mutual_authentication: The mutual authentication configuration information. See below.
|
|
1842
1842
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
1843
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
1843
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
1844
1844
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
1845
1845
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
1846
1846
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -1968,7 +1968,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1968
1968
|
@pulumi.getter
|
|
1969
1969
|
def protocol(self) -> pulumi.Output[_builtins.str]:
|
|
1970
1970
|
"""
|
|
1971
|
-
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
1971
|
+
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
1972
1972
|
"""
|
|
1973
1973
|
return pulumi.get(self, "protocol")
|
|
1974
1974
|
|
pulumi_aws/alb/target_group.py
CHANGED
|
@@ -61,7 +61,7 @@ class TargetGroupArgs:
|
|
|
61
61
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
62
62
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
63
63
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
64
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
64
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
65
65
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
66
66
|
Does not apply when `target_type` is `lambda`.
|
|
67
67
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -287,7 +287,7 @@ class TargetGroupArgs:
|
|
|
287
287
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
288
288
|
"""
|
|
289
289
|
Protocol to use for routing traffic to the targets.
|
|
290
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
290
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
291
291
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
292
292
|
Does not apply when `target_type` is `lambda`.
|
|
293
293
|
"""
|
|
@@ -502,7 +502,7 @@ class _TargetGroupState:
|
|
|
502
502
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
503
503
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
504
504
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
505
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
505
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
506
506
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
507
507
|
Does not apply when `target_type` is `lambda`.
|
|
508
508
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -773,7 +773,7 @@ class _TargetGroupState:
|
|
|
773
773
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
774
774
|
"""
|
|
775
775
|
Protocol to use for routing traffic to the targets.
|
|
776
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
776
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
777
777
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
778
778
|
Does not apply when `target_type` is `lambda`.
|
|
779
779
|
"""
|
|
@@ -1109,7 +1109,7 @@ class TargetGroup(pulumi.CustomResource):
|
|
|
1109
1109
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
1110
1110
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
1111
1111
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
1112
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
1112
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
1113
1113
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
1114
1114
|
Does not apply when `target_type` is `lambda`.
|
|
1115
1115
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -1395,7 +1395,7 @@ class TargetGroup(pulumi.CustomResource):
|
|
|
1395
1395
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
1396
1396
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
1397
1397
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
1398
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
1398
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
1399
1399
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
1400
1400
|
Does not apply when `target_type` is `lambda`.
|
|
1401
1401
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -1582,7 +1582,7 @@ class TargetGroup(pulumi.CustomResource):
|
|
|
1582
1582
|
def protocol(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1583
1583
|
"""
|
|
1584
1584
|
Protocol to use for routing traffic to the targets.
|
|
1585
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
1585
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
1586
1586
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
1587
1587
|
Does not apply when `target_type` is `lambda`.
|
|
1588
1588
|
"""
|
|
@@ -23,6 +23,7 @@ class TargetGroupAttachmentArgs:
|
|
|
23
23
|
target_id: pulumi.Input[_builtins.str],
|
|
24
24
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
25
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
26
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
27
|
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
27
28
|
"""
|
|
28
29
|
The set of arguments for constructing a TargetGroupAttachment resource.
|
|
@@ -32,6 +33,7 @@ class TargetGroupAttachmentArgs:
|
|
|
32
33
|
The following arguments are optional:
|
|
33
34
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
34
35
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
36
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
35
37
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
36
38
|
"""
|
|
37
39
|
pulumi.set(__self__, "target_group_arn", target_group_arn)
|
|
@@ -40,6 +42,8 @@ class TargetGroupAttachmentArgs:
|
|
|
40
42
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
41
43
|
if port is not None:
|
|
42
44
|
pulumi.set(__self__, "port", port)
|
|
45
|
+
if quic_server_id is not None:
|
|
46
|
+
pulumi.set(__self__, "quic_server_id", quic_server_id)
|
|
43
47
|
if region is not None:
|
|
44
48
|
pulumi.set(__self__, "region", region)
|
|
45
49
|
|
|
@@ -93,6 +97,18 @@ class TargetGroupAttachmentArgs:
|
|
|
93
97
|
def port(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
94
98
|
pulumi.set(self, "port", value)
|
|
95
99
|
|
|
100
|
+
@_builtins.property
|
|
101
|
+
@pulumi.getter(name="quicServerId")
|
|
102
|
+
def quic_server_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
103
|
+
"""
|
|
104
|
+
Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "quic_server_id")
|
|
107
|
+
|
|
108
|
+
@quic_server_id.setter
|
|
109
|
+
def quic_server_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
110
|
+
pulumi.set(self, "quic_server_id", value)
|
|
111
|
+
|
|
96
112
|
@_builtins.property
|
|
97
113
|
@pulumi.getter
|
|
98
114
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -111,6 +127,7 @@ class _TargetGroupAttachmentState:
|
|
|
111
127
|
def __init__(__self__, *,
|
|
112
128
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
113
129
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
130
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
114
131
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
115
132
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
116
133
|
target_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
@@ -118,6 +135,7 @@ class _TargetGroupAttachmentState:
|
|
|
118
135
|
Input properties used for looking up and filtering TargetGroupAttachment resources.
|
|
119
136
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
120
137
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
138
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
121
139
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
122
140
|
:param pulumi.Input[_builtins.str] target_group_arn: The ARN of the target group with which to register targets.
|
|
123
141
|
:param pulumi.Input[_builtins.str] target_id: The ID of the target. This is the Instance ID for an instance, or the container ID for an ECS container. If the target type is `ip`, specify an IP address. If the target type is `lambda`, specify the Lambda function ARN. If the target type is `alb`, specify the ALB ARN.
|
|
@@ -128,6 +146,8 @@ class _TargetGroupAttachmentState:
|
|
|
128
146
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
129
147
|
if port is not None:
|
|
130
148
|
pulumi.set(__self__, "port", port)
|
|
149
|
+
if quic_server_id is not None:
|
|
150
|
+
pulumi.set(__self__, "quic_server_id", quic_server_id)
|
|
131
151
|
if region is not None:
|
|
132
152
|
pulumi.set(__self__, "region", region)
|
|
133
153
|
if target_group_arn is not None:
|
|
@@ -159,6 +179,18 @@ class _TargetGroupAttachmentState:
|
|
|
159
179
|
def port(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
160
180
|
pulumi.set(self, "port", value)
|
|
161
181
|
|
|
182
|
+
@_builtins.property
|
|
183
|
+
@pulumi.getter(name="quicServerId")
|
|
184
|
+
def quic_server_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
185
|
+
"""
|
|
186
|
+
Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "quic_server_id")
|
|
189
|
+
|
|
190
|
+
@quic_server_id.setter
|
|
191
|
+
def quic_server_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
192
|
+
pulumi.set(self, "quic_server_id", value)
|
|
193
|
+
|
|
162
194
|
@_builtins.property
|
|
163
195
|
@pulumi.getter
|
|
164
196
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -206,6 +238,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
206
238
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
207
239
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
208
240
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
241
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
209
242
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
210
243
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
211
244
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -253,6 +286,24 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
253
286
|
opts = pulumi.ResourceOptions(depends_on=[with_lb]))
|
|
254
287
|
```
|
|
255
288
|
|
|
289
|
+
### Target using QUIC
|
|
290
|
+
|
|
291
|
+
```python
|
|
292
|
+
import pulumi
|
|
293
|
+
import pulumi_aws as aws
|
|
294
|
+
|
|
295
|
+
test = aws.lb.TargetGroup("test",
|
|
296
|
+
name="test",
|
|
297
|
+
port=443,
|
|
298
|
+
protocol="QUIC")
|
|
299
|
+
test_instance = aws.ec2.Instance("test")
|
|
300
|
+
test_target_group_attachment = aws.lb.TargetGroupAttachment("test",
|
|
301
|
+
target_group_arn=test.arn,
|
|
302
|
+
target_id=test_instance.id,
|
|
303
|
+
port=443,
|
|
304
|
+
quic_server_id="0x1a2b3c4d5e6f7a8b")
|
|
305
|
+
```
|
|
306
|
+
|
|
256
307
|
## Import
|
|
257
308
|
|
|
258
309
|
You cannot import Target Group Attachments.
|
|
@@ -261,6 +312,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
261
312
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
262
313
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
263
314
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
315
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
264
316
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
265
317
|
:param pulumi.Input[_builtins.str] target_group_arn: The ARN of the target group with which to register targets.
|
|
266
318
|
:param pulumi.Input[_builtins.str] target_id: The ID of the target. This is the Instance ID for an instance, or the container ID for an ECS container. If the target type is `ip`, specify an IP address. If the target type is `lambda`, specify the Lambda function ARN. If the target type is `alb`, specify the ALB ARN.
|
|
@@ -316,6 +368,24 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
316
368
|
opts = pulumi.ResourceOptions(depends_on=[with_lb]))
|
|
317
369
|
```
|
|
318
370
|
|
|
371
|
+
### Target using QUIC
|
|
372
|
+
|
|
373
|
+
```python
|
|
374
|
+
import pulumi
|
|
375
|
+
import pulumi_aws as aws
|
|
376
|
+
|
|
377
|
+
test = aws.lb.TargetGroup("test",
|
|
378
|
+
name="test",
|
|
379
|
+
port=443,
|
|
380
|
+
protocol="QUIC")
|
|
381
|
+
test_instance = aws.ec2.Instance("test")
|
|
382
|
+
test_target_group_attachment = aws.lb.TargetGroupAttachment("test",
|
|
383
|
+
target_group_arn=test.arn,
|
|
384
|
+
target_id=test_instance.id,
|
|
385
|
+
port=443,
|
|
386
|
+
quic_server_id="0x1a2b3c4d5e6f7a8b")
|
|
387
|
+
```
|
|
388
|
+
|
|
319
389
|
## Import
|
|
320
390
|
|
|
321
391
|
You cannot import Target Group Attachments.
|
|
@@ -337,6 +407,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
337
407
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
338
408
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
339
409
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
410
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
340
411
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
341
412
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
342
413
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -351,6 +422,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
351
422
|
|
|
352
423
|
__props__.__dict__["availability_zone"] = availability_zone
|
|
353
424
|
__props__.__dict__["port"] = port
|
|
425
|
+
__props__.__dict__["quic_server_id"] = quic_server_id
|
|
354
426
|
__props__.__dict__["region"] = region
|
|
355
427
|
if target_group_arn is None and not opts.urn:
|
|
356
428
|
raise TypeError("Missing required property 'target_group_arn'")
|
|
@@ -372,6 +444,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
372
444
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
373
445
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
374
446
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
447
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
375
448
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
376
449
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
377
450
|
target_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'TargetGroupAttachment':
|
|
@@ -384,6 +457,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
384
457
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
385
458
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
386
459
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
460
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
387
461
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
388
462
|
:param pulumi.Input[_builtins.str] target_group_arn: The ARN of the target group with which to register targets.
|
|
389
463
|
:param pulumi.Input[_builtins.str] target_id: The ID of the target. This is the Instance ID for an instance, or the container ID for an ECS container. If the target type is `ip`, specify an IP address. If the target type is `lambda`, specify the Lambda function ARN. If the target type is `alb`, specify the ALB ARN.
|
|
@@ -396,6 +470,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
396
470
|
|
|
397
471
|
__props__.__dict__["availability_zone"] = availability_zone
|
|
398
472
|
__props__.__dict__["port"] = port
|
|
473
|
+
__props__.__dict__["quic_server_id"] = quic_server_id
|
|
399
474
|
__props__.__dict__["region"] = region
|
|
400
475
|
__props__.__dict__["target_group_arn"] = target_group_arn
|
|
401
476
|
__props__.__dict__["target_id"] = target_id
|
|
@@ -417,6 +492,14 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
417
492
|
"""
|
|
418
493
|
return pulumi.get(self, "port")
|
|
419
494
|
|
|
495
|
+
@_builtins.property
|
|
496
|
+
@pulumi.getter(name="quicServerId")
|
|
497
|
+
def quic_server_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
498
|
+
"""
|
|
499
|
+
Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
500
|
+
"""
|
|
501
|
+
return pulumi.get(self, "quic_server_id")
|
|
502
|
+
|
|
420
503
|
@_builtins.property
|
|
421
504
|
@pulumi.getter
|
|
422
505
|
def region(self) -> pulumi.Output[_builtins.str]:
|