aws-cdk-lib 2.213.0__py3-none-any.whl → 2.214.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 +23 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.213.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +18 -6
- aws_cdk/aws_appintegrations/__init__.py +4 -4
- aws_cdk/aws_apprunner/__init__.py +5 -8
- aws_cdk/aws_aps/__init__.py +243 -10
- aws_cdk/aws_b2bi/__init__.py +1015 -128
- aws_cdk/aws_batch/__init__.py +33 -11
- aws_cdk/aws_bedrock/__init__.py +22 -216
- aws_cdk/aws_budgets/__init__.py +18 -0
- aws_cdk/aws_certificatemanager/__init__.py +96 -15
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_cloudwatch/__init__.py +80 -49
- aws_cdk/aws_cognito/__init__.py +76 -5
- aws_cdk/aws_connect/__init__.py +188 -2
- aws_cdk/aws_datazone/__init__.py +2267 -0
- aws_cdk/aws_deadline/__init__.py +6 -5
- aws_cdk/aws_dynamodb/__init__.py +27 -16
- aws_cdk/aws_ec2/__init__.py +51 -10
- aws_cdk/aws_ecs/__init__.py +288 -25
- aws_cdk/aws_ecs_patterns/__init__.py +2 -0
- aws_cdk/aws_eks/__init__.py +124 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
- aws_cdk/aws_entityresolution/__init__.py +107 -0
- aws_cdk/aws_events/__init__.py +153 -55
- aws_cdk/aws_events_targets/__init__.py +87 -36
- aws_cdk/aws_fsx/__init__.py +62 -0
- aws_cdk/aws_gameliftstreams/__init__.py +1 -1
- aws_cdk/aws_glue/__init__.py +205 -23
- aws_cdk/aws_guardduty/__init__.py +205 -100
- aws_cdk/aws_iam/__init__.py +24 -21
- aws_cdk/aws_inspectorv2/__init__.py +125 -80
- aws_cdk/aws_iot/__init__.py +37 -19
- aws_cdk/aws_iotsitewise/__init__.py +111 -75
- aws_cdk/aws_ivs/__init__.py +17 -17
- aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
- aws_cdk/aws_lambda/__init__.py +23 -2
- aws_cdk/aws_logs/__init__.py +20 -15
- aws_cdk/aws_mediapackagev2/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +477 -2
- aws_cdk/aws_qbusiness/__init__.py +4 -2
- aws_cdk/aws_rds/__init__.py +132 -4
- aws_cdk/aws_route53/__init__.py +18 -11
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3_deployment/__init__.py +45 -0
- aws_cdk/aws_sagemaker/__init__.py +653 -0
- aws_cdk/aws_servicediscovery/__init__.py +22 -37
- aws_cdk/aws_sns/__init__.py +12 -2
- aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
- aws_cdk/aws_sqs/__init__.py +5 -5
- aws_cdk/aws_ssm/__init__.py +8 -3
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_synthetics/__init__.py +222 -12
- aws_cdk/aws_transfer/__init__.py +15 -2
- aws_cdk/aws_vpclattice/__init__.py +41 -0
- aws_cdk/aws_workspacesweb/__init__.py +71 -41
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
|
@@ -72,6 +72,8 @@ Fargate services will use the `LATEST` platform version by default, but you can
|
|
|
72
72
|
|
|
73
73
|
Fargate services use the default VPC Security Group unless one or more are provided using the `securityGroups` property in the constructor.
|
|
74
74
|
|
|
75
|
+
**Security Considerations**: When using custom security groups on your load balancer, the `openListener` property controls whether the load balancer listener allows traffic from anywhere on the internet (0.0.0.0/0). By default, `openListener` is `true`, but it will automatically default to `false` when custom security groups are detected, preventing unintended internet exposure. You can always explicitly set `openListener: true` to override this behavior if needed.
|
|
76
|
+
|
|
75
77
|
By setting `redirectHTTP` to true, CDK will automatically create a listener on port 80 that redirects HTTP traffic to the HTTPS port.
|
|
76
78
|
|
|
77
79
|
If you specify the option `recordType` you can decide if you want the construct to use CNAME or Route53-Aliases as record sets.
|
aws_cdk/aws_eks/__init__.py
CHANGED
|
@@ -5551,6 +5551,9 @@ class CfnAddon(
|
|
|
5551
5551
|
# the properties below are optional
|
|
5552
5552
|
addon_version="addonVersion",
|
|
5553
5553
|
configuration_values="configurationValues",
|
|
5554
|
+
namespace_config=eks.CfnAddon.NamespaceConfigProperty(
|
|
5555
|
+
namespace="namespace"
|
|
5556
|
+
),
|
|
5554
5557
|
pod_identity_associations=[eks.CfnAddon.PodIdentityAssociationProperty(
|
|
5555
5558
|
role_arn="roleArn",
|
|
5556
5559
|
service_account="serviceAccount"
|
|
@@ -5574,6 +5577,7 @@ class CfnAddon(
|
|
|
5574
5577
|
cluster_name: builtins.str,
|
|
5575
5578
|
addon_version: typing.Optional[builtins.str] = None,
|
|
5576
5579
|
configuration_values: typing.Optional[builtins.str] = None,
|
|
5580
|
+
namespace_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAddon.NamespaceConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5577
5581
|
pod_identity_associations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAddon.PodIdentityAssociationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5578
5582
|
preserve_on_delete: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5579
5583
|
resolve_conflicts: typing.Optional[builtins.str] = None,
|
|
@@ -5587,6 +5591,7 @@ class CfnAddon(
|
|
|
5587
5591
|
:param cluster_name: The name of your cluster.
|
|
5588
5592
|
:param addon_version: The version of the add-on.
|
|
5589
5593
|
:param configuration_values: The configuration values that you provided.
|
|
5594
|
+
:param namespace_config: The namespace configuration for the addon. This specifies the Kubernetes namespace where the addon is installed.
|
|
5590
5595
|
:param pod_identity_associations: An array of EKS Pod Identity associations owned by the add-on. Each association maps a role to a service account in a namespace in the cluster. For more information, see `Attach an IAM Role to an Amazon EKS add-on using EKS Pod Identity <https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html>`_ in the *Amazon EKS User Guide* .
|
|
5591
5596
|
:param preserve_on_delete: Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it isn't removed.
|
|
5592
5597
|
:param resolve_conflicts: How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are handled based on the value you choose: - *None* – If the self-managed version of the add-on is installed on your cluster, Amazon EKS doesn't change the value. Creation of the add-on might fail. - *Overwrite* – If the self-managed version of the add-on is installed on your cluster and the Amazon EKS default value is different than the existing value, Amazon EKS changes the value to the Amazon EKS default value. - *Preserve* – This is similar to the NONE option. If the self-managed version of the add-on is installed on your cluster Amazon EKS doesn't change the add-on resource properties. Creation of the add-on might fail if conflicts are detected. This option works differently during the update operation. For more information, see ```UpdateAddon`` <https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html>`_ . If you don't currently have the self-managed version of the add-on installed on your cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default values, regardless of the option that you specify.
|
|
@@ -5602,6 +5607,7 @@ class CfnAddon(
|
|
|
5602
5607
|
cluster_name=cluster_name,
|
|
5603
5608
|
addon_version=addon_version,
|
|
5604
5609
|
configuration_values=configuration_values,
|
|
5610
|
+
namespace_config=namespace_config,
|
|
5605
5611
|
pod_identity_associations=pod_identity_associations,
|
|
5606
5612
|
preserve_on_delete=preserve_on_delete,
|
|
5607
5613
|
resolve_conflicts=resolve_conflicts,
|
|
@@ -5713,6 +5719,24 @@ class CfnAddon(
|
|
|
5713
5719
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5714
5720
|
jsii.set(self, "configurationValues", value) # pyright: ignore[reportArgumentType]
|
|
5715
5721
|
|
|
5722
|
+
@builtins.property
|
|
5723
|
+
@jsii.member(jsii_name="namespaceConfig")
|
|
5724
|
+
def namespace_config(
|
|
5725
|
+
self,
|
|
5726
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAddon.NamespaceConfigProperty"]]:
|
|
5727
|
+
'''The namespace configuration for the addon.'''
|
|
5728
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAddon.NamespaceConfigProperty"]], jsii.get(self, "namespaceConfig"))
|
|
5729
|
+
|
|
5730
|
+
@namespace_config.setter
|
|
5731
|
+
def namespace_config(
|
|
5732
|
+
self,
|
|
5733
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAddon.NamespaceConfigProperty"]],
|
|
5734
|
+
) -> None:
|
|
5735
|
+
if __debug__:
|
|
5736
|
+
type_hints = typing.get_type_hints(_typecheckingstub__039b518895f39f54dce3ea31a35bed66445fb7b5e7f4c52a89adafc86911f331)
|
|
5737
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5738
|
+
jsii.set(self, "namespaceConfig", value) # pyright: ignore[reportArgumentType]
|
|
5739
|
+
|
|
5716
5740
|
@builtins.property
|
|
5717
5741
|
@jsii.member(jsii_name="podIdentityAssociations")
|
|
5718
5742
|
def pod_identity_associations(
|
|
@@ -5788,6 +5812,58 @@ class CfnAddon(
|
|
|
5788
5812
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5789
5813
|
jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
|
|
5790
5814
|
|
|
5815
|
+
@jsii.data_type(
|
|
5816
|
+
jsii_type="aws-cdk-lib.aws_eks.CfnAddon.NamespaceConfigProperty",
|
|
5817
|
+
jsii_struct_bases=[],
|
|
5818
|
+
name_mapping={"namespace": "namespace"},
|
|
5819
|
+
)
|
|
5820
|
+
class NamespaceConfigProperty:
|
|
5821
|
+
def __init__(self, *, namespace: builtins.str) -> None:
|
|
5822
|
+
'''The custom namespace configuration to use with the add-on.
|
|
5823
|
+
|
|
5824
|
+
:param namespace: The custom namespace for creating the add-on.
|
|
5825
|
+
|
|
5826
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-addon-namespaceconfig.html
|
|
5827
|
+
:exampleMetadata: fixture=_generated
|
|
5828
|
+
|
|
5829
|
+
Example::
|
|
5830
|
+
|
|
5831
|
+
# The code below shows an example of how to instantiate this type.
|
|
5832
|
+
# The values are placeholders you should change.
|
|
5833
|
+
from aws_cdk import aws_eks as eks
|
|
5834
|
+
|
|
5835
|
+
namespace_config_property = eks.CfnAddon.NamespaceConfigProperty(
|
|
5836
|
+
namespace="namespace"
|
|
5837
|
+
)
|
|
5838
|
+
'''
|
|
5839
|
+
if __debug__:
|
|
5840
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c336eaf5f7476c60c3b0b8dc688fc9ea53319525b39f820a30e2510a38e67cbc)
|
|
5841
|
+
check_type(argname="argument namespace", value=namespace, expected_type=type_hints["namespace"])
|
|
5842
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5843
|
+
"namespace": namespace,
|
|
5844
|
+
}
|
|
5845
|
+
|
|
5846
|
+
@builtins.property
|
|
5847
|
+
def namespace(self) -> builtins.str:
|
|
5848
|
+
'''The custom namespace for creating the add-on.
|
|
5849
|
+
|
|
5850
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-addon-namespaceconfig.html#cfn-eks-addon-namespaceconfig-namespace
|
|
5851
|
+
'''
|
|
5852
|
+
result = self._values.get("namespace")
|
|
5853
|
+
assert result is not None, "Required property 'namespace' is missing"
|
|
5854
|
+
return typing.cast(builtins.str, result)
|
|
5855
|
+
|
|
5856
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5857
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5858
|
+
|
|
5859
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5860
|
+
return not (rhs == self)
|
|
5861
|
+
|
|
5862
|
+
def __repr__(self) -> str:
|
|
5863
|
+
return "NamespaceConfigProperty(%s)" % ", ".join(
|
|
5864
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5865
|
+
)
|
|
5866
|
+
|
|
5791
5867
|
@jsii.data_type(
|
|
5792
5868
|
jsii_type="aws-cdk-lib.aws_eks.CfnAddon.PodIdentityAssociationProperty",
|
|
5793
5869
|
jsii_struct_bases=[],
|
|
@@ -5870,6 +5946,7 @@ class CfnAddon(
|
|
|
5870
5946
|
"cluster_name": "clusterName",
|
|
5871
5947
|
"addon_version": "addonVersion",
|
|
5872
5948
|
"configuration_values": "configurationValues",
|
|
5949
|
+
"namespace_config": "namespaceConfig",
|
|
5873
5950
|
"pod_identity_associations": "podIdentityAssociations",
|
|
5874
5951
|
"preserve_on_delete": "preserveOnDelete",
|
|
5875
5952
|
"resolve_conflicts": "resolveConflicts",
|
|
@@ -5885,6 +5962,7 @@ class CfnAddonProps:
|
|
|
5885
5962
|
cluster_name: builtins.str,
|
|
5886
5963
|
addon_version: typing.Optional[builtins.str] = None,
|
|
5887
5964
|
configuration_values: typing.Optional[builtins.str] = None,
|
|
5965
|
+
namespace_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAddon.NamespaceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5888
5966
|
pod_identity_associations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAddon.PodIdentityAssociationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5889
5967
|
preserve_on_delete: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5890
5968
|
resolve_conflicts: typing.Optional[builtins.str] = None,
|
|
@@ -5897,6 +5975,7 @@ class CfnAddonProps:
|
|
|
5897
5975
|
:param cluster_name: The name of your cluster.
|
|
5898
5976
|
:param addon_version: The version of the add-on.
|
|
5899
5977
|
:param configuration_values: The configuration values that you provided.
|
|
5978
|
+
:param namespace_config: The namespace configuration for the addon. This specifies the Kubernetes namespace where the addon is installed.
|
|
5900
5979
|
:param pod_identity_associations: An array of EKS Pod Identity associations owned by the add-on. Each association maps a role to a service account in a namespace in the cluster. For more information, see `Attach an IAM Role to an Amazon EKS add-on using EKS Pod Identity <https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html>`_ in the *Amazon EKS User Guide* .
|
|
5901
5980
|
:param preserve_on_delete: Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it isn't removed.
|
|
5902
5981
|
:param resolve_conflicts: How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are handled based on the value you choose: - *None* – If the self-managed version of the add-on is installed on your cluster, Amazon EKS doesn't change the value. Creation of the add-on might fail. - *Overwrite* – If the self-managed version of the add-on is installed on your cluster and the Amazon EKS default value is different than the existing value, Amazon EKS changes the value to the Amazon EKS default value. - *Preserve* – This is similar to the NONE option. If the self-managed version of the add-on is installed on your cluster Amazon EKS doesn't change the add-on resource properties. Creation of the add-on might fail if conflicts are detected. This option works differently during the update operation. For more information, see ```UpdateAddon`` <https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html>`_ . If you don't currently have the self-managed version of the add-on installed on your cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default values, regardless of the option that you specify.
|
|
@@ -5919,6 +5998,9 @@ class CfnAddonProps:
|
|
|
5919
5998
|
# the properties below are optional
|
|
5920
5999
|
addon_version="addonVersion",
|
|
5921
6000
|
configuration_values="configurationValues",
|
|
6001
|
+
namespace_config=eks.CfnAddon.NamespaceConfigProperty(
|
|
6002
|
+
namespace="namespace"
|
|
6003
|
+
),
|
|
5922
6004
|
pod_identity_associations=[eks.CfnAddon.PodIdentityAssociationProperty(
|
|
5923
6005
|
role_arn="roleArn",
|
|
5924
6006
|
service_account="serviceAccount"
|
|
@@ -5938,6 +6020,7 @@ class CfnAddonProps:
|
|
|
5938
6020
|
check_type(argname="argument cluster_name", value=cluster_name, expected_type=type_hints["cluster_name"])
|
|
5939
6021
|
check_type(argname="argument addon_version", value=addon_version, expected_type=type_hints["addon_version"])
|
|
5940
6022
|
check_type(argname="argument configuration_values", value=configuration_values, expected_type=type_hints["configuration_values"])
|
|
6023
|
+
check_type(argname="argument namespace_config", value=namespace_config, expected_type=type_hints["namespace_config"])
|
|
5941
6024
|
check_type(argname="argument pod_identity_associations", value=pod_identity_associations, expected_type=type_hints["pod_identity_associations"])
|
|
5942
6025
|
check_type(argname="argument preserve_on_delete", value=preserve_on_delete, expected_type=type_hints["preserve_on_delete"])
|
|
5943
6026
|
check_type(argname="argument resolve_conflicts", value=resolve_conflicts, expected_type=type_hints["resolve_conflicts"])
|
|
@@ -5951,6 +6034,8 @@ class CfnAddonProps:
|
|
|
5951
6034
|
self._values["addon_version"] = addon_version
|
|
5952
6035
|
if configuration_values is not None:
|
|
5953
6036
|
self._values["configuration_values"] = configuration_values
|
|
6037
|
+
if namespace_config is not None:
|
|
6038
|
+
self._values["namespace_config"] = namespace_config
|
|
5954
6039
|
if pod_identity_associations is not None:
|
|
5955
6040
|
self._values["pod_identity_associations"] = pod_identity_associations
|
|
5956
6041
|
if preserve_on_delete is not None:
|
|
@@ -6000,6 +6085,19 @@ class CfnAddonProps:
|
|
|
6000
6085
|
result = self._values.get("configuration_values")
|
|
6001
6086
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
6002
6087
|
|
|
6088
|
+
@builtins.property
|
|
6089
|
+
def namespace_config(
|
|
6090
|
+
self,
|
|
6091
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAddon.NamespaceConfigProperty]]:
|
|
6092
|
+
'''The namespace configuration for the addon.
|
|
6093
|
+
|
|
6094
|
+
This specifies the Kubernetes namespace where the addon is installed.
|
|
6095
|
+
|
|
6096
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-addon.html#cfn-eks-addon-namespaceconfig
|
|
6097
|
+
'''
|
|
6098
|
+
result = self._values.get("namespace_config")
|
|
6099
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAddon.NamespaceConfigProperty]], result)
|
|
6100
|
+
|
|
6003
6101
|
@builtins.property
|
|
6004
6102
|
def pod_identity_associations(
|
|
6005
6103
|
self,
|
|
@@ -18265,6 +18363,17 @@ class ServiceLoadBalancerAddressOptions:
|
|
|
18265
18363
|
class TaintEffect(enum.Enum):
|
|
18266
18364
|
'''Effect types of kubernetes node taint.
|
|
18267
18365
|
|
|
18366
|
+
Note: These values are specifically for AWS EKS NodeGroups and use the AWS API format.
|
|
18367
|
+
When using AWS CLI or API, taint effects must be NO_SCHEDULE, PREFER_NO_SCHEDULE, or NO_EXECUTE.
|
|
18368
|
+
When using Kubernetes directly or kubectl, taint effects must be NoSchedule, PreferNoSchedule, or NoExecute.
|
|
18369
|
+
|
|
18370
|
+
For Kubernetes manifests (like Karpenter NodePools), use string literals with PascalCase format:
|
|
18371
|
+
|
|
18372
|
+
- 'NoSchedule' instead of TaintEffect.NO_SCHEDULE
|
|
18373
|
+
- 'PreferNoSchedule' instead of TaintEffect.PREFER_NO_SCHEDULE
|
|
18374
|
+
- 'NoExecute' instead of TaintEffect.NO_EXECUTE
|
|
18375
|
+
|
|
18376
|
+
:see: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
|
18268
18377
|
:exampleMetadata: infused
|
|
18269
18378
|
|
|
18270
18379
|
Example::
|
|
@@ -22322,6 +22431,7 @@ def _typecheckingstub__45ff0728c7d6fc5f47c97aa791c327f70a32e19bdf463d94d9351053f
|
|
|
22322
22431
|
cluster_name: builtins.str,
|
|
22323
22432
|
addon_version: typing.Optional[builtins.str] = None,
|
|
22324
22433
|
configuration_values: typing.Optional[builtins.str] = None,
|
|
22434
|
+
namespace_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAddon.NamespaceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
22325
22435
|
pod_identity_associations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAddon.PodIdentityAssociationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
22326
22436
|
preserve_on_delete: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
22327
22437
|
resolve_conflicts: typing.Optional[builtins.str] = None,
|
|
@@ -22367,6 +22477,12 @@ def _typecheckingstub__f2b158aed78a78d2962c2650df64f6c3880ccb508ebd6b281bda6c1a1
|
|
|
22367
22477
|
"""Type checking stubs"""
|
|
22368
22478
|
pass
|
|
22369
22479
|
|
|
22480
|
+
def _typecheckingstub__039b518895f39f54dce3ea31a35bed66445fb7b5e7f4c52a89adafc86911f331(
|
|
22481
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAddon.NamespaceConfigProperty]],
|
|
22482
|
+
) -> None:
|
|
22483
|
+
"""Type checking stubs"""
|
|
22484
|
+
pass
|
|
22485
|
+
|
|
22370
22486
|
def _typecheckingstub__04a430658e28600fba10a8c3e5edab2978904829dda6f2c70e9cca8560f7e400(
|
|
22371
22487
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnAddon.PodIdentityAssociationProperty]]]],
|
|
22372
22488
|
) -> None:
|
|
@@ -22397,6 +22513,13 @@ def _typecheckingstub__61cfcc2cd9aba81e02df7f2a5c976044dc5e5cbf6c05b880c4944cb35
|
|
|
22397
22513
|
"""Type checking stubs"""
|
|
22398
22514
|
pass
|
|
22399
22515
|
|
|
22516
|
+
def _typecheckingstub__c336eaf5f7476c60c3b0b8dc688fc9ea53319525b39f820a30e2510a38e67cbc(
|
|
22517
|
+
*,
|
|
22518
|
+
namespace: builtins.str,
|
|
22519
|
+
) -> None:
|
|
22520
|
+
"""Type checking stubs"""
|
|
22521
|
+
pass
|
|
22522
|
+
|
|
22400
22523
|
def _typecheckingstub__3925c850dd0d0ad3b9faeea87aafbe69220a7bf33d95af5527715674625c9891(
|
|
22401
22524
|
*,
|
|
22402
22525
|
role_arn: builtins.str,
|
|
@@ -22411,6 +22534,7 @@ def _typecheckingstub__484b2779e40e4780cb0940ac7bc9daaf91fa04347613d732138d3be3d
|
|
|
22411
22534
|
cluster_name: builtins.str,
|
|
22412
22535
|
addon_version: typing.Optional[builtins.str] = None,
|
|
22413
22536
|
configuration_values: typing.Optional[builtins.str] = None,
|
|
22537
|
+
namespace_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAddon.NamespaceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
22414
22538
|
pod_identity_associations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAddon.PodIdentityAssociationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
22415
22539
|
preserve_on_delete: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
22416
22540
|
resolve_conflicts: typing.Optional[builtins.str] = None,
|
|
@@ -10666,7 +10666,7 @@ class CfnTrustStore(
|
|
|
10666
10666
|
):
|
|
10667
10667
|
'''Creates a trust store.
|
|
10668
10668
|
|
|
10669
|
-
You must specify ``CaCertificatesBundleS3Bucket`` and ``CaCertificatesBundleS3Key`` .
|
|
10669
|
+
You must specify ``CaCertificatesBundleS3Bucket`` and ``CaCertificatesBundleS3Key`` . When you create a trust store, you must specify ``Name`` .
|
|
10670
10670
|
|
|
10671
10671
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-truststore.html
|
|
10672
10672
|
:cloudformationResource: AWS::ElasticLoadBalancingV2::TrustStore
|
|
@@ -10766,7 +10766,9 @@ class CfnTrustStore(
|
|
|
10766
10766
|
@builtins.property
|
|
10767
10767
|
@jsii.member(jsii_name="attrStatus")
|
|
10768
10768
|
def attr_status(self) -> builtins.str:
|
|
10769
|
-
'''The
|
|
10769
|
+
'''The status of the trust store.
|
|
10770
|
+
|
|
10771
|
+
The possible values are ``CREATING`` and ``ACTIVE`` .
|
|
10770
10772
|
|
|
10771
10773
|
:cloudformationAttribute: Status
|
|
10772
10774
|
'''
|
|
@@ -11093,6 +11095,8 @@ class CfnTrustStoreRevocation(
|
|
|
11093
11095
|
def attr_trust_store_revocations(self) -> _IResolvable_da3f097b:
|
|
11094
11096
|
'''Information about the revocation file in the trust store.
|
|
11095
11097
|
|
|
11098
|
+
For more information, see `TrustStoreRevocation <https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-elasticloadbalancingv2-truststorerevocation-truststorerevocation.html>`_ .
|
|
11099
|
+
|
|
11096
11100
|
:cloudformationAttribute: TrustStoreRevocations
|
|
11097
11101
|
'''
|
|
11098
11102
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrTrustStoreRevocations"))
|
|
@@ -140,6 +140,9 @@ class CfnIdMappingWorkflow(
|
|
|
140
140
|
|
|
141
141
|
# the properties below are optional
|
|
142
142
|
description="description",
|
|
143
|
+
id_mapping_incremental_run_config=entityresolution.CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty(
|
|
144
|
+
incremental_run_type="incrementalRunType"
|
|
145
|
+
),
|
|
143
146
|
output_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty(
|
|
144
147
|
output_s3_path="outputS3Path",
|
|
145
148
|
|
|
@@ -163,6 +166,7 @@ class CfnIdMappingWorkflow(
|
|
|
163
166
|
role_arn: builtins.str,
|
|
164
167
|
workflow_name: builtins.str,
|
|
165
168
|
description: typing.Optional[builtins.str] = None,
|
|
169
|
+
id_mapping_incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
166
170
|
output_source_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
167
171
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
168
172
|
) -> None:
|
|
@@ -174,6 +178,7 @@ class CfnIdMappingWorkflow(
|
|
|
174
178
|
:param role_arn: The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
|
175
179
|
:param workflow_name: The name of the workflow. There can't be multiple ``IdMappingWorkflows`` with the same name.
|
|
176
180
|
:param description: A description of the workflow.
|
|
181
|
+
:param id_mapping_incremental_run_config:
|
|
177
182
|
:param output_source_config: A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``outputS3Path`` and ``KMSArn`` .
|
|
178
183
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
179
184
|
'''
|
|
@@ -187,6 +192,7 @@ class CfnIdMappingWorkflow(
|
|
|
187
192
|
role_arn=role_arn,
|
|
188
193
|
workflow_name=workflow_name,
|
|
189
194
|
description=description,
|
|
195
|
+
id_mapping_incremental_run_config=id_mapping_incremental_run_config,
|
|
190
196
|
output_source_config=output_source_config,
|
|
191
197
|
tags=tags,
|
|
192
198
|
)
|
|
@@ -336,6 +342,23 @@ class CfnIdMappingWorkflow(
|
|
|
336
342
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
337
343
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
338
344
|
|
|
345
|
+
@builtins.property
|
|
346
|
+
@jsii.member(jsii_name="idMappingIncrementalRunConfig")
|
|
347
|
+
def id_mapping_incremental_run_config(
|
|
348
|
+
self,
|
|
349
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty"]]:
|
|
350
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty"]], jsii.get(self, "idMappingIncrementalRunConfig"))
|
|
351
|
+
|
|
352
|
+
@id_mapping_incremental_run_config.setter
|
|
353
|
+
def id_mapping_incremental_run_config(
|
|
354
|
+
self,
|
|
355
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty"]],
|
|
356
|
+
) -> None:
|
|
357
|
+
if __debug__:
|
|
358
|
+
type_hints = typing.get_type_hints(_typecheckingstub__05343eaa423891f629815a20fdb306f3b3da6aa0d3418d30466a32ec633713a2)
|
|
359
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
360
|
+
jsii.set(self, "idMappingIncrementalRunConfig", value) # pyright: ignore[reportArgumentType]
|
|
361
|
+
|
|
339
362
|
@builtins.property
|
|
340
363
|
@jsii.member(jsii_name="outputSourceConfig")
|
|
341
364
|
def output_source_config(
|
|
@@ -367,6 +390,56 @@ class CfnIdMappingWorkflow(
|
|
|
367
390
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
368
391
|
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
369
392
|
|
|
393
|
+
@jsii.data_type(
|
|
394
|
+
jsii_type="aws-cdk-lib.aws_entityresolution.CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty",
|
|
395
|
+
jsii_struct_bases=[],
|
|
396
|
+
name_mapping={"incremental_run_type": "incrementalRunType"},
|
|
397
|
+
)
|
|
398
|
+
class IdMappingIncrementalRunConfigProperty:
|
|
399
|
+
def __init__(self, *, incremental_run_type: builtins.str) -> None:
|
|
400
|
+
'''
|
|
401
|
+
:param incremental_run_type:
|
|
402
|
+
|
|
403
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingincrementalrunconfig.html
|
|
404
|
+
:exampleMetadata: fixture=_generated
|
|
405
|
+
|
|
406
|
+
Example::
|
|
407
|
+
|
|
408
|
+
# The code below shows an example of how to instantiate this type.
|
|
409
|
+
# The values are placeholders you should change.
|
|
410
|
+
from aws_cdk import aws_entityresolution as entityresolution
|
|
411
|
+
|
|
412
|
+
id_mapping_incremental_run_config_property = entityresolution.CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty(
|
|
413
|
+
incremental_run_type="incrementalRunType"
|
|
414
|
+
)
|
|
415
|
+
'''
|
|
416
|
+
if __debug__:
|
|
417
|
+
type_hints = typing.get_type_hints(_typecheckingstub__115e9b3aa3c15532ffa6d06e165d032acb0428815b530082a13312eaf046d37b)
|
|
418
|
+
check_type(argname="argument incremental_run_type", value=incremental_run_type, expected_type=type_hints["incremental_run_type"])
|
|
419
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
420
|
+
"incremental_run_type": incremental_run_type,
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
@builtins.property
|
|
424
|
+
def incremental_run_type(self) -> builtins.str:
|
|
425
|
+
'''
|
|
426
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingincrementalrunconfig.html#cfn-entityresolution-idmappingworkflow-idmappingincrementalrunconfig-incrementalruntype
|
|
427
|
+
'''
|
|
428
|
+
result = self._values.get("incremental_run_type")
|
|
429
|
+
assert result is not None, "Required property 'incremental_run_type' is missing"
|
|
430
|
+
return typing.cast(builtins.str, result)
|
|
431
|
+
|
|
432
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
433
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
434
|
+
|
|
435
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
436
|
+
return not (rhs == self)
|
|
437
|
+
|
|
438
|
+
def __repr__(self) -> str:
|
|
439
|
+
return "IdMappingIncrementalRunConfigProperty(%s)" % ", ".join(
|
|
440
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
441
|
+
)
|
|
442
|
+
|
|
370
443
|
@jsii.data_type(
|
|
371
444
|
jsii_type="aws-cdk-lib.aws_entityresolution.CfnIdMappingWorkflow.IdMappingRuleBasedPropertiesProperty",
|
|
372
445
|
jsii_struct_bases=[],
|
|
@@ -1015,6 +1088,7 @@ class CfnIdMappingWorkflow(
|
|
|
1015
1088
|
"role_arn": "roleArn",
|
|
1016
1089
|
"workflow_name": "workflowName",
|
|
1017
1090
|
"description": "description",
|
|
1091
|
+
"id_mapping_incremental_run_config": "idMappingIncrementalRunConfig",
|
|
1018
1092
|
"output_source_config": "outputSourceConfig",
|
|
1019
1093
|
"tags": "tags",
|
|
1020
1094
|
},
|
|
@@ -1028,6 +1102,7 @@ class CfnIdMappingWorkflowProps:
|
|
|
1028
1102
|
role_arn: builtins.str,
|
|
1029
1103
|
workflow_name: builtins.str,
|
|
1030
1104
|
description: typing.Optional[builtins.str] = None,
|
|
1105
|
+
id_mapping_incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1031
1106
|
output_source_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1032
1107
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1033
1108
|
) -> None:
|
|
@@ -1038,6 +1113,7 @@ class CfnIdMappingWorkflowProps:
|
|
|
1038
1113
|
:param role_arn: The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
|
1039
1114
|
:param workflow_name: The name of the workflow. There can't be multiple ``IdMappingWorkflows`` with the same name.
|
|
1040
1115
|
:param description: A description of the workflow.
|
|
1116
|
+
:param id_mapping_incremental_run_config:
|
|
1041
1117
|
:param output_source_config: A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``outputS3Path`` and ``KMSArn`` .
|
|
1042
1118
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
1043
1119
|
|
|
@@ -1088,6 +1164,9 @@ class CfnIdMappingWorkflowProps:
|
|
|
1088
1164
|
|
|
1089
1165
|
# the properties below are optional
|
|
1090
1166
|
description="description",
|
|
1167
|
+
id_mapping_incremental_run_config=entityresolution.CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty(
|
|
1168
|
+
incremental_run_type="incrementalRunType"
|
|
1169
|
+
),
|
|
1091
1170
|
output_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty(
|
|
1092
1171
|
output_s3_path="outputS3Path",
|
|
1093
1172
|
|
|
@@ -1107,6 +1186,7 @@ class CfnIdMappingWorkflowProps:
|
|
|
1107
1186
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
1108
1187
|
check_type(argname="argument workflow_name", value=workflow_name, expected_type=type_hints["workflow_name"])
|
|
1109
1188
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1189
|
+
check_type(argname="argument id_mapping_incremental_run_config", value=id_mapping_incremental_run_config, expected_type=type_hints["id_mapping_incremental_run_config"])
|
|
1110
1190
|
check_type(argname="argument output_source_config", value=output_source_config, expected_type=type_hints["output_source_config"])
|
|
1111
1191
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1112
1192
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -1117,6 +1197,8 @@ class CfnIdMappingWorkflowProps:
|
|
|
1117
1197
|
}
|
|
1118
1198
|
if description is not None:
|
|
1119
1199
|
self._values["description"] = description
|
|
1200
|
+
if id_mapping_incremental_run_config is not None:
|
|
1201
|
+
self._values["id_mapping_incremental_run_config"] = id_mapping_incremental_run_config
|
|
1120
1202
|
if output_source_config is not None:
|
|
1121
1203
|
self._values["output_source_config"] = output_source_config
|
|
1122
1204
|
if tags is not None:
|
|
@@ -1179,6 +1261,16 @@ class CfnIdMappingWorkflowProps:
|
|
|
1179
1261
|
result = self._values.get("description")
|
|
1180
1262
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1181
1263
|
|
|
1264
|
+
@builtins.property
|
|
1265
|
+
def id_mapping_incremental_run_config(
|
|
1266
|
+
self,
|
|
1267
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty]]:
|
|
1268
|
+
'''
|
|
1269
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-idmappingincrementalrunconfig
|
|
1270
|
+
'''
|
|
1271
|
+
result = self._values.get("id_mapping_incremental_run_config")
|
|
1272
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty]], result)
|
|
1273
|
+
|
|
1182
1274
|
@builtins.property
|
|
1183
1275
|
def output_source_config(
|
|
1184
1276
|
self,
|
|
@@ -4546,6 +4638,7 @@ def _typecheckingstub__498454075de816db2ba240e783f9530effd93522c63f637ee5bff5bbf
|
|
|
4546
4638
|
role_arn: builtins.str,
|
|
4547
4639
|
workflow_name: builtins.str,
|
|
4548
4640
|
description: typing.Optional[builtins.str] = None,
|
|
4641
|
+
id_mapping_incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4549
4642
|
output_source_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4550
4643
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4551
4644
|
) -> None:
|
|
@@ -4594,6 +4687,12 @@ def _typecheckingstub__73508385219d92414fa73246ef135667c9eca037d9a796d5490e9c29d
|
|
|
4594
4687
|
"""Type checking stubs"""
|
|
4595
4688
|
pass
|
|
4596
4689
|
|
|
4690
|
+
def _typecheckingstub__05343eaa423891f629815a20fdb306f3b3da6aa0d3418d30466a32ec633713a2(
|
|
4691
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty]],
|
|
4692
|
+
) -> None:
|
|
4693
|
+
"""Type checking stubs"""
|
|
4694
|
+
pass
|
|
4695
|
+
|
|
4597
4696
|
def _typecheckingstub__c441bfde4467a201e4e9322b69a020514feb4e0efb56d31892f1f02e461d7119(
|
|
4598
4697
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty]]]],
|
|
4599
4698
|
) -> None:
|
|
@@ -4606,6 +4705,13 @@ def _typecheckingstub__f1c5de5e1db5e25e42cb52039b70835fa351dc563f560ac5ff3604bab
|
|
|
4606
4705
|
"""Type checking stubs"""
|
|
4607
4706
|
pass
|
|
4608
4707
|
|
|
4708
|
+
def _typecheckingstub__115e9b3aa3c15532ffa6d06e165d032acb0428815b530082a13312eaf046d37b(
|
|
4709
|
+
*,
|
|
4710
|
+
incremental_run_type: builtins.str,
|
|
4711
|
+
) -> None:
|
|
4712
|
+
"""Type checking stubs"""
|
|
4713
|
+
pass
|
|
4714
|
+
|
|
4609
4715
|
def _typecheckingstub__4bb92f6ba90c637e6800332c85746dca9a127a9d4ac3f6130ef5f9057e52d644(
|
|
4610
4716
|
*,
|
|
4611
4717
|
attribute_matching_model: builtins.str,
|
|
@@ -4673,6 +4779,7 @@ def _typecheckingstub__a92ec1b5f460936930fefdd0c239f69c3ec93198e4a71c3867bbe1bf1
|
|
|
4673
4779
|
role_arn: builtins.str,
|
|
4674
4780
|
workflow_name: builtins.str,
|
|
4675
4781
|
description: typing.Optional[builtins.str] = None,
|
|
4782
|
+
id_mapping_incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4676
4783
|
output_source_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4677
4784
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4678
4785
|
) -> None:
|