aws-cdk-lib 2.196.1__py3-none-any.whl → 2.197.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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.196.1.jsii.tgz → aws-cdk-lib@2.197.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +90 -1
- aws_cdk/aws_apigatewayv2/__init__.py +866 -0
- aws_cdk/aws_bedrock/__init__.py +32 -26
- aws_cdk/aws_cloudfront/__init__.py +9 -3
- aws_cdk/aws_cloudwatch/__init__.py +756 -29
- aws_cdk/aws_codebuild/__init__.py +19 -0
- aws_cdk/aws_codepipeline/__init__.py +42 -7
- aws_cdk/aws_datasync/__init__.py +43 -72
- aws_cdk/aws_datazone/__init__.py +615 -2
- aws_cdk/aws_deadline/__init__.py +139 -0
- aws_cdk/aws_dsql/__init__.py +35 -1
- aws_cdk/aws_ec2/__init__.py +81 -3
- aws_cdk/aws_ecs/__init__.py +24 -17
- aws_cdk/aws_elasticache/__init__.py +5 -5
- aws_cdk/aws_gamelift/__init__.py +103 -15
- aws_cdk/aws_gameliftstreams/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +920 -103
- aws_cdk/aws_route53resolver/__init__.py +0 -41
- aws_cdk/aws_ses/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +39 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/RECORD +29 -29
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/top_level.txt +0 -0
|
@@ -4162,6 +4162,7 @@ class CfnDomainName(
|
|
|
4162
4162
|
truststore_uri="truststoreUri",
|
|
4163
4163
|
truststore_version="truststoreVersion"
|
|
4164
4164
|
),
|
|
4165
|
+
routing_mode="routingMode",
|
|
4165
4166
|
tags={
|
|
4166
4167
|
"tags_key": "tags"
|
|
4167
4168
|
}
|
|
@@ -4176,6 +4177,7 @@ class CfnDomainName(
|
|
|
4176
4177
|
domain_name: builtins.str,
|
|
4177
4178
|
domain_name_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomainName.DomainNameConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4178
4179
|
mutual_tls_authentication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomainName.MutualTlsAuthenticationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4180
|
+
routing_mode: typing.Optional[builtins.str] = None,
|
|
4179
4181
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4180
4182
|
) -> None:
|
|
4181
4183
|
'''
|
|
@@ -4184,6 +4186,7 @@ class CfnDomainName(
|
|
|
4184
4186
|
:param domain_name: The custom domain name for your API in Amazon API Gateway. Uppercase letters and the underscore ( ``_`` ) character are not supported.
|
|
4185
4187
|
:param domain_name_configurations: The domain name configurations.
|
|
4186
4188
|
:param mutual_tls_authentication: The mutual TLS authentication configuration for a custom domain name.
|
|
4189
|
+
:param routing_mode: Default: - "API_MAPPING_ONLY"
|
|
4187
4190
|
:param tags: The collection of tags associated with a domain name.
|
|
4188
4191
|
'''
|
|
4189
4192
|
if __debug__:
|
|
@@ -4194,6 +4197,7 @@ class CfnDomainName(
|
|
|
4194
4197
|
domain_name=domain_name,
|
|
4195
4198
|
domain_name_configurations=domain_name_configurations,
|
|
4196
4199
|
mutual_tls_authentication=mutual_tls_authentication,
|
|
4200
|
+
routing_mode=routing_mode,
|
|
4197
4201
|
tags=tags,
|
|
4198
4202
|
)
|
|
4199
4203
|
|
|
@@ -4318,6 +4322,18 @@ class CfnDomainName(
|
|
|
4318
4322
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4319
4323
|
jsii.set(self, "mutualTlsAuthentication", value) # pyright: ignore[reportArgumentType]
|
|
4320
4324
|
|
|
4325
|
+
@builtins.property
|
|
4326
|
+
@jsii.member(jsii_name="routingMode")
|
|
4327
|
+
def routing_mode(self) -> typing.Optional[builtins.str]:
|
|
4328
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "routingMode"))
|
|
4329
|
+
|
|
4330
|
+
@routing_mode.setter
|
|
4331
|
+
def routing_mode(self, value: typing.Optional[builtins.str]) -> None:
|
|
4332
|
+
if __debug__:
|
|
4333
|
+
type_hints = typing.get_type_hints(_typecheckingstub__21d0a77ddf227f9efb540f8cbef0cbec7c54480fe391d247664201c6a06372bc)
|
|
4334
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4335
|
+
jsii.set(self, "routingMode", value) # pyright: ignore[reportArgumentType]
|
|
4336
|
+
|
|
4321
4337
|
@builtins.property
|
|
4322
4338
|
@jsii.member(jsii_name="tagsRaw")
|
|
4323
4339
|
def tags_raw(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
@@ -4570,6 +4586,7 @@ class CfnDomainName(
|
|
|
4570
4586
|
"domain_name": "domainName",
|
|
4571
4587
|
"domain_name_configurations": "domainNameConfigurations",
|
|
4572
4588
|
"mutual_tls_authentication": "mutualTlsAuthentication",
|
|
4589
|
+
"routing_mode": "routingMode",
|
|
4573
4590
|
"tags": "tags",
|
|
4574
4591
|
},
|
|
4575
4592
|
)
|
|
@@ -4580,6 +4597,7 @@ class CfnDomainNameProps:
|
|
|
4580
4597
|
domain_name: builtins.str,
|
|
4581
4598
|
domain_name_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainName.DomainNameConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4582
4599
|
mutual_tls_authentication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainName.MutualTlsAuthenticationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4600
|
+
routing_mode: typing.Optional[builtins.str] = None,
|
|
4583
4601
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4584
4602
|
) -> None:
|
|
4585
4603
|
'''Properties for defining a ``CfnDomainName``.
|
|
@@ -4587,6 +4605,7 @@ class CfnDomainNameProps:
|
|
|
4587
4605
|
:param domain_name: The custom domain name for your API in Amazon API Gateway. Uppercase letters and the underscore ( ``_`` ) character are not supported.
|
|
4588
4606
|
:param domain_name_configurations: The domain name configurations.
|
|
4589
4607
|
:param mutual_tls_authentication: The mutual TLS authentication configuration for a custom domain name.
|
|
4608
|
+
:param routing_mode: Default: - "API_MAPPING_ONLY"
|
|
4590
4609
|
:param tags: The collection of tags associated with a domain name.
|
|
4591
4610
|
|
|
4592
4611
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html
|
|
@@ -4614,6 +4633,7 @@ class CfnDomainNameProps:
|
|
|
4614
4633
|
truststore_uri="truststoreUri",
|
|
4615
4634
|
truststore_version="truststoreVersion"
|
|
4616
4635
|
),
|
|
4636
|
+
routing_mode="routingMode",
|
|
4617
4637
|
tags={
|
|
4618
4638
|
"tags_key": "tags"
|
|
4619
4639
|
}
|
|
@@ -4624,6 +4644,7 @@ class CfnDomainNameProps:
|
|
|
4624
4644
|
check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
|
|
4625
4645
|
check_type(argname="argument domain_name_configurations", value=domain_name_configurations, expected_type=type_hints["domain_name_configurations"])
|
|
4626
4646
|
check_type(argname="argument mutual_tls_authentication", value=mutual_tls_authentication, expected_type=type_hints["mutual_tls_authentication"])
|
|
4647
|
+
check_type(argname="argument routing_mode", value=routing_mode, expected_type=type_hints["routing_mode"])
|
|
4627
4648
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
4628
4649
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4629
4650
|
"domain_name": domain_name,
|
|
@@ -4632,6 +4653,8 @@ class CfnDomainNameProps:
|
|
|
4632
4653
|
self._values["domain_name_configurations"] = domain_name_configurations
|
|
4633
4654
|
if mutual_tls_authentication is not None:
|
|
4634
4655
|
self._values["mutual_tls_authentication"] = mutual_tls_authentication
|
|
4656
|
+
if routing_mode is not None:
|
|
4657
|
+
self._values["routing_mode"] = routing_mode
|
|
4635
4658
|
if tags is not None:
|
|
4636
4659
|
self._values["tags"] = tags
|
|
4637
4660
|
|
|
@@ -4669,6 +4692,16 @@ class CfnDomainNameProps:
|
|
|
4669
4692
|
result = self._values.get("mutual_tls_authentication")
|
|
4670
4693
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomainName.MutualTlsAuthenticationProperty]], result)
|
|
4671
4694
|
|
|
4695
|
+
@builtins.property
|
|
4696
|
+
def routing_mode(self) -> typing.Optional[builtins.str]:
|
|
4697
|
+
'''
|
|
4698
|
+
:default: - "API_MAPPING_ONLY"
|
|
4699
|
+
|
|
4700
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-routingmode
|
|
4701
|
+
'''
|
|
4702
|
+
result = self._values.get("routing_mode")
|
|
4703
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4704
|
+
|
|
4672
4705
|
@builtins.property
|
|
4673
4706
|
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
4674
4707
|
'''The collection of tags associated with a domain name.
|
|
@@ -7476,6 +7509,725 @@ class CfnRouteResponseProps:
|
|
|
7476
7509
|
)
|
|
7477
7510
|
|
|
7478
7511
|
|
|
7512
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
7513
|
+
class CfnRoutingRule(
|
|
7514
|
+
_CfnResource_9df397a6,
|
|
7515
|
+
metaclass=jsii.JSIIMeta,
|
|
7516
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRule",
|
|
7517
|
+
):
|
|
7518
|
+
'''Schema for AWS::ApiGatewayV2::RoutingRule.
|
|
7519
|
+
|
|
7520
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html
|
|
7521
|
+
:cloudformationResource: AWS::ApiGatewayV2::RoutingRule
|
|
7522
|
+
:exampleMetadata: fixture=_generated
|
|
7523
|
+
|
|
7524
|
+
Example::
|
|
7525
|
+
|
|
7526
|
+
# The code below shows an example of how to instantiate this type.
|
|
7527
|
+
# The values are placeholders you should change.
|
|
7528
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
7529
|
+
|
|
7530
|
+
cfn_routing_rule = apigatewayv2.CfnRoutingRule(self, "MyCfnRoutingRule",
|
|
7531
|
+
actions=[apigatewayv2.CfnRoutingRule.ActionProperty(
|
|
7532
|
+
invoke_api=apigatewayv2.CfnRoutingRule.ActionInvokeApiProperty(
|
|
7533
|
+
api_id="apiId",
|
|
7534
|
+
stage="stage",
|
|
7535
|
+
|
|
7536
|
+
# the properties below are optional
|
|
7537
|
+
strip_base_path=False
|
|
7538
|
+
)
|
|
7539
|
+
)],
|
|
7540
|
+
conditions=[apigatewayv2.CfnRoutingRule.ConditionProperty(
|
|
7541
|
+
match_base_paths=apigatewayv2.CfnRoutingRule.MatchBasePathsProperty(
|
|
7542
|
+
any_of=["anyOf"]
|
|
7543
|
+
),
|
|
7544
|
+
match_headers=apigatewayv2.CfnRoutingRule.MatchHeadersProperty(
|
|
7545
|
+
any_of=[apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty(
|
|
7546
|
+
header="header",
|
|
7547
|
+
value_glob="valueGlob"
|
|
7548
|
+
)]
|
|
7549
|
+
)
|
|
7550
|
+
)],
|
|
7551
|
+
domain_name_arn="domainNameArn",
|
|
7552
|
+
priority=123
|
|
7553
|
+
)
|
|
7554
|
+
'''
|
|
7555
|
+
|
|
7556
|
+
def __init__(
|
|
7557
|
+
self,
|
|
7558
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
7559
|
+
id: builtins.str,
|
|
7560
|
+
*,
|
|
7561
|
+
actions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingRule.ActionProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
7562
|
+
conditions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingRule.ConditionProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
7563
|
+
domain_name_arn: builtins.str,
|
|
7564
|
+
priority: jsii.Number,
|
|
7565
|
+
) -> None:
|
|
7566
|
+
'''
|
|
7567
|
+
:param scope: Scope in which this resource is defined.
|
|
7568
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
7569
|
+
:param actions:
|
|
7570
|
+
:param conditions:
|
|
7571
|
+
:param domain_name_arn: The amazon resource name (ARN) of the domain name resource.
|
|
7572
|
+
:param priority:
|
|
7573
|
+
'''
|
|
7574
|
+
if __debug__:
|
|
7575
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9e261e580ed01a26eb5f3398b18b1c8e713162e6c87041c85e7920fdbe505572)
|
|
7576
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
7577
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7578
|
+
props = CfnRoutingRuleProps(
|
|
7579
|
+
actions=actions,
|
|
7580
|
+
conditions=conditions,
|
|
7581
|
+
domain_name_arn=domain_name_arn,
|
|
7582
|
+
priority=priority,
|
|
7583
|
+
)
|
|
7584
|
+
|
|
7585
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
7586
|
+
|
|
7587
|
+
@jsii.member(jsii_name="inspect")
|
|
7588
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
7589
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
7590
|
+
|
|
7591
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
7592
|
+
'''
|
|
7593
|
+
if __debug__:
|
|
7594
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4b259143f5908bb57fbb7e02132dcc974b63d52f1bc1ff10dfc1b3d5d2211196)
|
|
7595
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
7596
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
7597
|
+
|
|
7598
|
+
@jsii.member(jsii_name="renderProperties")
|
|
7599
|
+
def _render_properties(
|
|
7600
|
+
self,
|
|
7601
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
7602
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
7603
|
+
'''
|
|
7604
|
+
:param props: -
|
|
7605
|
+
'''
|
|
7606
|
+
if __debug__:
|
|
7607
|
+
type_hints = typing.get_type_hints(_typecheckingstub__77a41344704fe501d78ae97926a9a7e50d861a5eccfb96001b867e8f676f4793)
|
|
7608
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
7609
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
7610
|
+
|
|
7611
|
+
@jsii.python.classproperty
|
|
7612
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
7613
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
7614
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
7615
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
7616
|
+
|
|
7617
|
+
@builtins.property
|
|
7618
|
+
@jsii.member(jsii_name="attrRoutingRuleArn")
|
|
7619
|
+
def attr_routing_rule_arn(self) -> builtins.str:
|
|
7620
|
+
'''Amazon Resource Name (ARN) of the resource.
|
|
7621
|
+
|
|
7622
|
+
:cloudformationAttribute: RoutingRuleArn
|
|
7623
|
+
'''
|
|
7624
|
+
return typing.cast(builtins.str, jsii.get(self, "attrRoutingRuleArn"))
|
|
7625
|
+
|
|
7626
|
+
@builtins.property
|
|
7627
|
+
@jsii.member(jsii_name="attrRoutingRuleId")
|
|
7628
|
+
def attr_routing_rule_id(self) -> builtins.str:
|
|
7629
|
+
'''RoutingRule Id generated by service.
|
|
7630
|
+
|
|
7631
|
+
:cloudformationAttribute: RoutingRuleId
|
|
7632
|
+
'''
|
|
7633
|
+
return typing.cast(builtins.str, jsii.get(self, "attrRoutingRuleId"))
|
|
7634
|
+
|
|
7635
|
+
@builtins.property
|
|
7636
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
7637
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
7638
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
7639
|
+
|
|
7640
|
+
@builtins.property
|
|
7641
|
+
@jsii.member(jsii_name="actions")
|
|
7642
|
+
def actions(
|
|
7643
|
+
self,
|
|
7644
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ActionProperty"]]]:
|
|
7645
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ActionProperty"]]], jsii.get(self, "actions"))
|
|
7646
|
+
|
|
7647
|
+
@actions.setter
|
|
7648
|
+
def actions(
|
|
7649
|
+
self,
|
|
7650
|
+
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ActionProperty"]]],
|
|
7651
|
+
) -> None:
|
|
7652
|
+
if __debug__:
|
|
7653
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e28b0c99684d7b39e5562468da1df5107b5540636dcdef991ed1510a8e79322d)
|
|
7654
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7655
|
+
jsii.set(self, "actions", value) # pyright: ignore[reportArgumentType]
|
|
7656
|
+
|
|
7657
|
+
@builtins.property
|
|
7658
|
+
@jsii.member(jsii_name="conditions")
|
|
7659
|
+
def conditions(
|
|
7660
|
+
self,
|
|
7661
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ConditionProperty"]]]:
|
|
7662
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ConditionProperty"]]], jsii.get(self, "conditions"))
|
|
7663
|
+
|
|
7664
|
+
@conditions.setter
|
|
7665
|
+
def conditions(
|
|
7666
|
+
self,
|
|
7667
|
+
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ConditionProperty"]]],
|
|
7668
|
+
) -> None:
|
|
7669
|
+
if __debug__:
|
|
7670
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c005d3a99e1e87e0ec447a11cfe8d6c19827612bd33fc77a0c2a3ba1bf7307ea)
|
|
7671
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7672
|
+
jsii.set(self, "conditions", value) # pyright: ignore[reportArgumentType]
|
|
7673
|
+
|
|
7674
|
+
@builtins.property
|
|
7675
|
+
@jsii.member(jsii_name="domainNameArn")
|
|
7676
|
+
def domain_name_arn(self) -> builtins.str:
|
|
7677
|
+
'''The amazon resource name (ARN) of the domain name resource.'''
|
|
7678
|
+
return typing.cast(builtins.str, jsii.get(self, "domainNameArn"))
|
|
7679
|
+
|
|
7680
|
+
@domain_name_arn.setter
|
|
7681
|
+
def domain_name_arn(self, value: builtins.str) -> None:
|
|
7682
|
+
if __debug__:
|
|
7683
|
+
type_hints = typing.get_type_hints(_typecheckingstub__df992a1622c11b7c58cc17dd8f491fcaf67155654e78449cd545ee6d512c7671)
|
|
7684
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7685
|
+
jsii.set(self, "domainNameArn", value) # pyright: ignore[reportArgumentType]
|
|
7686
|
+
|
|
7687
|
+
@builtins.property
|
|
7688
|
+
@jsii.member(jsii_name="priority")
|
|
7689
|
+
def priority(self) -> jsii.Number:
|
|
7690
|
+
return typing.cast(jsii.Number, jsii.get(self, "priority"))
|
|
7691
|
+
|
|
7692
|
+
@priority.setter
|
|
7693
|
+
def priority(self, value: jsii.Number) -> None:
|
|
7694
|
+
if __debug__:
|
|
7695
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f80f8919aa1931fd1355cb98d3ba3c657c893861ccf69754a8b746f7907dd0f5)
|
|
7696
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7697
|
+
jsii.set(self, "priority", value) # pyright: ignore[reportArgumentType]
|
|
7698
|
+
|
|
7699
|
+
@jsii.data_type(
|
|
7700
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRule.ActionInvokeApiProperty",
|
|
7701
|
+
jsii_struct_bases=[],
|
|
7702
|
+
name_mapping={
|
|
7703
|
+
"api_id": "apiId",
|
|
7704
|
+
"stage": "stage",
|
|
7705
|
+
"strip_base_path": "stripBasePath",
|
|
7706
|
+
},
|
|
7707
|
+
)
|
|
7708
|
+
class ActionInvokeApiProperty:
|
|
7709
|
+
def __init__(
|
|
7710
|
+
self,
|
|
7711
|
+
*,
|
|
7712
|
+
api_id: builtins.str,
|
|
7713
|
+
stage: builtins.str,
|
|
7714
|
+
strip_base_path: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7715
|
+
) -> None:
|
|
7716
|
+
'''
|
|
7717
|
+
:param api_id:
|
|
7718
|
+
:param stage:
|
|
7719
|
+
:param strip_base_path:
|
|
7720
|
+
|
|
7721
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-actioninvokeapi.html
|
|
7722
|
+
:exampleMetadata: fixture=_generated
|
|
7723
|
+
|
|
7724
|
+
Example::
|
|
7725
|
+
|
|
7726
|
+
# The code below shows an example of how to instantiate this type.
|
|
7727
|
+
# The values are placeholders you should change.
|
|
7728
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
7729
|
+
|
|
7730
|
+
action_invoke_api_property = apigatewayv2.CfnRoutingRule.ActionInvokeApiProperty(
|
|
7731
|
+
api_id="apiId",
|
|
7732
|
+
stage="stage",
|
|
7733
|
+
|
|
7734
|
+
# the properties below are optional
|
|
7735
|
+
strip_base_path=False
|
|
7736
|
+
)
|
|
7737
|
+
'''
|
|
7738
|
+
if __debug__:
|
|
7739
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c0c7c15f3bdc57c3fd672a2692d4f0b1b0807a1a07345c24bff2e78b7cbaff01)
|
|
7740
|
+
check_type(argname="argument api_id", value=api_id, expected_type=type_hints["api_id"])
|
|
7741
|
+
check_type(argname="argument stage", value=stage, expected_type=type_hints["stage"])
|
|
7742
|
+
check_type(argname="argument strip_base_path", value=strip_base_path, expected_type=type_hints["strip_base_path"])
|
|
7743
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
7744
|
+
"api_id": api_id,
|
|
7745
|
+
"stage": stage,
|
|
7746
|
+
}
|
|
7747
|
+
if strip_base_path is not None:
|
|
7748
|
+
self._values["strip_base_path"] = strip_base_path
|
|
7749
|
+
|
|
7750
|
+
@builtins.property
|
|
7751
|
+
def api_id(self) -> builtins.str:
|
|
7752
|
+
'''
|
|
7753
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-actioninvokeapi.html#cfn-apigatewayv2-routingrule-actioninvokeapi-apiid
|
|
7754
|
+
'''
|
|
7755
|
+
result = self._values.get("api_id")
|
|
7756
|
+
assert result is not None, "Required property 'api_id' is missing"
|
|
7757
|
+
return typing.cast(builtins.str, result)
|
|
7758
|
+
|
|
7759
|
+
@builtins.property
|
|
7760
|
+
def stage(self) -> builtins.str:
|
|
7761
|
+
'''
|
|
7762
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-actioninvokeapi.html#cfn-apigatewayv2-routingrule-actioninvokeapi-stage
|
|
7763
|
+
'''
|
|
7764
|
+
result = self._values.get("stage")
|
|
7765
|
+
assert result is not None, "Required property 'stage' is missing"
|
|
7766
|
+
return typing.cast(builtins.str, result)
|
|
7767
|
+
|
|
7768
|
+
@builtins.property
|
|
7769
|
+
def strip_base_path(
|
|
7770
|
+
self,
|
|
7771
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
7772
|
+
'''
|
|
7773
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-actioninvokeapi.html#cfn-apigatewayv2-routingrule-actioninvokeapi-stripbasepath
|
|
7774
|
+
'''
|
|
7775
|
+
result = self._values.get("strip_base_path")
|
|
7776
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
7777
|
+
|
|
7778
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
7779
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
7780
|
+
|
|
7781
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
7782
|
+
return not (rhs == self)
|
|
7783
|
+
|
|
7784
|
+
def __repr__(self) -> str:
|
|
7785
|
+
return "ActionInvokeApiProperty(%s)" % ", ".join(
|
|
7786
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
7787
|
+
)
|
|
7788
|
+
|
|
7789
|
+
@jsii.data_type(
|
|
7790
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRule.ActionProperty",
|
|
7791
|
+
jsii_struct_bases=[],
|
|
7792
|
+
name_mapping={"invoke_api": "invokeApi"},
|
|
7793
|
+
)
|
|
7794
|
+
class ActionProperty:
|
|
7795
|
+
def __init__(
|
|
7796
|
+
self,
|
|
7797
|
+
*,
|
|
7798
|
+
invoke_api: typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingRule.ActionInvokeApiProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
7799
|
+
) -> None:
|
|
7800
|
+
'''
|
|
7801
|
+
:param invoke_api:
|
|
7802
|
+
|
|
7803
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-action.html
|
|
7804
|
+
:exampleMetadata: fixture=_generated
|
|
7805
|
+
|
|
7806
|
+
Example::
|
|
7807
|
+
|
|
7808
|
+
# The code below shows an example of how to instantiate this type.
|
|
7809
|
+
# The values are placeholders you should change.
|
|
7810
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
7811
|
+
|
|
7812
|
+
action_property = apigatewayv2.CfnRoutingRule.ActionProperty(
|
|
7813
|
+
invoke_api=apigatewayv2.CfnRoutingRule.ActionInvokeApiProperty(
|
|
7814
|
+
api_id="apiId",
|
|
7815
|
+
stage="stage",
|
|
7816
|
+
|
|
7817
|
+
# the properties below are optional
|
|
7818
|
+
strip_base_path=False
|
|
7819
|
+
)
|
|
7820
|
+
)
|
|
7821
|
+
'''
|
|
7822
|
+
if __debug__:
|
|
7823
|
+
type_hints = typing.get_type_hints(_typecheckingstub__288fc4eee0785ab33192a2ebceb8cafb3406672d09c2be411d2e42a7944100fb)
|
|
7824
|
+
check_type(argname="argument invoke_api", value=invoke_api, expected_type=type_hints["invoke_api"])
|
|
7825
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
7826
|
+
"invoke_api": invoke_api,
|
|
7827
|
+
}
|
|
7828
|
+
|
|
7829
|
+
@builtins.property
|
|
7830
|
+
def invoke_api(
|
|
7831
|
+
self,
|
|
7832
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ActionInvokeApiProperty"]:
|
|
7833
|
+
'''
|
|
7834
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-action.html#cfn-apigatewayv2-routingrule-action-invokeapi
|
|
7835
|
+
'''
|
|
7836
|
+
result = self._values.get("invoke_api")
|
|
7837
|
+
assert result is not None, "Required property 'invoke_api' is missing"
|
|
7838
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.ActionInvokeApiProperty"], result)
|
|
7839
|
+
|
|
7840
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
7841
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
7842
|
+
|
|
7843
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
7844
|
+
return not (rhs == self)
|
|
7845
|
+
|
|
7846
|
+
def __repr__(self) -> str:
|
|
7847
|
+
return "ActionProperty(%s)" % ", ".join(
|
|
7848
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
7849
|
+
)
|
|
7850
|
+
|
|
7851
|
+
@jsii.data_type(
|
|
7852
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRule.ConditionProperty",
|
|
7853
|
+
jsii_struct_bases=[],
|
|
7854
|
+
name_mapping={
|
|
7855
|
+
"match_base_paths": "matchBasePaths",
|
|
7856
|
+
"match_headers": "matchHeaders",
|
|
7857
|
+
},
|
|
7858
|
+
)
|
|
7859
|
+
class ConditionProperty:
|
|
7860
|
+
def __init__(
|
|
7861
|
+
self,
|
|
7862
|
+
*,
|
|
7863
|
+
match_base_paths: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingRule.MatchBasePathsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7864
|
+
match_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingRule.MatchHeadersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7865
|
+
) -> None:
|
|
7866
|
+
'''
|
|
7867
|
+
:param match_base_paths:
|
|
7868
|
+
:param match_headers:
|
|
7869
|
+
|
|
7870
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-condition.html
|
|
7871
|
+
:exampleMetadata: fixture=_generated
|
|
7872
|
+
|
|
7873
|
+
Example::
|
|
7874
|
+
|
|
7875
|
+
# The code below shows an example of how to instantiate this type.
|
|
7876
|
+
# The values are placeholders you should change.
|
|
7877
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
7878
|
+
|
|
7879
|
+
condition_property = apigatewayv2.CfnRoutingRule.ConditionProperty(
|
|
7880
|
+
match_base_paths=apigatewayv2.CfnRoutingRule.MatchBasePathsProperty(
|
|
7881
|
+
any_of=["anyOf"]
|
|
7882
|
+
),
|
|
7883
|
+
match_headers=apigatewayv2.CfnRoutingRule.MatchHeadersProperty(
|
|
7884
|
+
any_of=[apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty(
|
|
7885
|
+
header="header",
|
|
7886
|
+
value_glob="valueGlob"
|
|
7887
|
+
)]
|
|
7888
|
+
)
|
|
7889
|
+
)
|
|
7890
|
+
'''
|
|
7891
|
+
if __debug__:
|
|
7892
|
+
type_hints = typing.get_type_hints(_typecheckingstub__94fb944999d03dc7761e925b4cbec320f3d36797eae6cea4ae74471fb82922e0)
|
|
7893
|
+
check_type(argname="argument match_base_paths", value=match_base_paths, expected_type=type_hints["match_base_paths"])
|
|
7894
|
+
check_type(argname="argument match_headers", value=match_headers, expected_type=type_hints["match_headers"])
|
|
7895
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
7896
|
+
if match_base_paths is not None:
|
|
7897
|
+
self._values["match_base_paths"] = match_base_paths
|
|
7898
|
+
if match_headers is not None:
|
|
7899
|
+
self._values["match_headers"] = match_headers
|
|
7900
|
+
|
|
7901
|
+
@builtins.property
|
|
7902
|
+
def match_base_paths(
|
|
7903
|
+
self,
|
|
7904
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.MatchBasePathsProperty"]]:
|
|
7905
|
+
'''
|
|
7906
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-condition.html#cfn-apigatewayv2-routingrule-condition-matchbasepaths
|
|
7907
|
+
'''
|
|
7908
|
+
result = self._values.get("match_base_paths")
|
|
7909
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.MatchBasePathsProperty"]], result)
|
|
7910
|
+
|
|
7911
|
+
@builtins.property
|
|
7912
|
+
def match_headers(
|
|
7913
|
+
self,
|
|
7914
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.MatchHeadersProperty"]]:
|
|
7915
|
+
'''
|
|
7916
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-condition.html#cfn-apigatewayv2-routingrule-condition-matchheaders
|
|
7917
|
+
'''
|
|
7918
|
+
result = self._values.get("match_headers")
|
|
7919
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.MatchHeadersProperty"]], result)
|
|
7920
|
+
|
|
7921
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
7922
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
7923
|
+
|
|
7924
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
7925
|
+
return not (rhs == self)
|
|
7926
|
+
|
|
7927
|
+
def __repr__(self) -> str:
|
|
7928
|
+
return "ConditionProperty(%s)" % ", ".join(
|
|
7929
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
7930
|
+
)
|
|
7931
|
+
|
|
7932
|
+
@jsii.data_type(
|
|
7933
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRule.MatchBasePathsProperty",
|
|
7934
|
+
jsii_struct_bases=[],
|
|
7935
|
+
name_mapping={"any_of": "anyOf"},
|
|
7936
|
+
)
|
|
7937
|
+
class MatchBasePathsProperty:
|
|
7938
|
+
def __init__(self, *, any_of: typing.Sequence[builtins.str]) -> None:
|
|
7939
|
+
'''
|
|
7940
|
+
:param any_of:
|
|
7941
|
+
|
|
7942
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchbasepaths.html
|
|
7943
|
+
:exampleMetadata: fixture=_generated
|
|
7944
|
+
|
|
7945
|
+
Example::
|
|
7946
|
+
|
|
7947
|
+
# The code below shows an example of how to instantiate this type.
|
|
7948
|
+
# The values are placeholders you should change.
|
|
7949
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
7950
|
+
|
|
7951
|
+
match_base_paths_property = apigatewayv2.CfnRoutingRule.MatchBasePathsProperty(
|
|
7952
|
+
any_of=["anyOf"]
|
|
7953
|
+
)
|
|
7954
|
+
'''
|
|
7955
|
+
if __debug__:
|
|
7956
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c6bc39dc8caad1c628ec1061fa3b8fb8c43af70cbc460ce8edeb878b5d1d55a4)
|
|
7957
|
+
check_type(argname="argument any_of", value=any_of, expected_type=type_hints["any_of"])
|
|
7958
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
7959
|
+
"any_of": any_of,
|
|
7960
|
+
}
|
|
7961
|
+
|
|
7962
|
+
@builtins.property
|
|
7963
|
+
def any_of(self) -> typing.List[builtins.str]:
|
|
7964
|
+
'''
|
|
7965
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchbasepaths.html#cfn-apigatewayv2-routingrule-matchbasepaths-anyof
|
|
7966
|
+
'''
|
|
7967
|
+
result = self._values.get("any_of")
|
|
7968
|
+
assert result is not None, "Required property 'any_of' is missing"
|
|
7969
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
7970
|
+
|
|
7971
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
7972
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
7973
|
+
|
|
7974
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
7975
|
+
return not (rhs == self)
|
|
7976
|
+
|
|
7977
|
+
def __repr__(self) -> str:
|
|
7978
|
+
return "MatchBasePathsProperty(%s)" % ", ".join(
|
|
7979
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
7980
|
+
)
|
|
7981
|
+
|
|
7982
|
+
@jsii.data_type(
|
|
7983
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty",
|
|
7984
|
+
jsii_struct_bases=[],
|
|
7985
|
+
name_mapping={"header": "header", "value_glob": "valueGlob"},
|
|
7986
|
+
)
|
|
7987
|
+
class MatchHeaderValueProperty:
|
|
7988
|
+
def __init__(self, *, header: builtins.str, value_glob: builtins.str) -> None:
|
|
7989
|
+
'''
|
|
7990
|
+
:param header:
|
|
7991
|
+
:param value_glob:
|
|
7992
|
+
|
|
7993
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheadervalue.html
|
|
7994
|
+
:exampleMetadata: fixture=_generated
|
|
7995
|
+
|
|
7996
|
+
Example::
|
|
7997
|
+
|
|
7998
|
+
# The code below shows an example of how to instantiate this type.
|
|
7999
|
+
# The values are placeholders you should change.
|
|
8000
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
8001
|
+
|
|
8002
|
+
match_header_value_property = apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty(
|
|
8003
|
+
header="header",
|
|
8004
|
+
value_glob="valueGlob"
|
|
8005
|
+
)
|
|
8006
|
+
'''
|
|
8007
|
+
if __debug__:
|
|
8008
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5e4e12222e78fcf8a4a4316e29343d73081a44a7f3972b2eb1c8278686898c05)
|
|
8009
|
+
check_type(argname="argument header", value=header, expected_type=type_hints["header"])
|
|
8010
|
+
check_type(argname="argument value_glob", value=value_glob, expected_type=type_hints["value_glob"])
|
|
8011
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8012
|
+
"header": header,
|
|
8013
|
+
"value_glob": value_glob,
|
|
8014
|
+
}
|
|
8015
|
+
|
|
8016
|
+
@builtins.property
|
|
8017
|
+
def header(self) -> builtins.str:
|
|
8018
|
+
'''
|
|
8019
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheadervalue.html#cfn-apigatewayv2-routingrule-matchheadervalue-header
|
|
8020
|
+
'''
|
|
8021
|
+
result = self._values.get("header")
|
|
8022
|
+
assert result is not None, "Required property 'header' is missing"
|
|
8023
|
+
return typing.cast(builtins.str, result)
|
|
8024
|
+
|
|
8025
|
+
@builtins.property
|
|
8026
|
+
def value_glob(self) -> builtins.str:
|
|
8027
|
+
'''
|
|
8028
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheadervalue.html#cfn-apigatewayv2-routingrule-matchheadervalue-valueglob
|
|
8029
|
+
'''
|
|
8030
|
+
result = self._values.get("value_glob")
|
|
8031
|
+
assert result is not None, "Required property 'value_glob' is missing"
|
|
8032
|
+
return typing.cast(builtins.str, result)
|
|
8033
|
+
|
|
8034
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8035
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8036
|
+
|
|
8037
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8038
|
+
return not (rhs == self)
|
|
8039
|
+
|
|
8040
|
+
def __repr__(self) -> str:
|
|
8041
|
+
return "MatchHeaderValueProperty(%s)" % ", ".join(
|
|
8042
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8043
|
+
)
|
|
8044
|
+
|
|
8045
|
+
@jsii.data_type(
|
|
8046
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRule.MatchHeadersProperty",
|
|
8047
|
+
jsii_struct_bases=[],
|
|
8048
|
+
name_mapping={"any_of": "anyOf"},
|
|
8049
|
+
)
|
|
8050
|
+
class MatchHeadersProperty:
|
|
8051
|
+
def __init__(
|
|
8052
|
+
self,
|
|
8053
|
+
*,
|
|
8054
|
+
any_of: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingRule.MatchHeaderValueProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
8055
|
+
) -> None:
|
|
8056
|
+
'''
|
|
8057
|
+
:param any_of:
|
|
8058
|
+
|
|
8059
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheaders.html
|
|
8060
|
+
:exampleMetadata: fixture=_generated
|
|
8061
|
+
|
|
8062
|
+
Example::
|
|
8063
|
+
|
|
8064
|
+
# The code below shows an example of how to instantiate this type.
|
|
8065
|
+
# The values are placeholders you should change.
|
|
8066
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
8067
|
+
|
|
8068
|
+
match_headers_property = apigatewayv2.CfnRoutingRule.MatchHeadersProperty(
|
|
8069
|
+
any_of=[apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty(
|
|
8070
|
+
header="header",
|
|
8071
|
+
value_glob="valueGlob"
|
|
8072
|
+
)]
|
|
8073
|
+
)
|
|
8074
|
+
'''
|
|
8075
|
+
if __debug__:
|
|
8076
|
+
type_hints = typing.get_type_hints(_typecheckingstub__eaea58b339e54b65cebd05e915edb193ffb4c68e784891ef2750cd1ad7603f81)
|
|
8077
|
+
check_type(argname="argument any_of", value=any_of, expected_type=type_hints["any_of"])
|
|
8078
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8079
|
+
"any_of": any_of,
|
|
8080
|
+
}
|
|
8081
|
+
|
|
8082
|
+
@builtins.property
|
|
8083
|
+
def any_of(
|
|
8084
|
+
self,
|
|
8085
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.MatchHeaderValueProperty"]]]:
|
|
8086
|
+
'''
|
|
8087
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheaders.html#cfn-apigatewayv2-routingrule-matchheaders-anyof
|
|
8088
|
+
'''
|
|
8089
|
+
result = self._values.get("any_of")
|
|
8090
|
+
assert result is not None, "Required property 'any_of' is missing"
|
|
8091
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingRule.MatchHeaderValueProperty"]]], result)
|
|
8092
|
+
|
|
8093
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8094
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8095
|
+
|
|
8096
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8097
|
+
return not (rhs == self)
|
|
8098
|
+
|
|
8099
|
+
def __repr__(self) -> str:
|
|
8100
|
+
return "MatchHeadersProperty(%s)" % ", ".join(
|
|
8101
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8102
|
+
)
|
|
8103
|
+
|
|
8104
|
+
|
|
8105
|
+
@jsii.data_type(
|
|
8106
|
+
jsii_type="aws-cdk-lib.aws_apigatewayv2.CfnRoutingRuleProps",
|
|
8107
|
+
jsii_struct_bases=[],
|
|
8108
|
+
name_mapping={
|
|
8109
|
+
"actions": "actions",
|
|
8110
|
+
"conditions": "conditions",
|
|
8111
|
+
"domain_name_arn": "domainNameArn",
|
|
8112
|
+
"priority": "priority",
|
|
8113
|
+
},
|
|
8114
|
+
)
|
|
8115
|
+
class CfnRoutingRuleProps:
|
|
8116
|
+
def __init__(
|
|
8117
|
+
self,
|
|
8118
|
+
*,
|
|
8119
|
+
actions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.ActionProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
8120
|
+
conditions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.ConditionProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
8121
|
+
domain_name_arn: builtins.str,
|
|
8122
|
+
priority: jsii.Number,
|
|
8123
|
+
) -> None:
|
|
8124
|
+
'''Properties for defining a ``CfnRoutingRule``.
|
|
8125
|
+
|
|
8126
|
+
:param actions:
|
|
8127
|
+
:param conditions:
|
|
8128
|
+
:param domain_name_arn: The amazon resource name (ARN) of the domain name resource.
|
|
8129
|
+
:param priority:
|
|
8130
|
+
|
|
8131
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html
|
|
8132
|
+
:exampleMetadata: fixture=_generated
|
|
8133
|
+
|
|
8134
|
+
Example::
|
|
8135
|
+
|
|
8136
|
+
# The code below shows an example of how to instantiate this type.
|
|
8137
|
+
# The values are placeholders you should change.
|
|
8138
|
+
from aws_cdk import aws_apigatewayv2 as apigatewayv2
|
|
8139
|
+
|
|
8140
|
+
cfn_routing_rule_props = apigatewayv2.CfnRoutingRuleProps(
|
|
8141
|
+
actions=[apigatewayv2.CfnRoutingRule.ActionProperty(
|
|
8142
|
+
invoke_api=apigatewayv2.CfnRoutingRule.ActionInvokeApiProperty(
|
|
8143
|
+
api_id="apiId",
|
|
8144
|
+
stage="stage",
|
|
8145
|
+
|
|
8146
|
+
# the properties below are optional
|
|
8147
|
+
strip_base_path=False
|
|
8148
|
+
)
|
|
8149
|
+
)],
|
|
8150
|
+
conditions=[apigatewayv2.CfnRoutingRule.ConditionProperty(
|
|
8151
|
+
match_base_paths=apigatewayv2.CfnRoutingRule.MatchBasePathsProperty(
|
|
8152
|
+
any_of=["anyOf"]
|
|
8153
|
+
),
|
|
8154
|
+
match_headers=apigatewayv2.CfnRoutingRule.MatchHeadersProperty(
|
|
8155
|
+
any_of=[apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty(
|
|
8156
|
+
header="header",
|
|
8157
|
+
value_glob="valueGlob"
|
|
8158
|
+
)]
|
|
8159
|
+
)
|
|
8160
|
+
)],
|
|
8161
|
+
domain_name_arn="domainNameArn",
|
|
8162
|
+
priority=123
|
|
8163
|
+
)
|
|
8164
|
+
'''
|
|
8165
|
+
if __debug__:
|
|
8166
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fb8be2d22e1b6b6c53d0a575fd177688bab8ea730709eb13ee27de706f3fa0c4)
|
|
8167
|
+
check_type(argname="argument actions", value=actions, expected_type=type_hints["actions"])
|
|
8168
|
+
check_type(argname="argument conditions", value=conditions, expected_type=type_hints["conditions"])
|
|
8169
|
+
check_type(argname="argument domain_name_arn", value=domain_name_arn, expected_type=type_hints["domain_name_arn"])
|
|
8170
|
+
check_type(argname="argument priority", value=priority, expected_type=type_hints["priority"])
|
|
8171
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8172
|
+
"actions": actions,
|
|
8173
|
+
"conditions": conditions,
|
|
8174
|
+
"domain_name_arn": domain_name_arn,
|
|
8175
|
+
"priority": priority,
|
|
8176
|
+
}
|
|
8177
|
+
|
|
8178
|
+
@builtins.property
|
|
8179
|
+
def actions(
|
|
8180
|
+
self,
|
|
8181
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingRule.ActionProperty]]]:
|
|
8182
|
+
'''
|
|
8183
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html#cfn-apigatewayv2-routingrule-actions
|
|
8184
|
+
'''
|
|
8185
|
+
result = self._values.get("actions")
|
|
8186
|
+
assert result is not None, "Required property 'actions' is missing"
|
|
8187
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingRule.ActionProperty]]], result)
|
|
8188
|
+
|
|
8189
|
+
@builtins.property
|
|
8190
|
+
def conditions(
|
|
8191
|
+
self,
|
|
8192
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingRule.ConditionProperty]]]:
|
|
8193
|
+
'''
|
|
8194
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html#cfn-apigatewayv2-routingrule-conditions
|
|
8195
|
+
'''
|
|
8196
|
+
result = self._values.get("conditions")
|
|
8197
|
+
assert result is not None, "Required property 'conditions' is missing"
|
|
8198
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingRule.ConditionProperty]]], result)
|
|
8199
|
+
|
|
8200
|
+
@builtins.property
|
|
8201
|
+
def domain_name_arn(self) -> builtins.str:
|
|
8202
|
+
'''The amazon resource name (ARN) of the domain name resource.
|
|
8203
|
+
|
|
8204
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html#cfn-apigatewayv2-routingrule-domainnamearn
|
|
8205
|
+
'''
|
|
8206
|
+
result = self._values.get("domain_name_arn")
|
|
8207
|
+
assert result is not None, "Required property 'domain_name_arn' is missing"
|
|
8208
|
+
return typing.cast(builtins.str, result)
|
|
8209
|
+
|
|
8210
|
+
@builtins.property
|
|
8211
|
+
def priority(self) -> jsii.Number:
|
|
8212
|
+
'''
|
|
8213
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html#cfn-apigatewayv2-routingrule-priority
|
|
8214
|
+
'''
|
|
8215
|
+
result = self._values.get("priority")
|
|
8216
|
+
assert result is not None, "Required property 'priority' is missing"
|
|
8217
|
+
return typing.cast(jsii.Number, result)
|
|
8218
|
+
|
|
8219
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8220
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8221
|
+
|
|
8222
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8223
|
+
return not (rhs == self)
|
|
8224
|
+
|
|
8225
|
+
def __repr__(self) -> str:
|
|
8226
|
+
return "CfnRoutingRuleProps(%s)" % ", ".join(
|
|
8227
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8228
|
+
)
|
|
8229
|
+
|
|
8230
|
+
|
|
7479
8231
|
@jsii.implements(_IInspectable_c2943556, _ITaggable_36806126)
|
|
7480
8232
|
class CfnStage(
|
|
7481
8233
|
_CfnResource_9df397a6,
|
|
@@ -19290,6 +20042,8 @@ __all__ = [
|
|
|
19290
20042
|
"CfnRouteProps",
|
|
19291
20043
|
"CfnRouteResponse",
|
|
19292
20044
|
"CfnRouteResponseProps",
|
|
20045
|
+
"CfnRoutingRule",
|
|
20046
|
+
"CfnRoutingRuleProps",
|
|
19293
20047
|
"CfnStage",
|
|
19294
20048
|
"CfnStageProps",
|
|
19295
20049
|
"CfnVpcLink",
|
|
@@ -19965,6 +20719,7 @@ def _typecheckingstub__a1dd1a2be8baf8f5fddc282520a295c206cc1466b04d57a3227f938bd
|
|
|
19965
20719
|
domain_name: builtins.str,
|
|
19966
20720
|
domain_name_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainName.DomainNameConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
19967
20721
|
mutual_tls_authentication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainName.MutualTlsAuthenticationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
20722
|
+
routing_mode: typing.Optional[builtins.str] = None,
|
|
19968
20723
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
19969
20724
|
) -> None:
|
|
19970
20725
|
"""Type checking stubs"""
|
|
@@ -20000,6 +20755,12 @@ def _typecheckingstub__7db79836bb2717dd9f77cf2a7e1dbf16c2828d8d2066adf6a1fd6f14b
|
|
|
20000
20755
|
"""Type checking stubs"""
|
|
20001
20756
|
pass
|
|
20002
20757
|
|
|
20758
|
+
def _typecheckingstub__21d0a77ddf227f9efb540f8cbef0cbec7c54480fe391d247664201c6a06372bc(
|
|
20759
|
+
value: typing.Optional[builtins.str],
|
|
20760
|
+
) -> None:
|
|
20761
|
+
"""Type checking stubs"""
|
|
20762
|
+
pass
|
|
20763
|
+
|
|
20003
20764
|
def _typecheckingstub__91e15ff48f085b835a961d76641a12ee2d099786f346c15be08cd6e10f58f927(
|
|
20004
20765
|
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
20005
20766
|
) -> None:
|
|
@@ -20031,6 +20792,7 @@ def _typecheckingstub__1629526da8e64502c98094213f6afc52d78388551bbefd7f02cebe445
|
|
|
20031
20792
|
domain_name: builtins.str,
|
|
20032
20793
|
domain_name_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainName.DomainNameConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
20033
20794
|
mutual_tls_authentication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainName.MutualTlsAuthenticationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
20795
|
+
routing_mode: typing.Optional[builtins.str] = None,
|
|
20034
20796
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
20035
20797
|
) -> None:
|
|
20036
20798
|
"""Type checking stubs"""
|
|
@@ -20593,6 +21355,110 @@ def _typecheckingstub__3357f1247faebabfedb5db2b33a7b9038414306326813b06294bdc9f3
|
|
|
20593
21355
|
"""Type checking stubs"""
|
|
20594
21356
|
pass
|
|
20595
21357
|
|
|
21358
|
+
def _typecheckingstub__9e261e580ed01a26eb5f3398b18b1c8e713162e6c87041c85e7920fdbe505572(
|
|
21359
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
21360
|
+
id: builtins.str,
|
|
21361
|
+
*,
|
|
21362
|
+
actions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.ActionProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
21363
|
+
conditions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.ConditionProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
21364
|
+
domain_name_arn: builtins.str,
|
|
21365
|
+
priority: jsii.Number,
|
|
21366
|
+
) -> None:
|
|
21367
|
+
"""Type checking stubs"""
|
|
21368
|
+
pass
|
|
21369
|
+
|
|
21370
|
+
def _typecheckingstub__4b259143f5908bb57fbb7e02132dcc974b63d52f1bc1ff10dfc1b3d5d2211196(
|
|
21371
|
+
inspector: _TreeInspector_488e0dd5,
|
|
21372
|
+
) -> None:
|
|
21373
|
+
"""Type checking stubs"""
|
|
21374
|
+
pass
|
|
21375
|
+
|
|
21376
|
+
def _typecheckingstub__77a41344704fe501d78ae97926a9a7e50d861a5eccfb96001b867e8f676f4793(
|
|
21377
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
21378
|
+
) -> None:
|
|
21379
|
+
"""Type checking stubs"""
|
|
21380
|
+
pass
|
|
21381
|
+
|
|
21382
|
+
def _typecheckingstub__e28b0c99684d7b39e5562468da1df5107b5540636dcdef991ed1510a8e79322d(
|
|
21383
|
+
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingRule.ActionProperty]]],
|
|
21384
|
+
) -> None:
|
|
21385
|
+
"""Type checking stubs"""
|
|
21386
|
+
pass
|
|
21387
|
+
|
|
21388
|
+
def _typecheckingstub__c005d3a99e1e87e0ec447a11cfe8d6c19827612bd33fc77a0c2a3ba1bf7307ea(
|
|
21389
|
+
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingRule.ConditionProperty]]],
|
|
21390
|
+
) -> None:
|
|
21391
|
+
"""Type checking stubs"""
|
|
21392
|
+
pass
|
|
21393
|
+
|
|
21394
|
+
def _typecheckingstub__df992a1622c11b7c58cc17dd8f491fcaf67155654e78449cd545ee6d512c7671(
|
|
21395
|
+
value: builtins.str,
|
|
21396
|
+
) -> None:
|
|
21397
|
+
"""Type checking stubs"""
|
|
21398
|
+
pass
|
|
21399
|
+
|
|
21400
|
+
def _typecheckingstub__f80f8919aa1931fd1355cb98d3ba3c657c893861ccf69754a8b746f7907dd0f5(
|
|
21401
|
+
value: jsii.Number,
|
|
21402
|
+
) -> None:
|
|
21403
|
+
"""Type checking stubs"""
|
|
21404
|
+
pass
|
|
21405
|
+
|
|
21406
|
+
def _typecheckingstub__c0c7c15f3bdc57c3fd672a2692d4f0b1b0807a1a07345c24bff2e78b7cbaff01(
|
|
21407
|
+
*,
|
|
21408
|
+
api_id: builtins.str,
|
|
21409
|
+
stage: builtins.str,
|
|
21410
|
+
strip_base_path: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
21411
|
+
) -> None:
|
|
21412
|
+
"""Type checking stubs"""
|
|
21413
|
+
pass
|
|
21414
|
+
|
|
21415
|
+
def _typecheckingstub__288fc4eee0785ab33192a2ebceb8cafb3406672d09c2be411d2e42a7944100fb(
|
|
21416
|
+
*,
|
|
21417
|
+
invoke_api: typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.ActionInvokeApiProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
21418
|
+
) -> None:
|
|
21419
|
+
"""Type checking stubs"""
|
|
21420
|
+
pass
|
|
21421
|
+
|
|
21422
|
+
def _typecheckingstub__94fb944999d03dc7761e925b4cbec320f3d36797eae6cea4ae74471fb82922e0(
|
|
21423
|
+
*,
|
|
21424
|
+
match_base_paths: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.MatchBasePathsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
21425
|
+
match_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.MatchHeadersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
21426
|
+
) -> None:
|
|
21427
|
+
"""Type checking stubs"""
|
|
21428
|
+
pass
|
|
21429
|
+
|
|
21430
|
+
def _typecheckingstub__c6bc39dc8caad1c628ec1061fa3b8fb8c43af70cbc460ce8edeb878b5d1d55a4(
|
|
21431
|
+
*,
|
|
21432
|
+
any_of: typing.Sequence[builtins.str],
|
|
21433
|
+
) -> None:
|
|
21434
|
+
"""Type checking stubs"""
|
|
21435
|
+
pass
|
|
21436
|
+
|
|
21437
|
+
def _typecheckingstub__5e4e12222e78fcf8a4a4316e29343d73081a44a7f3972b2eb1c8278686898c05(
|
|
21438
|
+
*,
|
|
21439
|
+
header: builtins.str,
|
|
21440
|
+
value_glob: builtins.str,
|
|
21441
|
+
) -> None:
|
|
21442
|
+
"""Type checking stubs"""
|
|
21443
|
+
pass
|
|
21444
|
+
|
|
21445
|
+
def _typecheckingstub__eaea58b339e54b65cebd05e915edb193ffb4c68e784891ef2750cd1ad7603f81(
|
|
21446
|
+
*,
|
|
21447
|
+
any_of: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.MatchHeaderValueProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
21448
|
+
) -> None:
|
|
21449
|
+
"""Type checking stubs"""
|
|
21450
|
+
pass
|
|
21451
|
+
|
|
21452
|
+
def _typecheckingstub__fb8be2d22e1b6b6c53d0a575fd177688bab8ea730709eb13ee27de706f3fa0c4(
|
|
21453
|
+
*,
|
|
21454
|
+
actions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.ActionProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
21455
|
+
conditions: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingRule.ConditionProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
21456
|
+
domain_name_arn: builtins.str,
|
|
21457
|
+
priority: jsii.Number,
|
|
21458
|
+
) -> None:
|
|
21459
|
+
"""Type checking stubs"""
|
|
21460
|
+
pass
|
|
21461
|
+
|
|
20596
21462
|
def _typecheckingstub__4b591f85024a936a75a298c8df17bc186d28dc5bff565564266bc639d476a92b(
|
|
20597
21463
|
scope: _constructs_77d1e7e8.Construct,
|
|
20598
21464
|
id: builtins.str,
|