aws-cdk-lib 2.156.0__py3-none-any.whl → 2.157.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 +26 -22
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.156.0.jsii.tgz → aws-cdk-lib@2.157.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +10 -75
- aws_cdk/aws_amplify/__init__.py +106 -0
- aws_cdk/aws_apigatewayv2/__init__.py +81 -13
- aws_cdk/aws_appintegrations/__init__.py +14 -14
- aws_cdk/aws_applicationsignals/__init__.py +750 -1
- aws_cdk/aws_appsync/__init__.py +50 -18
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_backup/__init__.py +39 -0
- aws_cdk/aws_batch/__init__.py +41 -0
- aws_cdk/aws_bedrock/__init__.py +1513 -94
- aws_cdk/aws_chatbot/__init__.py +6 -6
- aws_cdk/aws_cloudformation/__init__.py +22 -22
- aws_cdk/aws_cloudfront/experimental/__init__.py +30 -3
- aws_cdk/aws_datasync/__init__.py +40 -29
- aws_cdk/aws_ec2/__init__.py +373 -49
- aws_cdk/aws_ecs/__init__.py +253 -87
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -4
- aws_cdk/aws_entityresolution/__init__.py +117 -4
- aws_cdk/aws_glue/__init__.py +0 -8
- aws_cdk/aws_groundstation/__init__.py +27 -16
- aws_cdk/aws_guardduty/__init__.py +26 -14
- aws_cdk/aws_iotfleetwise/__init__.py +108 -0
- aws_cdk/aws_lambda/__init__.py +147 -17
- aws_cdk/aws_lambda_nodejs/__init__.py +30 -3
- aws_cdk/aws_macie/__init__.py +4 -4
- aws_cdk/aws_medialive/__init__.py +348 -0
- aws_cdk/aws_mediapackagev2/__init__.py +38 -38
- aws_cdk/aws_neptune/__init__.py +14 -8
- aws_cdk/aws_opensearchservice/__init__.py +194 -0
- aws_cdk/aws_pcaconnectorscep/__init__.py +884 -0
- aws_cdk/aws_personalize/__init__.py +2 -2
- aws_cdk/aws_pipes/__init__.py +22 -22
- aws_cdk/aws_qbusiness/__init__.py +675 -6
- aws_cdk/aws_quicksight/__init__.py +3285 -0
- aws_cdk/aws_rds/__init__.py +18 -0
- aws_cdk/aws_sagemaker/__init__.py +1167 -0
- aws_cdk/aws_secretsmanager/__init__.py +2 -3
- aws_cdk/aws_securityhub/__init__.py +108 -103
- aws_cdk/aws_ses/__init__.py +31 -0
- aws_cdk/aws_sns/__init__.py +19 -13
- aws_cdk/aws_ssm/__init__.py +10 -6
- aws_cdk/aws_ssmquicksetup/__init__.py +967 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +4 -4
- aws_cdk/triggers/__init__.py +30 -3
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/RECORD +53 -51
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/top_level.txt +0 -0
|
@@ -8812,7 +8812,7 @@ class CfnTargetGroup(
|
|
|
8812
8812
|
:param protocol: The protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. For Gateway Load Balancers, the supported protocol is GENEVE. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply.
|
|
8813
8813
|
:param protocol_version: [HTTP/HTTPS protocol] The protocol version. The possible values are ``GRPC`` , ``HTTP1`` , and ``HTTP2`` .
|
|
8814
8814
|
:param tags: The tags.
|
|
8815
|
-
:param target_group_attributes: The attributes.
|
|
8815
|
+
:param target_group_attributes: The target group attributes.
|
|
8816
8816
|
:param targets: The targets.
|
|
8817
8817
|
:param target_type: The type of target that you must specify when registering targets with this target group. You can't specify targets for a target group using more than one target type. - ``instance`` - Register targets by instance ID. This is the default value. - ``ip`` - Register targets by IP address. You can specify IP addresses from the subnets of the virtual private cloud (VPC) for the target group, the RFC 1918 range (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16), and the RFC 6598 range (100.64.0.0/10). You can't specify publicly routable IP addresses. - ``lambda`` - Register a single Lambda function as a target. - ``alb`` - Register a single Application Load Balancer as a target.
|
|
8818
8818
|
:param unhealthy_threshold_count: The number of consecutive health check failures required before considering a target unhealthy. The range is 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 2. For target groups with a protocol of GENEVE, the default is 2. If the target type is ``lambda`` , the default is 5.
|
|
@@ -9127,7 +9127,7 @@ class CfnTargetGroup(
|
|
|
9127
9127
|
def target_group_attributes(
|
|
9128
9128
|
self,
|
|
9129
9129
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTargetGroup.TargetGroupAttributeProperty"]]]]:
|
|
9130
|
-
'''The attributes.'''
|
|
9130
|
+
'''The target group attributes.'''
|
|
9131
9131
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTargetGroup.TargetGroupAttributeProperty"]]]], jsii.get(self, "targetGroupAttributes"))
|
|
9132
9132
|
|
|
9133
9133
|
@target_group_attributes.setter
|
|
@@ -9566,7 +9566,7 @@ class CfnTargetGroupProps:
|
|
|
9566
9566
|
:param protocol: The protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. For Gateway Load Balancers, the supported protocol is GENEVE. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply.
|
|
9567
9567
|
:param protocol_version: [HTTP/HTTPS protocol] The protocol version. The possible values are ``GRPC`` , ``HTTP1`` , and ``HTTP2`` .
|
|
9568
9568
|
:param tags: The tags.
|
|
9569
|
-
:param target_group_attributes: The attributes.
|
|
9569
|
+
:param target_group_attributes: The target group attributes.
|
|
9570
9570
|
:param targets: The targets.
|
|
9571
9571
|
:param target_type: The type of target that you must specify when registering targets with this target group. You can't specify targets for a target group using more than one target type. - ``instance`` - Register targets by instance ID. This is the default value. - ``ip`` - Register targets by IP address. You can specify IP addresses from the subnets of the virtual private cloud (VPC) for the target group, the RFC 1918 range (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16), and the RFC 6598 range (100.64.0.0/10). You can't specify publicly routable IP addresses. - ``lambda`` - Register a single Lambda function as a target. - ``alb`` - Register a single Application Load Balancer as a target.
|
|
9572
9572
|
:param unhealthy_threshold_count: The number of consecutive health check failures required before considering a target unhealthy. The range is 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 2. For target groups with a protocol of GENEVE, the default is 2. If the target type is ``lambda`` , the default is 5.
|
|
@@ -9841,7 +9841,7 @@ class CfnTargetGroupProps:
|
|
|
9841
9841
|
def target_group_attributes(
|
|
9842
9842
|
self,
|
|
9843
9843
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTargetGroup.TargetGroupAttributeProperty]]]]:
|
|
9844
|
-
'''The attributes.
|
|
9844
|
+
'''The target group attributes.
|
|
9845
9845
|
|
|
9846
9846
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targetgroupattributes
|
|
9847
9847
|
'''
|
|
@@ -1758,7 +1758,7 @@ class CfnIdNamespace(
|
|
|
1758
1758
|
These properties define how the ID namespace can be used in an ID mapping workflow.
|
|
1759
1759
|
|
|
1760
1760
|
:param attribute_matching_model: The comparison type. You can either choose ``ONE_TO_ONE`` or ``MANY_TO_MANY`` as the ``attributeMatchingModel`` . If you choose ``MANY_TO_MANY`` , the system can match attributes across the sub-types of an attribute type. For example, if the value of the ``Email`` field of Profile A matches the value of ``BusinessEmail`` field of Profile B, the two profiles are matched on the ``Email`` attribute type. If you choose ``ONE_TO_ONE`` , the system can only match attributes if the sub-types are an exact match. For example, for the ``Email`` attribute type, the system will only consider it a match if the value of the ``Email`` field of Profile A matches the value of the ``Email`` field of Profile B.
|
|
1761
|
-
:param record_matching_models: The
|
|
1761
|
+
:param record_matching_models: The type of matching record that is allowed to be used in an ID mapping workflow. If the value is set to ``ONE_SOURCE_TO_ONE_TARGET`` , only one record in the source is matched to one record in the target. If the value is set to ``MANY_SOURCE_TO_ONE_TARGET`` , all matching records in the source are matched to one record in the target.
|
|
1762
1762
|
:param rule_definition_types: The sets of rules you can use in an ID mapping workflow. The limitations specified for the source and target must be compatible.
|
|
1763
1763
|
:param rules: The rules for the ID namespace.
|
|
1764
1764
|
|
|
@@ -1812,11 +1812,11 @@ class CfnIdNamespace(
|
|
|
1812
1812
|
|
|
1813
1813
|
@builtins.property
|
|
1814
1814
|
def record_matching_models(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1815
|
-
'''The
|
|
1815
|
+
'''The type of matching record that is allowed to be used in an ID mapping workflow.
|
|
1816
1816
|
|
|
1817
|
-
If
|
|
1817
|
+
If the value is set to ``ONE_SOURCE_TO_ONE_TARGET`` , only one record in the source is matched to one record in the target.
|
|
1818
1818
|
|
|
1819
|
-
If
|
|
1819
|
+
If the value is set to ``MANY_SOURCE_TO_ONE_TARGET`` , all matching records in the source are matched to one record in the target.
|
|
1820
1820
|
|
|
1821
1821
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html#cfn-entityresolution-idnamespace-namespacerulebasedproperties-recordmatchingmodels
|
|
1822
1822
|
'''
|
|
@@ -2196,6 +2196,9 @@ class CfnMatchingWorkflow(
|
|
|
2196
2196
|
|
|
2197
2197
|
# the properties below are optional
|
|
2198
2198
|
description="description",
|
|
2199
|
+
incremental_run_config=entityresolution.CfnMatchingWorkflow.IncrementalRunConfigProperty(
|
|
2200
|
+
incremental_run_type="incrementalRunType"
|
|
2201
|
+
),
|
|
2199
2202
|
tags=[CfnTag(
|
|
2200
2203
|
key="key",
|
|
2201
2204
|
value="value"
|
|
@@ -2214,6 +2217,7 @@ class CfnMatchingWorkflow(
|
|
|
2214
2217
|
role_arn: builtins.str,
|
|
2215
2218
|
workflow_name: builtins.str,
|
|
2216
2219
|
description: typing.Optional[builtins.str] = None,
|
|
2220
|
+
incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMatchingWorkflow.IncrementalRunConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2217
2221
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2218
2222
|
) -> None:
|
|
2219
2223
|
'''
|
|
@@ -2225,6 +2229,7 @@ class CfnMatchingWorkflow(
|
|
|
2225
2229
|
: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.
|
|
2226
2230
|
:param workflow_name: The name of the workflow. There can't be multiple ``MatchingWorkflows`` with the same name.
|
|
2227
2231
|
:param description: A description of the workflow.
|
|
2232
|
+
:param incremental_run_config: An object which defines an incremental run type and has only ``incrementalRunType`` as a field.
|
|
2228
2233
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
2229
2234
|
'''
|
|
2230
2235
|
if __debug__:
|
|
@@ -2238,6 +2243,7 @@ class CfnMatchingWorkflow(
|
|
|
2238
2243
|
role_arn=role_arn,
|
|
2239
2244
|
workflow_name=workflow_name,
|
|
2240
2245
|
description=description,
|
|
2246
|
+
incremental_run_config=incremental_run_config,
|
|
2241
2247
|
tags=tags,
|
|
2242
2248
|
)
|
|
2243
2249
|
|
|
@@ -2404,6 +2410,24 @@ class CfnMatchingWorkflow(
|
|
|
2404
2410
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2405
2411
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
2406
2412
|
|
|
2413
|
+
@builtins.property
|
|
2414
|
+
@jsii.member(jsii_name="incrementalRunConfig")
|
|
2415
|
+
def incremental_run_config(
|
|
2416
|
+
self,
|
|
2417
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMatchingWorkflow.IncrementalRunConfigProperty"]]:
|
|
2418
|
+
'''An object which defines an incremental run type and has only ``incrementalRunType`` as a field.'''
|
|
2419
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMatchingWorkflow.IncrementalRunConfigProperty"]], jsii.get(self, "incrementalRunConfig"))
|
|
2420
|
+
|
|
2421
|
+
@incremental_run_config.setter
|
|
2422
|
+
def incremental_run_config(
|
|
2423
|
+
self,
|
|
2424
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMatchingWorkflow.IncrementalRunConfigProperty"]],
|
|
2425
|
+
) -> None:
|
|
2426
|
+
if __debug__:
|
|
2427
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fdee84f9bb03bc6201cd3324ee7101913cc3ab4894303fd18c5ddddd2246eac3)
|
|
2428
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2429
|
+
jsii.set(self, "incrementalRunConfig", value) # pyright: ignore[reportArgumentType]
|
|
2430
|
+
|
|
2407
2431
|
@builtins.property
|
|
2408
2432
|
@jsii.member(jsii_name="tags")
|
|
2409
2433
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -2417,6 +2441,60 @@ class CfnMatchingWorkflow(
|
|
|
2417
2441
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2418
2442
|
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
2419
2443
|
|
|
2444
|
+
@jsii.data_type(
|
|
2445
|
+
jsii_type="aws-cdk-lib.aws_entityresolution.CfnMatchingWorkflow.IncrementalRunConfigProperty",
|
|
2446
|
+
jsii_struct_bases=[],
|
|
2447
|
+
name_mapping={"incremental_run_type": "incrementalRunType"},
|
|
2448
|
+
)
|
|
2449
|
+
class IncrementalRunConfigProperty:
|
|
2450
|
+
def __init__(self, *, incremental_run_type: builtins.str) -> None:
|
|
2451
|
+
'''An object which defines an incremental run type and has only ``incrementalRunType`` as a field.
|
|
2452
|
+
|
|
2453
|
+
:param incremental_run_type: The type of incremental run. It takes only one value: ``IMMEDIATE`` .
|
|
2454
|
+
|
|
2455
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-incrementalrunconfig.html
|
|
2456
|
+
:exampleMetadata: fixture=_generated
|
|
2457
|
+
|
|
2458
|
+
Example::
|
|
2459
|
+
|
|
2460
|
+
# The code below shows an example of how to instantiate this type.
|
|
2461
|
+
# The values are placeholders you should change.
|
|
2462
|
+
from aws_cdk import aws_entityresolution as entityresolution
|
|
2463
|
+
|
|
2464
|
+
incremental_run_config_property = entityresolution.CfnMatchingWorkflow.IncrementalRunConfigProperty(
|
|
2465
|
+
incremental_run_type="incrementalRunType"
|
|
2466
|
+
)
|
|
2467
|
+
'''
|
|
2468
|
+
if __debug__:
|
|
2469
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e88ed5ec9e5f2edc300dbdd925bb99b748b330b8e099b18f65b28da2cb124640)
|
|
2470
|
+
check_type(argname="argument incremental_run_type", value=incremental_run_type, expected_type=type_hints["incremental_run_type"])
|
|
2471
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2472
|
+
"incremental_run_type": incremental_run_type,
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
@builtins.property
|
|
2476
|
+
def incremental_run_type(self) -> builtins.str:
|
|
2477
|
+
'''The type of incremental run.
|
|
2478
|
+
|
|
2479
|
+
It takes only one value: ``IMMEDIATE`` .
|
|
2480
|
+
|
|
2481
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-incrementalrunconfig.html#cfn-entityresolution-matchingworkflow-incrementalrunconfig-incrementalruntype
|
|
2482
|
+
'''
|
|
2483
|
+
result = self._values.get("incremental_run_type")
|
|
2484
|
+
assert result is not None, "Required property 'incremental_run_type' is missing"
|
|
2485
|
+
return typing.cast(builtins.str, result)
|
|
2486
|
+
|
|
2487
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2488
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2489
|
+
|
|
2490
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2491
|
+
return not (rhs == self)
|
|
2492
|
+
|
|
2493
|
+
def __repr__(self) -> str:
|
|
2494
|
+
return "IncrementalRunConfigProperty(%s)" % ", ".join(
|
|
2495
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2496
|
+
)
|
|
2497
|
+
|
|
2420
2498
|
@jsii.data_type(
|
|
2421
2499
|
jsii_type="aws-cdk-lib.aws_entityresolution.CfnMatchingWorkflow.InputSourceProperty",
|
|
2422
2500
|
jsii_struct_bases=[],
|
|
@@ -3180,6 +3258,7 @@ class CfnMatchingWorkflow(
|
|
|
3180
3258
|
"role_arn": "roleArn",
|
|
3181
3259
|
"workflow_name": "workflowName",
|
|
3182
3260
|
"description": "description",
|
|
3261
|
+
"incremental_run_config": "incrementalRunConfig",
|
|
3183
3262
|
"tags": "tags",
|
|
3184
3263
|
},
|
|
3185
3264
|
)
|
|
@@ -3193,6 +3272,7 @@ class CfnMatchingWorkflowProps:
|
|
|
3193
3272
|
role_arn: builtins.str,
|
|
3194
3273
|
workflow_name: builtins.str,
|
|
3195
3274
|
description: typing.Optional[builtins.str] = None,
|
|
3275
|
+
incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMatchingWorkflow.IncrementalRunConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3196
3276
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3197
3277
|
) -> None:
|
|
3198
3278
|
'''Properties for defining a ``CfnMatchingWorkflow``.
|
|
@@ -3203,6 +3283,7 @@ class CfnMatchingWorkflowProps:
|
|
|
3203
3283
|
: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.
|
|
3204
3284
|
:param workflow_name: The name of the workflow. There can't be multiple ``MatchingWorkflows`` with the same name.
|
|
3205
3285
|
:param description: A description of the workflow.
|
|
3286
|
+
:param incremental_run_config: An object which defines an incremental run type and has only ``incrementalRunType`` as a field.
|
|
3206
3287
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
3207
3288
|
|
|
3208
3289
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html
|
|
@@ -3264,6 +3345,9 @@ class CfnMatchingWorkflowProps:
|
|
|
3264
3345
|
|
|
3265
3346
|
# the properties below are optional
|
|
3266
3347
|
description="description",
|
|
3348
|
+
incremental_run_config=entityresolution.CfnMatchingWorkflow.IncrementalRunConfigProperty(
|
|
3349
|
+
incremental_run_type="incrementalRunType"
|
|
3350
|
+
),
|
|
3267
3351
|
tags=[CfnTag(
|
|
3268
3352
|
key="key",
|
|
3269
3353
|
value="value"
|
|
@@ -3278,6 +3362,7 @@ class CfnMatchingWorkflowProps:
|
|
|
3278
3362
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
3279
3363
|
check_type(argname="argument workflow_name", value=workflow_name, expected_type=type_hints["workflow_name"])
|
|
3280
3364
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3365
|
+
check_type(argname="argument incremental_run_config", value=incremental_run_config, expected_type=type_hints["incremental_run_config"])
|
|
3281
3366
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
3282
3367
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3283
3368
|
"input_source_config": input_source_config,
|
|
@@ -3288,6 +3373,8 @@ class CfnMatchingWorkflowProps:
|
|
|
3288
3373
|
}
|
|
3289
3374
|
if description is not None:
|
|
3290
3375
|
self._values["description"] = description
|
|
3376
|
+
if incremental_run_config is not None:
|
|
3377
|
+
self._values["incremental_run_config"] = incremental_run_config
|
|
3291
3378
|
if tags is not None:
|
|
3292
3379
|
self._values["tags"] = tags
|
|
3293
3380
|
|
|
@@ -3360,6 +3447,17 @@ class CfnMatchingWorkflowProps:
|
|
|
3360
3447
|
result = self._values.get("description")
|
|
3361
3448
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3362
3449
|
|
|
3450
|
+
@builtins.property
|
|
3451
|
+
def incremental_run_config(
|
|
3452
|
+
self,
|
|
3453
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMatchingWorkflow.IncrementalRunConfigProperty]]:
|
|
3454
|
+
'''An object which defines an incremental run type and has only ``incrementalRunType`` as a field.
|
|
3455
|
+
|
|
3456
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-incrementalrunconfig
|
|
3457
|
+
'''
|
|
3458
|
+
result = self._values.get("incremental_run_config")
|
|
3459
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMatchingWorkflow.IncrementalRunConfigProperty]], result)
|
|
3460
|
+
|
|
3363
3461
|
@builtins.property
|
|
3364
3462
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
3365
3463
|
'''The tags used to organize, track, or control access for this resource.
|
|
@@ -4488,6 +4586,7 @@ def _typecheckingstub__8c9e9b620b89ac2aae774eb42384e0472b5a13eeb28983708b164b240
|
|
|
4488
4586
|
role_arn: builtins.str,
|
|
4489
4587
|
workflow_name: builtins.str,
|
|
4490
4588
|
description: typing.Optional[builtins.str] = None,
|
|
4589
|
+
incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMatchingWorkflow.IncrementalRunConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4491
4590
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4492
4591
|
) -> None:
|
|
4493
4592
|
"""Type checking stubs"""
|
|
@@ -4541,12 +4640,25 @@ def _typecheckingstub__146028c4441df7c65ea8aba2981fe23a6e2fda2af137f4c78d1c5c84d
|
|
|
4541
4640
|
"""Type checking stubs"""
|
|
4542
4641
|
pass
|
|
4543
4642
|
|
|
4643
|
+
def _typecheckingstub__fdee84f9bb03bc6201cd3324ee7101913cc3ab4894303fd18c5ddddd2246eac3(
|
|
4644
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMatchingWorkflow.IncrementalRunConfigProperty]],
|
|
4645
|
+
) -> None:
|
|
4646
|
+
"""Type checking stubs"""
|
|
4647
|
+
pass
|
|
4648
|
+
|
|
4544
4649
|
def _typecheckingstub__a7a7896d7bea53a4e2ffc9445d9a42b8864f5ac9a6cf43c3b27fe3c77bd39a83(
|
|
4545
4650
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
4546
4651
|
) -> None:
|
|
4547
4652
|
"""Type checking stubs"""
|
|
4548
4653
|
pass
|
|
4549
4654
|
|
|
4655
|
+
def _typecheckingstub__e88ed5ec9e5f2edc300dbdd925bb99b748b330b8e099b18f65b28da2cb124640(
|
|
4656
|
+
*,
|
|
4657
|
+
incremental_run_type: builtins.str,
|
|
4658
|
+
) -> None:
|
|
4659
|
+
"""Type checking stubs"""
|
|
4660
|
+
pass
|
|
4661
|
+
|
|
4550
4662
|
def _typecheckingstub__6a18bfef9ee8ade2fff3913e22cf37d98f5880893c2204caa684a7f3831327af(
|
|
4551
4663
|
*,
|
|
4552
4664
|
input_source_arn: builtins.str,
|
|
@@ -4624,6 +4736,7 @@ def _typecheckingstub__2be3b46399b509a45bb640cf4a70ab0714322917a6d3dc4c241cb16ab
|
|
|
4624
4736
|
role_arn: builtins.str,
|
|
4625
4737
|
workflow_name: builtins.str,
|
|
4626
4738
|
description: typing.Optional[builtins.str] = None,
|
|
4739
|
+
incremental_run_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMatchingWorkflow.IncrementalRunConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4627
4740
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4628
4741
|
) -> None:
|
|
4629
4742
|
"""Type checking stubs"""
|
aws_cdk/aws_glue/__init__.py
CHANGED
|
@@ -4652,14 +4652,6 @@ class CfnDatabase(
|
|
|
4652
4652
|
'''The CloudFormation resource type name for this resource class.'''
|
|
4653
4653
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
4654
4654
|
|
|
4655
|
-
@builtins.property
|
|
4656
|
-
@jsii.member(jsii_name="attrId")
|
|
4657
|
-
def attr_id(self) -> builtins.str:
|
|
4658
|
-
'''
|
|
4659
|
-
:cloudformationAttribute: Id
|
|
4660
|
-
'''
|
|
4661
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
4662
|
-
|
|
4663
4655
|
@builtins.property
|
|
4664
4656
|
@jsii.member(jsii_name="cfnProperties")
|
|
4665
4657
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -2027,12 +2027,13 @@ class CfnDataflowEndpointGroup(
|
|
|
2027
2027
|
ingress_address: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataflowEndpointGroup.RangedConnectionDetailsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2028
2028
|
name: typing.Optional[builtins.str] = None,
|
|
2029
2029
|
) -> None:
|
|
2030
|
-
'''
|
|
2031
|
-
|
|
2032
|
-
:param
|
|
2033
|
-
:param
|
|
2034
|
-
:param
|
|
2035
|
-
:param
|
|
2030
|
+
'''Information about AwsGroundStationAgentEndpoint.
|
|
2031
|
+
|
|
2032
|
+
:param agent_status: The status of AgentEndpoint.
|
|
2033
|
+
:param audit_results: The results of the audit.
|
|
2034
|
+
:param egress_address: The egress address of AgentEndpoint.
|
|
2035
|
+
:param ingress_address: The ingress address of AgentEndpoint.
|
|
2036
|
+
:param name: Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
|
|
2036
2037
|
|
|
2037
2038
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint.html
|
|
2038
2039
|
:exampleMetadata: fixture=_generated
|
|
@@ -2087,7 +2088,8 @@ class CfnDataflowEndpointGroup(
|
|
|
2087
2088
|
|
|
2088
2089
|
@builtins.property
|
|
2089
2090
|
def agent_status(self) -> typing.Optional[builtins.str]:
|
|
2090
|
-
'''
|
|
2091
|
+
'''The status of AgentEndpoint.
|
|
2092
|
+
|
|
2091
2093
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint-agentstatus
|
|
2092
2094
|
'''
|
|
2093
2095
|
result = self._values.get("agent_status")
|
|
@@ -2095,7 +2097,8 @@ class CfnDataflowEndpointGroup(
|
|
|
2095
2097
|
|
|
2096
2098
|
@builtins.property
|
|
2097
2099
|
def audit_results(self) -> typing.Optional[builtins.str]:
|
|
2098
|
-
'''
|
|
2100
|
+
'''The results of the audit.
|
|
2101
|
+
|
|
2099
2102
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint-auditresults
|
|
2100
2103
|
'''
|
|
2101
2104
|
result = self._values.get("audit_results")
|
|
@@ -2105,7 +2108,8 @@ class CfnDataflowEndpointGroup(
|
|
|
2105
2108
|
def egress_address(
|
|
2106
2109
|
self,
|
|
2107
2110
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataflowEndpointGroup.ConnectionDetailsProperty"]]:
|
|
2108
|
-
'''
|
|
2111
|
+
'''The egress address of AgentEndpoint.
|
|
2112
|
+
|
|
2109
2113
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint-egressaddress
|
|
2110
2114
|
'''
|
|
2111
2115
|
result = self._values.get("egress_address")
|
|
@@ -2115,7 +2119,8 @@ class CfnDataflowEndpointGroup(
|
|
|
2115
2119
|
def ingress_address(
|
|
2116
2120
|
self,
|
|
2117
2121
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataflowEndpointGroup.RangedConnectionDetailsProperty"]]:
|
|
2118
|
-
'''
|
|
2122
|
+
'''The ingress address of AgentEndpoint.
|
|
2123
|
+
|
|
2119
2124
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint-ingressaddress
|
|
2120
2125
|
'''
|
|
2121
2126
|
result = self._values.get("ingress_address")
|
|
@@ -2123,7 +2128,10 @@ class CfnDataflowEndpointGroup(
|
|
|
2123
2128
|
|
|
2124
2129
|
@builtins.property
|
|
2125
2130
|
def name(self) -> typing.Optional[builtins.str]:
|
|
2126
|
-
'''
|
|
2131
|
+
'''Name string associated with AgentEndpoint.
|
|
2132
|
+
|
|
2133
|
+
Used as a human-readable identifier for AgentEndpoint.
|
|
2134
|
+
|
|
2127
2135
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroup-awsgroundstationagentendpoint-name
|
|
2128
2136
|
'''
|
|
2129
2137
|
result = self._values.get("name")
|
|
@@ -3350,9 +3358,10 @@ class CfnMissionProfile(
|
|
|
3350
3358
|
kms_alias_arn: typing.Optional[builtins.str] = None,
|
|
3351
3359
|
kms_key_arn: typing.Optional[builtins.str] = None,
|
|
3352
3360
|
) -> None:
|
|
3353
|
-
'''
|
|
3354
|
-
|
|
3355
|
-
:param
|
|
3361
|
+
'''KMS key info.
|
|
3362
|
+
|
|
3363
|
+
:param kms_alias_arn: KMS Alias Arn.
|
|
3364
|
+
:param kms_key_arn: KMS Key Arn.
|
|
3356
3365
|
|
|
3357
3366
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-missionprofile-streamskmskey.html
|
|
3358
3367
|
:exampleMetadata: fixture=_generated
|
|
@@ -3380,7 +3389,8 @@ class CfnMissionProfile(
|
|
|
3380
3389
|
|
|
3381
3390
|
@builtins.property
|
|
3382
3391
|
def kms_alias_arn(self) -> typing.Optional[builtins.str]:
|
|
3383
|
-
'''
|
|
3392
|
+
'''KMS Alias Arn.
|
|
3393
|
+
|
|
3384
3394
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-missionprofile-streamskmskey.html#cfn-groundstation-missionprofile-streamskmskey-kmsaliasarn
|
|
3385
3395
|
'''
|
|
3386
3396
|
result = self._values.get("kms_alias_arn")
|
|
@@ -3388,7 +3398,8 @@ class CfnMissionProfile(
|
|
|
3388
3398
|
|
|
3389
3399
|
@builtins.property
|
|
3390
3400
|
def kms_key_arn(self) -> typing.Optional[builtins.str]:
|
|
3391
|
-
'''
|
|
3401
|
+
'''KMS Key Arn.
|
|
3402
|
+
|
|
3392
3403
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-missionprofile-streamskmskey.html#cfn-groundstation-missionprofile-streamskmskey-kmskeyarn
|
|
3393
3404
|
'''
|
|
3394
3405
|
result = self._values.get("kms_key_arn")
|
|
@@ -1139,7 +1139,7 @@ class CfnFilter(
|
|
|
1139
1139
|
'''
|
|
1140
1140
|
:param scope: Scope in which this resource is defined.
|
|
1141
1141
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1142
|
-
:param detector_id: The ID
|
|
1142
|
+
:param detector_id: The detector ID associated with the GuardDuty account for which you want to create a filter. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
1143
1143
|
:param finding_criteria: Represents the criteria to be used in the filter for querying findings.
|
|
1144
1144
|
:param name: The name of the filter. Valid characters include period (.), underscore (_), dash (-), and alphanumeric characters. A whitespace is considered to be an invalid character.
|
|
1145
1145
|
:param action: Specifies the action that is to be applied to the findings that match the filter.
|
|
@@ -1207,7 +1207,7 @@ class CfnFilter(
|
|
|
1207
1207
|
@builtins.property
|
|
1208
1208
|
@jsii.member(jsii_name="detectorId")
|
|
1209
1209
|
def detector_id(self) -> builtins.str:
|
|
1210
|
-
'''The ID
|
|
1210
|
+
'''The detector ID associated with the GuardDuty account for which you want to create a filter.'''
|
|
1211
1211
|
return typing.cast(builtins.str, jsii.get(self, "detectorId"))
|
|
1212
1212
|
|
|
1213
1213
|
@detector_id.setter
|
|
@@ -1758,7 +1758,7 @@ class CfnFilterProps:
|
|
|
1758
1758
|
) -> None:
|
|
1759
1759
|
'''Properties for defining a ``CfnFilter``.
|
|
1760
1760
|
|
|
1761
|
-
:param detector_id: The ID
|
|
1761
|
+
:param detector_id: The detector ID associated with the GuardDuty account for which you want to create a filter. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
1762
1762
|
:param finding_criteria: Represents the criteria to be used in the filter for querying findings.
|
|
1763
1763
|
:param name: The name of the filter. Valid characters include period (.), underscore (_), dash (-), and alphanumeric characters. A whitespace is considered to be an invalid character.
|
|
1764
1764
|
:param action: Specifies the action that is to be applied to the findings that match the filter.
|
|
@@ -1833,7 +1833,10 @@ class CfnFilterProps:
|
|
|
1833
1833
|
|
|
1834
1834
|
@builtins.property
|
|
1835
1835
|
def detector_id(self) -> builtins.str:
|
|
1836
|
-
'''The ID
|
|
1836
|
+
'''The detector ID associated with the GuardDuty account for which you want to create a filter.
|
|
1837
|
+
|
|
1838
|
+
To find the ``detectorId`` in the current Region, see the
|
|
1839
|
+
Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
1837
1840
|
|
|
1838
1841
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-filter.html#cfn-guardduty-filter-detectorid
|
|
1839
1842
|
'''
|
|
@@ -1976,7 +1979,7 @@ class CfnIPSet(
|
|
|
1976
1979
|
:param format: The format of the file that contains the IPSet.
|
|
1977
1980
|
:param location: The URI of the file that contains the IPSet.
|
|
1978
1981
|
:param activate: Indicates whether or not GuardDuty uses the ``IPSet`` .
|
|
1979
|
-
:param detector_id: The unique ID of the detector of the GuardDuty account
|
|
1982
|
+
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create an IPSet. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
1980
1983
|
:param name: The user-friendly name to identify the IPSet. Allowed characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
1981
1984
|
:param tags: The tags to be added to a new IP set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
1982
1985
|
'''
|
|
@@ -2091,7 +2094,7 @@ class CfnIPSet(
|
|
|
2091
2094
|
@builtins.property
|
|
2092
2095
|
@jsii.member(jsii_name="detectorId")
|
|
2093
2096
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
2094
|
-
'''The unique ID of the detector of the GuardDuty account
|
|
2097
|
+
'''The unique ID of the detector of the GuardDuty account for which you want to create an IPSet.'''
|
|
2095
2098
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "detectorId"))
|
|
2096
2099
|
|
|
2097
2100
|
@detector_id.setter
|
|
@@ -2156,7 +2159,7 @@ class CfnIPSetProps:
|
|
|
2156
2159
|
:param format: The format of the file that contains the IPSet.
|
|
2157
2160
|
:param location: The URI of the file that contains the IPSet.
|
|
2158
2161
|
:param activate: Indicates whether or not GuardDuty uses the ``IPSet`` .
|
|
2159
|
-
:param detector_id: The unique ID of the detector of the GuardDuty account
|
|
2162
|
+
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create an IPSet. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
2160
2163
|
:param name: The user-friendly name to identify the IPSet. Allowed characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
2161
2164
|
:param tags: The tags to be added to a new IP set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
2162
2165
|
|
|
@@ -2237,7 +2240,10 @@ class CfnIPSetProps:
|
|
|
2237
2240
|
|
|
2238
2241
|
@builtins.property
|
|
2239
2242
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
2240
|
-
'''The unique ID of the detector of the GuardDuty account
|
|
2243
|
+
'''The unique ID of the detector of the GuardDuty account for which you want to create an IPSet.
|
|
2244
|
+
|
|
2245
|
+
To find the ``detectorId`` in the current Region, see the
|
|
2246
|
+
Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
2241
2247
|
|
|
2242
2248
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid
|
|
2243
2249
|
'''
|
|
@@ -3071,7 +3077,7 @@ class CfnMaster(
|
|
|
3071
3077
|
'''
|
|
3072
3078
|
:param scope: Scope in which this resource is defined.
|
|
3073
3079
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3074
|
-
:param detector_id: The unique ID of the detector of the GuardDuty member account.
|
|
3080
|
+
:param detector_id: The unique ID of the detector of the GuardDuty member account. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
3075
3081
|
:param master_id: The AWS account ID of the account designated as the GuardDuty administrator account.
|
|
3076
3082
|
:param invitation_id: The ID of the invitation that is sent to the account designated as a member account. You can find the invitation ID by running the `ListInvitations <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListInvitations.html>`_ in the *GuardDuty API Reference* .
|
|
3077
3083
|
'''
|
|
@@ -3179,7 +3185,7 @@ class CfnMasterProps:
|
|
|
3179
3185
|
) -> None:
|
|
3180
3186
|
'''Properties for defining a ``CfnMaster``.
|
|
3181
3187
|
|
|
3182
|
-
:param detector_id: The unique ID of the detector of the GuardDuty member account.
|
|
3188
|
+
:param detector_id: The unique ID of the detector of the GuardDuty member account. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
3183
3189
|
:param master_id: The AWS account ID of the account designated as the GuardDuty administrator account.
|
|
3184
3190
|
:param invitation_id: The ID of the invitation that is sent to the account designated as a member account. You can find the invitation ID by running the `ListInvitations <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListInvitations.html>`_ in the *GuardDuty API Reference* .
|
|
3185
3191
|
|
|
@@ -3216,6 +3222,9 @@ class CfnMasterProps:
|
|
|
3216
3222
|
def detector_id(self) -> builtins.str:
|
|
3217
3223
|
'''The unique ID of the detector of the GuardDuty member account.
|
|
3218
3224
|
|
|
3225
|
+
To find the ``detectorId`` in the current Region, see the
|
|
3226
|
+
Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
3227
|
+
|
|
3219
3228
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid
|
|
3220
3229
|
'''
|
|
3221
3230
|
result = self._values.get("detector_id")
|
|
@@ -3641,7 +3650,7 @@ class CfnThreatIntelSet(
|
|
|
3641
3650
|
:param format: The format of the file that contains the ThreatIntelSet.
|
|
3642
3651
|
:param location: The URI of the file that contains the ThreatIntelSet.
|
|
3643
3652
|
:param activate: A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
|
|
3644
|
-
:param detector_id: The unique ID of the detector of the GuardDuty account
|
|
3653
|
+
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create a ``ThreatIntelSet`` . To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
3645
3654
|
:param name: A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.
|
|
3646
3655
|
:param tags: The tags to be added to a new threat list resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
3647
3656
|
'''
|
|
@@ -3757,7 +3766,7 @@ class CfnThreatIntelSet(
|
|
|
3757
3766
|
@builtins.property
|
|
3758
3767
|
@jsii.member(jsii_name="detectorId")
|
|
3759
3768
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
3760
|
-
'''The unique ID of the detector of the GuardDuty account
|
|
3769
|
+
'''The unique ID of the detector of the GuardDuty account for which you want to create a ``ThreatIntelSet`` .'''
|
|
3761
3770
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "detectorId"))
|
|
3762
3771
|
|
|
3763
3772
|
@detector_id.setter
|
|
@@ -3822,7 +3831,7 @@ class CfnThreatIntelSetProps:
|
|
|
3822
3831
|
:param format: The format of the file that contains the ThreatIntelSet.
|
|
3823
3832
|
:param location: The URI of the file that contains the ThreatIntelSet.
|
|
3824
3833
|
:param activate: A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
|
|
3825
|
-
:param detector_id: The unique ID of the detector of the GuardDuty account
|
|
3834
|
+
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create a ``ThreatIntelSet`` . To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
3826
3835
|
:param name: A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.
|
|
3827
3836
|
:param tags: The tags to be added to a new threat list resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
3828
3837
|
|
|
@@ -3903,7 +3912,10 @@ class CfnThreatIntelSetProps:
|
|
|
3903
3912
|
|
|
3904
3913
|
@builtins.property
|
|
3905
3914
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
3906
|
-
'''The unique ID of the detector of the GuardDuty account
|
|
3915
|
+
'''The unique ID of the detector of the GuardDuty account for which you want to create a ``ThreatIntelSet`` .
|
|
3916
|
+
|
|
3917
|
+
To find the ``detectorId`` in the current Region, see the
|
|
3918
|
+
Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
3907
3919
|
|
|
3908
3920
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid
|
|
3909
3921
|
'''
|