aws-cdk-lib 2.133.0__py3-none-any.whl → 2.134.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 +9 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.133.0.jsii.tgz → aws-cdk-lib@2.134.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +105 -3
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +155 -3
- aws_cdk/aws_appconfig/__init__.py +186 -8
- aws_cdk/aws_appintegrations/__init__.py +551 -0
- aws_cdk/aws_appsync/__init__.py +71 -0
- aws_cdk/aws_autoscaling/__init__.py +6 -4
- aws_cdk/aws_backup/__init__.py +23 -12
- aws_cdk/aws_batch/__init__.py +423 -73
- aws_cdk/aws_bedrock/__init__.py +197 -2
- aws_cdk/aws_cloudformation/__init__.py +1 -1
- aws_cdk/aws_cloudfront/__init__.py +2 -2
- aws_cdk/aws_cloudtrail/__init__.py +44 -14
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_codeartifact/__init__.py +812 -2
- aws_cdk/aws_codebuild/__init__.py +21 -5
- aws_cdk/aws_codepipeline/__init__.py +24 -8
- aws_cdk/aws_cognito/__init__.py +41 -40
- aws_cdk/aws_connect/__init__.py +256 -0
- aws_cdk/aws_datasync/__init__.py +393 -13
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_docdbelastic/__init__.py +117 -0
- aws_cdk/aws_dynamodb/__init__.py +416 -5
- aws_cdk/aws_ec2/__init__.py +493 -93
- aws_cdk/aws_ecs/__init__.py +6 -4
- aws_cdk/aws_eks/__init__.py +27 -25
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +359 -60
- aws_cdk/aws_entityresolution/__init__.py +91 -64
- aws_cdk/aws_glue/__init__.py +137 -3
- aws_cdk/aws_iam/__init__.py +9 -10
- aws_cdk/aws_internetmonitor/__init__.py +85 -0
- aws_cdk/aws_iotsitewise/__init__.py +110 -50
- aws_cdk/aws_kafkaconnect/__init__.py +1237 -162
- aws_cdk/aws_kendra/__init__.py +34 -24
- aws_cdk/aws_kinesisanalytics/__init__.py +37 -37
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +37 -37
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -2
- aws_cdk/aws_msk/__init__.py +88 -0
- aws_cdk/aws_opensearchservice/__init__.py +19 -17
- aws_cdk/aws_pinpoint/__init__.py +42 -0
- aws_cdk/aws_rds/__init__.py +48 -14
- aws_cdk/aws_sagemaker/__init__.py +2 -2
- aws_cdk/aws_ssm/__init__.py +3 -3
- aws_cdk/aws_stepfunctions_tasks/__init__.py +23 -0
- aws_cdk/aws_synthetics/__init__.py +74 -14
- aws_cdk/aws_transfer/__init__.py +4 -3
- aws_cdk/aws_wafv2/__init__.py +96 -46
- aws_cdk/cx_api/__init__.py +17 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/RECORD +56 -56
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/top_level.txt +0 -0
|
@@ -98,19 +98,22 @@ class CfnIdMappingWorkflow(
|
|
|
98
98
|
),
|
|
99
99
|
input_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty(
|
|
100
100
|
input_source_arn="inputSourceArn",
|
|
101
|
-
schema_arn="schemaArn"
|
|
102
|
-
)],
|
|
103
|
-
output_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty(
|
|
104
|
-
output_s3_path="outputS3Path",
|
|
105
101
|
|
|
106
102
|
# the properties below are optional
|
|
107
|
-
|
|
103
|
+
schema_arn="schemaArn",
|
|
104
|
+
type="type"
|
|
108
105
|
)],
|
|
109
106
|
role_arn="roleArn",
|
|
110
107
|
workflow_name="workflowName",
|
|
111
108
|
|
|
112
109
|
# the properties below are optional
|
|
113
110
|
description="description",
|
|
111
|
+
output_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty(
|
|
112
|
+
output_s3_path="outputS3Path",
|
|
113
|
+
|
|
114
|
+
# the properties below are optional
|
|
115
|
+
kms_arn="kmsArn"
|
|
116
|
+
)],
|
|
114
117
|
tags=[CfnTag(
|
|
115
118
|
key="key",
|
|
116
119
|
value="value"
|
|
@@ -125,10 +128,10 @@ class CfnIdMappingWorkflow(
|
|
|
125
128
|
*,
|
|
126
129
|
id_mapping_techniques: typing.Union[_IResolvable_da3f097b, typing.Union["CfnIdMappingWorkflow.IdMappingTechniquesProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
127
130
|
input_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
128
|
-
output_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
129
131
|
role_arn: builtins.str,
|
|
130
132
|
workflow_name: builtins.str,
|
|
131
133
|
description: typing.Optional[builtins.str] = None,
|
|
134
|
+
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,
|
|
132
135
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
133
136
|
) -> None:
|
|
134
137
|
'''
|
|
@@ -136,10 +139,10 @@ class CfnIdMappingWorkflow(
|
|
|
136
139
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
137
140
|
:param id_mapping_techniques: An object which defines the ``idMappingType`` and the ``providerProperties`` .
|
|
138
141
|
:param input_source_config: A list of ``InputSource`` objects, which have the fields ``InputSourceARN`` and ``SchemaName`` .
|
|
139
|
-
:param output_source_config: A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .
|
|
140
142
|
: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.
|
|
141
143
|
:param workflow_name: The name of the workflow. There can't be multiple ``IdMappingWorkflows`` with the same name.
|
|
142
144
|
:param description: A description of the workflow.
|
|
145
|
+
:param output_source_config: A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .
|
|
143
146
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
144
147
|
'''
|
|
145
148
|
if __debug__:
|
|
@@ -149,10 +152,10 @@ class CfnIdMappingWorkflow(
|
|
|
149
152
|
props = CfnIdMappingWorkflowProps(
|
|
150
153
|
id_mapping_techniques=id_mapping_techniques,
|
|
151
154
|
input_source_config=input_source_config,
|
|
152
|
-
output_source_config=output_source_config,
|
|
153
155
|
role_arn=role_arn,
|
|
154
156
|
workflow_name=workflow_name,
|
|
155
157
|
description=description,
|
|
158
|
+
output_source_config=output_source_config,
|
|
156
159
|
tags=tags,
|
|
157
160
|
)
|
|
158
161
|
|
|
@@ -262,24 +265,6 @@ class CfnIdMappingWorkflow(
|
|
|
262
265
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
263
266
|
jsii.set(self, "inputSourceConfig", value)
|
|
264
267
|
|
|
265
|
-
@builtins.property
|
|
266
|
-
@jsii.member(jsii_name="outputSourceConfig")
|
|
267
|
-
def output_source_config(
|
|
268
|
-
self,
|
|
269
|
-
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty"]]]:
|
|
270
|
-
'''A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .'''
|
|
271
|
-
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty"]]], jsii.get(self, "outputSourceConfig"))
|
|
272
|
-
|
|
273
|
-
@output_source_config.setter
|
|
274
|
-
def output_source_config(
|
|
275
|
-
self,
|
|
276
|
-
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty"]]],
|
|
277
|
-
) -> None:
|
|
278
|
-
if __debug__:
|
|
279
|
-
type_hints = typing.get_type_hints(_typecheckingstub__c441bfde4467a201e4e9322b69a020514feb4e0efb56d31892f1f02e461d7119)
|
|
280
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
281
|
-
jsii.set(self, "outputSourceConfig", value)
|
|
282
|
-
|
|
283
268
|
@builtins.property
|
|
284
269
|
@jsii.member(jsii_name="roleArn")
|
|
285
270
|
def role_arn(self) -> builtins.str:
|
|
@@ -319,6 +304,24 @@ class CfnIdMappingWorkflow(
|
|
|
319
304
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
320
305
|
jsii.set(self, "description", value)
|
|
321
306
|
|
|
307
|
+
@builtins.property
|
|
308
|
+
@jsii.member(jsii_name="outputSourceConfig")
|
|
309
|
+
def output_source_config(
|
|
310
|
+
self,
|
|
311
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty"]]]]:
|
|
312
|
+
'''A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .'''
|
|
313
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty"]]]], jsii.get(self, "outputSourceConfig"))
|
|
314
|
+
|
|
315
|
+
@output_source_config.setter
|
|
316
|
+
def output_source_config(
|
|
317
|
+
self,
|
|
318
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty"]]]],
|
|
319
|
+
) -> None:
|
|
320
|
+
if __debug__:
|
|
321
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c441bfde4467a201e4e9322b69a020514feb4e0efb56d31892f1f02e461d7119)
|
|
322
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
323
|
+
jsii.set(self, "outputSourceConfig", value)
|
|
324
|
+
|
|
322
325
|
@builtins.property
|
|
323
326
|
@jsii.member(jsii_name="tags")
|
|
324
327
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -420,19 +423,25 @@ class CfnIdMappingWorkflow(
|
|
|
420
423
|
@jsii.data_type(
|
|
421
424
|
jsii_type="aws-cdk-lib.aws_entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty",
|
|
422
425
|
jsii_struct_bases=[],
|
|
423
|
-
name_mapping={
|
|
426
|
+
name_mapping={
|
|
427
|
+
"input_source_arn": "inputSourceArn",
|
|
428
|
+
"schema_arn": "schemaArn",
|
|
429
|
+
"type": "type",
|
|
430
|
+
},
|
|
424
431
|
)
|
|
425
432
|
class IdMappingWorkflowInputSourceProperty:
|
|
426
433
|
def __init__(
|
|
427
434
|
self,
|
|
428
435
|
*,
|
|
429
436
|
input_source_arn: builtins.str,
|
|
430
|
-
schema_arn: builtins.str,
|
|
437
|
+
schema_arn: typing.Optional[builtins.str] = None,
|
|
438
|
+
type: typing.Optional[builtins.str] = None,
|
|
431
439
|
) -> None:
|
|
432
440
|
'''An object containing ``InputSourceARN`` and ``SchemaName`` .
|
|
433
441
|
|
|
434
442
|
:param input_source_arn: An AWS Glue table ARN for the input source table.
|
|
435
443
|
:param schema_arn: The ARN (Amazon Resource Name) that AWS Entity Resolution generated for the ``SchemaMapping`` .
|
|
444
|
+
:param type:
|
|
436
445
|
|
|
437
446
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html
|
|
438
447
|
:exampleMetadata: fixture=_generated
|
|
@@ -445,17 +454,24 @@ class CfnIdMappingWorkflow(
|
|
|
445
454
|
|
|
446
455
|
id_mapping_workflow_input_source_property = entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty(
|
|
447
456
|
input_source_arn="inputSourceArn",
|
|
448
|
-
|
|
457
|
+
|
|
458
|
+
# the properties below are optional
|
|
459
|
+
schema_arn="schemaArn",
|
|
460
|
+
type="type"
|
|
449
461
|
)
|
|
450
462
|
'''
|
|
451
463
|
if __debug__:
|
|
452
464
|
type_hints = typing.get_type_hints(_typecheckingstub__522fc3db779b17ca862e5f7c251173d53b22cf2b4867dc81e3a568dcf3643063)
|
|
453
465
|
check_type(argname="argument input_source_arn", value=input_source_arn, expected_type=type_hints["input_source_arn"])
|
|
454
466
|
check_type(argname="argument schema_arn", value=schema_arn, expected_type=type_hints["schema_arn"])
|
|
467
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
455
468
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
456
469
|
"input_source_arn": input_source_arn,
|
|
457
|
-
"schema_arn": schema_arn,
|
|
458
470
|
}
|
|
471
|
+
if schema_arn is not None:
|
|
472
|
+
self._values["schema_arn"] = schema_arn
|
|
473
|
+
if type is not None:
|
|
474
|
+
self._values["type"] = type
|
|
459
475
|
|
|
460
476
|
@builtins.property
|
|
461
477
|
def input_source_arn(self) -> builtins.str:
|
|
@@ -468,14 +484,21 @@ class CfnIdMappingWorkflow(
|
|
|
468
484
|
return typing.cast(builtins.str, result)
|
|
469
485
|
|
|
470
486
|
@builtins.property
|
|
471
|
-
def schema_arn(self) -> builtins.str:
|
|
487
|
+
def schema_arn(self) -> typing.Optional[builtins.str]:
|
|
472
488
|
'''The ARN (Amazon Resource Name) that AWS Entity Resolution generated for the ``SchemaMapping`` .
|
|
473
489
|
|
|
474
490
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html#cfn-entityresolution-idmappingworkflow-idmappingworkflowinputsource-schemaarn
|
|
475
491
|
'''
|
|
476
492
|
result = self._values.get("schema_arn")
|
|
477
|
-
|
|
478
|
-
|
|
493
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
494
|
+
|
|
495
|
+
@builtins.property
|
|
496
|
+
def type(self) -> typing.Optional[builtins.str]:
|
|
497
|
+
'''
|
|
498
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html#cfn-entityresolution-idmappingworkflow-idmappingworkflowinputsource-type
|
|
499
|
+
'''
|
|
500
|
+
result = self._values.get("type")
|
|
501
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
479
502
|
|
|
480
503
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
481
504
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -728,10 +751,10 @@ class CfnIdMappingWorkflow(
|
|
|
728
751
|
name_mapping={
|
|
729
752
|
"id_mapping_techniques": "idMappingTechniques",
|
|
730
753
|
"input_source_config": "inputSourceConfig",
|
|
731
|
-
"output_source_config": "outputSourceConfig",
|
|
732
754
|
"role_arn": "roleArn",
|
|
733
755
|
"workflow_name": "workflowName",
|
|
734
756
|
"description": "description",
|
|
757
|
+
"output_source_config": "outputSourceConfig",
|
|
735
758
|
"tags": "tags",
|
|
736
759
|
},
|
|
737
760
|
)
|
|
@@ -741,20 +764,20 @@ class CfnIdMappingWorkflowProps:
|
|
|
741
764
|
*,
|
|
742
765
|
id_mapping_techniques: typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingTechniquesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
743
766
|
input_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
744
|
-
output_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
745
767
|
role_arn: builtins.str,
|
|
746
768
|
workflow_name: builtins.str,
|
|
747
769
|
description: typing.Optional[builtins.str] = None,
|
|
770
|
+
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,
|
|
748
771
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
749
772
|
) -> None:
|
|
750
773
|
'''Properties for defining a ``CfnIdMappingWorkflow``.
|
|
751
774
|
|
|
752
775
|
:param id_mapping_techniques: An object which defines the ``idMappingType`` and the ``providerProperties`` .
|
|
753
776
|
:param input_source_config: A list of ``InputSource`` objects, which have the fields ``InputSourceARN`` and ``SchemaName`` .
|
|
754
|
-
:param output_source_config: A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .
|
|
755
777
|
: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.
|
|
756
778
|
:param workflow_name: The name of the workflow. There can't be multiple ``IdMappingWorkflows`` with the same name.
|
|
757
779
|
:param description: A description of the workflow.
|
|
780
|
+
:param output_source_config: A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .
|
|
758
781
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
759
782
|
|
|
760
783
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html
|
|
@@ -783,19 +806,22 @@ class CfnIdMappingWorkflowProps:
|
|
|
783
806
|
),
|
|
784
807
|
input_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty(
|
|
785
808
|
input_source_arn="inputSourceArn",
|
|
786
|
-
schema_arn="schemaArn"
|
|
787
|
-
)],
|
|
788
|
-
output_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty(
|
|
789
|
-
output_s3_path="outputS3Path",
|
|
790
809
|
|
|
791
810
|
# the properties below are optional
|
|
792
|
-
|
|
811
|
+
schema_arn="schemaArn",
|
|
812
|
+
type="type"
|
|
793
813
|
)],
|
|
794
814
|
role_arn="roleArn",
|
|
795
815
|
workflow_name="workflowName",
|
|
796
816
|
|
|
797
817
|
# the properties below are optional
|
|
798
818
|
description="description",
|
|
819
|
+
output_source_config=[entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty(
|
|
820
|
+
output_s3_path="outputS3Path",
|
|
821
|
+
|
|
822
|
+
# the properties below are optional
|
|
823
|
+
kms_arn="kmsArn"
|
|
824
|
+
)],
|
|
799
825
|
tags=[CfnTag(
|
|
800
826
|
key="key",
|
|
801
827
|
value="value"
|
|
@@ -806,20 +832,21 @@ class CfnIdMappingWorkflowProps:
|
|
|
806
832
|
type_hints = typing.get_type_hints(_typecheckingstub__a92ec1b5f460936930fefdd0c239f69c3ec93198e4a71c3867bbe1bf1a48bf11)
|
|
807
833
|
check_type(argname="argument id_mapping_techniques", value=id_mapping_techniques, expected_type=type_hints["id_mapping_techniques"])
|
|
808
834
|
check_type(argname="argument input_source_config", value=input_source_config, expected_type=type_hints["input_source_config"])
|
|
809
|
-
check_type(argname="argument output_source_config", value=output_source_config, expected_type=type_hints["output_source_config"])
|
|
810
835
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
811
836
|
check_type(argname="argument workflow_name", value=workflow_name, expected_type=type_hints["workflow_name"])
|
|
812
837
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
838
|
+
check_type(argname="argument output_source_config", value=output_source_config, expected_type=type_hints["output_source_config"])
|
|
813
839
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
814
840
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
815
841
|
"id_mapping_techniques": id_mapping_techniques,
|
|
816
842
|
"input_source_config": input_source_config,
|
|
817
|
-
"output_source_config": output_source_config,
|
|
818
843
|
"role_arn": role_arn,
|
|
819
844
|
"workflow_name": workflow_name,
|
|
820
845
|
}
|
|
821
846
|
if description is not None:
|
|
822
847
|
self._values["description"] = description
|
|
848
|
+
if output_source_config is not None:
|
|
849
|
+
self._values["output_source_config"] = output_source_config
|
|
823
850
|
if tags is not None:
|
|
824
851
|
self._values["tags"] = tags
|
|
825
852
|
|
|
@@ -847,18 +874,6 @@ class CfnIdMappingWorkflowProps:
|
|
|
847
874
|
assert result is not None, "Required property 'input_source_config' is missing"
|
|
848
875
|
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty]]], result)
|
|
849
876
|
|
|
850
|
-
@builtins.property
|
|
851
|
-
def output_source_config(
|
|
852
|
-
self,
|
|
853
|
-
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty]]]:
|
|
854
|
-
'''A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .
|
|
855
|
-
|
|
856
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-outputsourceconfig
|
|
857
|
-
'''
|
|
858
|
-
result = self._values.get("output_source_config")
|
|
859
|
-
assert result is not None, "Required property 'output_source_config' is missing"
|
|
860
|
-
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty]]], result)
|
|
861
|
-
|
|
862
877
|
@builtins.property
|
|
863
878
|
def role_arn(self) -> builtins.str:
|
|
864
879
|
'''The Amazon Resource Name (ARN) of the IAM role.
|
|
@@ -892,6 +907,17 @@ class CfnIdMappingWorkflowProps:
|
|
|
892
907
|
result = self._values.get("description")
|
|
893
908
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
894
909
|
|
|
910
|
+
@builtins.property
|
|
911
|
+
def output_source_config(
|
|
912
|
+
self,
|
|
913
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty]]]]:
|
|
914
|
+
'''A list of ``IdMappingWorkflowOutputSource`` objects, each of which contains fields ``OutputS3Path`` and ``Output`` .
|
|
915
|
+
|
|
916
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-outputsourceconfig
|
|
917
|
+
'''
|
|
918
|
+
result = self._values.get("output_source_config")
|
|
919
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty]]]], result)
|
|
920
|
+
|
|
895
921
|
@builtins.property
|
|
896
922
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
897
923
|
'''The tags used to organize, track, or control access for this resource.
|
|
@@ -2611,10 +2637,10 @@ def _typecheckingstub__498454075de816db2ba240e783f9530effd93522c63f637ee5bff5bbf
|
|
|
2611
2637
|
*,
|
|
2612
2638
|
id_mapping_techniques: typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingTechniquesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
2613
2639
|
input_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
2614
|
-
output_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
2615
2640
|
role_arn: builtins.str,
|
|
2616
2641
|
workflow_name: builtins.str,
|
|
2617
2642
|
description: typing.Optional[builtins.str] = None,
|
|
2643
|
+
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,
|
|
2618
2644
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2619
2645
|
) -> None:
|
|
2620
2646
|
"""Type checking stubs"""
|
|
@@ -2644,12 +2670,6 @@ def _typecheckingstub__4a9193affb5fa4439a48ce7bed8e4da128d477cf32b5570d11bbf2989
|
|
|
2644
2670
|
"""Type checking stubs"""
|
|
2645
2671
|
pass
|
|
2646
2672
|
|
|
2647
|
-
def _typecheckingstub__c441bfde4467a201e4e9322b69a020514feb4e0efb56d31892f1f02e461d7119(
|
|
2648
|
-
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty]]],
|
|
2649
|
-
) -> None:
|
|
2650
|
-
"""Type checking stubs"""
|
|
2651
|
-
pass
|
|
2652
|
-
|
|
2653
2673
|
def _typecheckingstub__0590ee667206f813442b789a06c4cb886b668b0e9b9dffab96674a6875e8e692(
|
|
2654
2674
|
value: builtins.str,
|
|
2655
2675
|
) -> None:
|
|
@@ -2668,6 +2688,12 @@ def _typecheckingstub__73508385219d92414fa73246ef135667c9eca037d9a796d5490e9c29d
|
|
|
2668
2688
|
"""Type checking stubs"""
|
|
2669
2689
|
pass
|
|
2670
2690
|
|
|
2691
|
+
def _typecheckingstub__c441bfde4467a201e4e9322b69a020514feb4e0efb56d31892f1f02e461d7119(
|
|
2692
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty]]]],
|
|
2693
|
+
) -> None:
|
|
2694
|
+
"""Type checking stubs"""
|
|
2695
|
+
pass
|
|
2696
|
+
|
|
2671
2697
|
def _typecheckingstub__f1c5de5e1db5e25e42cb52039b70835fa351dc563f560ac5ff3604bab3a7c6d3(
|
|
2672
2698
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
2673
2699
|
) -> None:
|
|
@@ -2685,7 +2711,8 @@ def _typecheckingstub__14f084baf89be97b69b754d6755f29c921f7ef9044bf1e234a903b93f
|
|
|
2685
2711
|
def _typecheckingstub__522fc3db779b17ca862e5f7c251173d53b22cf2b4867dc81e3a568dcf3643063(
|
|
2686
2712
|
*,
|
|
2687
2713
|
input_source_arn: builtins.str,
|
|
2688
|
-
schema_arn: builtins.str,
|
|
2714
|
+
schema_arn: typing.Optional[builtins.str] = None,
|
|
2715
|
+
type: typing.Optional[builtins.str] = None,
|
|
2689
2716
|
) -> None:
|
|
2690
2717
|
"""Type checking stubs"""
|
|
2691
2718
|
pass
|
|
@@ -2718,10 +2745,10 @@ def _typecheckingstub__a92ec1b5f460936930fefdd0c239f69c3ec93198e4a71c3867bbe1bf1
|
|
|
2718
2745
|
*,
|
|
2719
2746
|
id_mapping_techniques: typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingTechniquesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
2720
2747
|
input_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
2721
|
-
output_source_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
2722
2748
|
role_arn: builtins.str,
|
|
2723
2749
|
workflow_name: builtins.str,
|
|
2724
2750
|
description: typing.Optional[builtins.str] = None,
|
|
2751
|
+
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,
|
|
2725
2752
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2726
2753
|
) -> None:
|
|
2727
2754
|
"""Type checking stubs"""
|
aws_cdk/aws_glue/__init__.py
CHANGED
|
@@ -1474,6 +1474,10 @@ class CfnCrawler(
|
|
|
1474
1474
|
crawler_security_configuration="crawlerSecurityConfiguration",
|
|
1475
1475
|
database_name="databaseName",
|
|
1476
1476
|
description="description",
|
|
1477
|
+
lake_formation_configuration=glue.CfnCrawler.LakeFormationConfigurationProperty(
|
|
1478
|
+
account_id="accountId",
|
|
1479
|
+
use_lake_formation_credentials=False
|
|
1480
|
+
),
|
|
1477
1481
|
name="name",
|
|
1478
1482
|
recrawl_policy=glue.CfnCrawler.RecrawlPolicyProperty(
|
|
1479
1483
|
recrawl_behavior="recrawlBehavior"
|
|
@@ -1502,6 +1506,7 @@ class CfnCrawler(
|
|
|
1502
1506
|
crawler_security_configuration: typing.Optional[builtins.str] = None,
|
|
1503
1507
|
database_name: typing.Optional[builtins.str] = None,
|
|
1504
1508
|
description: typing.Optional[builtins.str] = None,
|
|
1509
|
+
lake_formation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCrawler.LakeFormationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1505
1510
|
name: typing.Optional[builtins.str] = None,
|
|
1506
1511
|
recrawl_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCrawler.RecrawlPolicyProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1507
1512
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCrawler.ScheduleProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -1519,6 +1524,7 @@ class CfnCrawler(
|
|
|
1519
1524
|
:param crawler_security_configuration: The name of the ``SecurityConfiguration`` structure to be used by this crawler.
|
|
1520
1525
|
:param database_name: The name of the database in which the crawler's output is stored.
|
|
1521
1526
|
:param description: A description of the crawler.
|
|
1527
|
+
:param lake_formation_configuration:
|
|
1522
1528
|
:param name: The name of the crawler.
|
|
1523
1529
|
:param recrawl_policy: A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.
|
|
1524
1530
|
:param schedule: For scheduled crawlers, the schedule when the crawler runs.
|
|
@@ -1538,6 +1544,7 @@ class CfnCrawler(
|
|
|
1538
1544
|
crawler_security_configuration=crawler_security_configuration,
|
|
1539
1545
|
database_name=database_name,
|
|
1540
1546
|
description=description,
|
|
1547
|
+
lake_formation_configuration=lake_formation_configuration,
|
|
1541
1548
|
name=name,
|
|
1542
1549
|
recrawl_policy=recrawl_policy,
|
|
1543
1550
|
schedule=schedule,
|
|
@@ -1696,6 +1703,23 @@ class CfnCrawler(
|
|
|
1696
1703
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1697
1704
|
jsii.set(self, "description", value)
|
|
1698
1705
|
|
|
1706
|
+
@builtins.property
|
|
1707
|
+
@jsii.member(jsii_name="lakeFormationConfiguration")
|
|
1708
|
+
def lake_formation_configuration(
|
|
1709
|
+
self,
|
|
1710
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCrawler.LakeFormationConfigurationProperty"]]:
|
|
1711
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCrawler.LakeFormationConfigurationProperty"]], jsii.get(self, "lakeFormationConfiguration"))
|
|
1712
|
+
|
|
1713
|
+
@lake_formation_configuration.setter
|
|
1714
|
+
def lake_formation_configuration(
|
|
1715
|
+
self,
|
|
1716
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCrawler.LakeFormationConfigurationProperty"]],
|
|
1717
|
+
) -> None:
|
|
1718
|
+
if __debug__:
|
|
1719
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e64ccabfbbc601ee6cf62caf919ec0f9d3c9ee5004117fe31886a6aa08cd135c)
|
|
1720
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1721
|
+
jsii.set(self, "lakeFormationConfiguration", value)
|
|
1722
|
+
|
|
1699
1723
|
@builtins.property
|
|
1700
1724
|
@jsii.member(jsii_name="name")
|
|
1701
1725
|
def name(self) -> typing.Optional[builtins.str]:
|
|
@@ -2272,6 +2296,78 @@ class CfnCrawler(
|
|
|
2272
2296
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
2273
2297
|
)
|
|
2274
2298
|
|
|
2299
|
+
@jsii.data_type(
|
|
2300
|
+
jsii_type="aws-cdk-lib.aws_glue.CfnCrawler.LakeFormationConfigurationProperty",
|
|
2301
|
+
jsii_struct_bases=[],
|
|
2302
|
+
name_mapping={
|
|
2303
|
+
"account_id": "accountId",
|
|
2304
|
+
"use_lake_formation_credentials": "useLakeFormationCredentials",
|
|
2305
|
+
},
|
|
2306
|
+
)
|
|
2307
|
+
class LakeFormationConfigurationProperty:
|
|
2308
|
+
def __init__(
|
|
2309
|
+
self,
|
|
2310
|
+
*,
|
|
2311
|
+
account_id: typing.Optional[builtins.str] = None,
|
|
2312
|
+
use_lake_formation_credentials: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2313
|
+
) -> None:
|
|
2314
|
+
'''
|
|
2315
|
+
:param account_id:
|
|
2316
|
+
:param use_lake_formation_credentials:
|
|
2317
|
+
|
|
2318
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html
|
|
2319
|
+
:exampleMetadata: fixture=_generated
|
|
2320
|
+
|
|
2321
|
+
Example::
|
|
2322
|
+
|
|
2323
|
+
# The code below shows an example of how to instantiate this type.
|
|
2324
|
+
# The values are placeholders you should change.
|
|
2325
|
+
from aws_cdk import aws_glue as glue
|
|
2326
|
+
|
|
2327
|
+
lake_formation_configuration_property = glue.CfnCrawler.LakeFormationConfigurationProperty(
|
|
2328
|
+
account_id="accountId",
|
|
2329
|
+
use_lake_formation_credentials=False
|
|
2330
|
+
)
|
|
2331
|
+
'''
|
|
2332
|
+
if __debug__:
|
|
2333
|
+
type_hints = typing.get_type_hints(_typecheckingstub__00e61f68ec488853de383150c03873ed82cc7c24780e8804ee029b82e3540cb6)
|
|
2334
|
+
check_type(argname="argument account_id", value=account_id, expected_type=type_hints["account_id"])
|
|
2335
|
+
check_type(argname="argument use_lake_formation_credentials", value=use_lake_formation_credentials, expected_type=type_hints["use_lake_formation_credentials"])
|
|
2336
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2337
|
+
if account_id is not None:
|
|
2338
|
+
self._values["account_id"] = account_id
|
|
2339
|
+
if use_lake_formation_credentials is not None:
|
|
2340
|
+
self._values["use_lake_formation_credentials"] = use_lake_formation_credentials
|
|
2341
|
+
|
|
2342
|
+
@builtins.property
|
|
2343
|
+
def account_id(self) -> typing.Optional[builtins.str]:
|
|
2344
|
+
'''
|
|
2345
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html#cfn-glue-crawler-lakeformationconfiguration-accountid
|
|
2346
|
+
'''
|
|
2347
|
+
result = self._values.get("account_id")
|
|
2348
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2349
|
+
|
|
2350
|
+
@builtins.property
|
|
2351
|
+
def use_lake_formation_credentials(
|
|
2352
|
+
self,
|
|
2353
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2354
|
+
'''
|
|
2355
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html#cfn-glue-crawler-lakeformationconfiguration-uselakeformationcredentials
|
|
2356
|
+
'''
|
|
2357
|
+
result = self._values.get("use_lake_formation_credentials")
|
|
2358
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2359
|
+
|
|
2360
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2361
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2362
|
+
|
|
2363
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2364
|
+
return not (rhs == self)
|
|
2365
|
+
|
|
2366
|
+
def __repr__(self) -> str:
|
|
2367
|
+
return "LakeFormationConfigurationProperty(%s)" % ", ".join(
|
|
2368
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2369
|
+
)
|
|
2370
|
+
|
|
2275
2371
|
@jsii.data_type(
|
|
2276
2372
|
jsii_type="aws-cdk-lib.aws_glue.CfnCrawler.MongoDBTargetProperty",
|
|
2277
2373
|
jsii_struct_bases=[],
|
|
@@ -2905,6 +3001,7 @@ class CfnCrawler(
|
|
|
2905
3001
|
"crawler_security_configuration": "crawlerSecurityConfiguration",
|
|
2906
3002
|
"database_name": "databaseName",
|
|
2907
3003
|
"description": "description",
|
|
3004
|
+
"lake_formation_configuration": "lakeFormationConfiguration",
|
|
2908
3005
|
"name": "name",
|
|
2909
3006
|
"recrawl_policy": "recrawlPolicy",
|
|
2910
3007
|
"schedule": "schedule",
|
|
@@ -2924,6 +3021,7 @@ class CfnCrawlerProps:
|
|
|
2924
3021
|
crawler_security_configuration: typing.Optional[builtins.str] = None,
|
|
2925
3022
|
database_name: typing.Optional[builtins.str] = None,
|
|
2926
3023
|
description: typing.Optional[builtins.str] = None,
|
|
3024
|
+
lake_formation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.LakeFormationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2927
3025
|
name: typing.Optional[builtins.str] = None,
|
|
2928
3026
|
recrawl_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.RecrawlPolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2929
3027
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2940,6 +3038,7 @@ class CfnCrawlerProps:
|
|
|
2940
3038
|
:param crawler_security_configuration: The name of the ``SecurityConfiguration`` structure to be used by this crawler.
|
|
2941
3039
|
:param database_name: The name of the database in which the crawler's output is stored.
|
|
2942
3040
|
:param description: A description of the crawler.
|
|
3041
|
+
:param lake_formation_configuration:
|
|
2943
3042
|
:param name: The name of the crawler.
|
|
2944
3043
|
:param recrawl_policy: A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.
|
|
2945
3044
|
:param schedule: For scheduled crawlers, the schedule when the crawler runs.
|
|
@@ -3008,6 +3107,10 @@ class CfnCrawlerProps:
|
|
|
3008
3107
|
crawler_security_configuration="crawlerSecurityConfiguration",
|
|
3009
3108
|
database_name="databaseName",
|
|
3010
3109
|
description="description",
|
|
3110
|
+
lake_formation_configuration=glue.CfnCrawler.LakeFormationConfigurationProperty(
|
|
3111
|
+
account_id="accountId",
|
|
3112
|
+
use_lake_formation_credentials=False
|
|
3113
|
+
),
|
|
3011
3114
|
name="name",
|
|
3012
3115
|
recrawl_policy=glue.CfnCrawler.RecrawlPolicyProperty(
|
|
3013
3116
|
recrawl_behavior="recrawlBehavior"
|
|
@@ -3032,6 +3135,7 @@ class CfnCrawlerProps:
|
|
|
3032
3135
|
check_type(argname="argument crawler_security_configuration", value=crawler_security_configuration, expected_type=type_hints["crawler_security_configuration"])
|
|
3033
3136
|
check_type(argname="argument database_name", value=database_name, expected_type=type_hints["database_name"])
|
|
3034
3137
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3138
|
+
check_type(argname="argument lake_formation_configuration", value=lake_formation_configuration, expected_type=type_hints["lake_formation_configuration"])
|
|
3035
3139
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
3036
3140
|
check_type(argname="argument recrawl_policy", value=recrawl_policy, expected_type=type_hints["recrawl_policy"])
|
|
3037
3141
|
check_type(argname="argument schedule", value=schedule, expected_type=type_hints["schedule"])
|
|
@@ -3052,6 +3156,8 @@ class CfnCrawlerProps:
|
|
|
3052
3156
|
self._values["database_name"] = database_name
|
|
3053
3157
|
if description is not None:
|
|
3054
3158
|
self._values["description"] = description
|
|
3159
|
+
if lake_formation_configuration is not None:
|
|
3160
|
+
self._values["lake_formation_configuration"] = lake_formation_configuration
|
|
3055
3161
|
if name is not None:
|
|
3056
3162
|
self._values["name"] = name
|
|
3057
3163
|
if recrawl_policy is not None:
|
|
@@ -3134,6 +3240,16 @@ class CfnCrawlerProps:
|
|
|
3134
3240
|
result = self._values.get("description")
|
|
3135
3241
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3136
3242
|
|
|
3243
|
+
@builtins.property
|
|
3244
|
+
def lake_formation_configuration(
|
|
3245
|
+
self,
|
|
3246
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCrawler.LakeFormationConfigurationProperty]]:
|
|
3247
|
+
'''
|
|
3248
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-lakeformationconfiguration
|
|
3249
|
+
'''
|
|
3250
|
+
result = self._values.get("lake_formation_configuration")
|
|
3251
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCrawler.LakeFormationConfigurationProperty]], result)
|
|
3252
|
+
|
|
3137
3253
|
@builtins.property
|
|
3138
3254
|
def name(self) -> typing.Optional[builtins.str]:
|
|
3139
3255
|
'''The name of the crawler.
|
|
@@ -13121,7 +13237,7 @@ class CfnTableOptimizer(
|
|
|
13121
13237
|
:param catalog_id: The catalog ID of the table.
|
|
13122
13238
|
:param database_name: The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.
|
|
13123
13239
|
:param table_name: The table name. For Hive compatibility, this must be entirely lowercase.
|
|
13124
|
-
:param table_optimizer_configuration:
|
|
13240
|
+
:param table_optimizer_configuration: Specifies configuration details of a table optimizer.
|
|
13125
13241
|
:param type: The type of table optimizer. Currently, the only valid value is compaction.
|
|
13126
13242
|
'''
|
|
13127
13243
|
if __debug__:
|
|
@@ -13225,6 +13341,7 @@ class CfnTableOptimizer(
|
|
|
13225
13341
|
def table_optimizer_configuration(
|
|
13226
13342
|
self,
|
|
13227
13343
|
) -> typing.Union[_IResolvable_da3f097b, "CfnTableOptimizer.TableOptimizerConfigurationProperty"]:
|
|
13344
|
+
'''Specifies configuration details of a table optimizer.'''
|
|
13228
13345
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnTableOptimizer.TableOptimizerConfigurationProperty"], jsii.get(self, "tableOptimizerConfiguration"))
|
|
13229
13346
|
|
|
13230
13347
|
@table_optimizer_configuration.setter
|
|
@@ -13348,7 +13465,7 @@ class CfnTableOptimizerProps:
|
|
|
13348
13465
|
:param catalog_id: The catalog ID of the table.
|
|
13349
13466
|
:param database_name: The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.
|
|
13350
13467
|
:param table_name: The table name. For Hive compatibility, this must be entirely lowercase.
|
|
13351
|
-
:param table_optimizer_configuration:
|
|
13468
|
+
:param table_optimizer_configuration: Specifies configuration details of a table optimizer.
|
|
13352
13469
|
:param type: The type of table optimizer. Currently, the only valid value is compaction.
|
|
13353
13470
|
|
|
13354
13471
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-tableoptimizer.html
|
|
@@ -13424,7 +13541,8 @@ class CfnTableOptimizerProps:
|
|
|
13424
13541
|
def table_optimizer_configuration(
|
|
13425
13542
|
self,
|
|
13426
13543
|
) -> typing.Union[_IResolvable_da3f097b, CfnTableOptimizer.TableOptimizerConfigurationProperty]:
|
|
13427
|
-
'''
|
|
13544
|
+
'''Specifies configuration details of a table optimizer.
|
|
13545
|
+
|
|
13428
13546
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-tableoptimizer.html#cfn-glue-tableoptimizer-tableoptimizerconfiguration
|
|
13429
13547
|
'''
|
|
13430
13548
|
result = self._values.get("table_optimizer_configuration")
|
|
@@ -15208,6 +15326,7 @@ def _typecheckingstub__ff9e598239ccebeecff8b5e3f5f0458f9de0c5c407db27837fb3122ad
|
|
|
15208
15326
|
crawler_security_configuration: typing.Optional[builtins.str] = None,
|
|
15209
15327
|
database_name: typing.Optional[builtins.str] = None,
|
|
15210
15328
|
description: typing.Optional[builtins.str] = None,
|
|
15329
|
+
lake_formation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.LakeFormationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15211
15330
|
name: typing.Optional[builtins.str] = None,
|
|
15212
15331
|
recrawl_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.RecrawlPolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15213
15332
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -15272,6 +15391,12 @@ def _typecheckingstub__55e97c90536e63620917a74b9e753f3ef37d2ba4cc78a367b3c2692a6
|
|
|
15272
15391
|
"""Type checking stubs"""
|
|
15273
15392
|
pass
|
|
15274
15393
|
|
|
15394
|
+
def _typecheckingstub__e64ccabfbbc601ee6cf62caf919ec0f9d3c9ee5004117fe31886a6aa08cd135c(
|
|
15395
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCrawler.LakeFormationConfigurationProperty]],
|
|
15396
|
+
) -> None:
|
|
15397
|
+
"""Type checking stubs"""
|
|
15398
|
+
pass
|
|
15399
|
+
|
|
15275
15400
|
def _typecheckingstub__35986739065f4f5528fa36a3a4743b76eb0937d555e5d7ad917e107db84e9d92(
|
|
15276
15401
|
value: typing.Optional[builtins.str],
|
|
15277
15402
|
) -> None:
|
|
@@ -15355,6 +15480,14 @@ def _typecheckingstub__9cb27c7db73a5c6fa3740f2d4726f453641d40911229d3bb39f26c440
|
|
|
15355
15480
|
"""Type checking stubs"""
|
|
15356
15481
|
pass
|
|
15357
15482
|
|
|
15483
|
+
def _typecheckingstub__00e61f68ec488853de383150c03873ed82cc7c24780e8804ee029b82e3540cb6(
|
|
15484
|
+
*,
|
|
15485
|
+
account_id: typing.Optional[builtins.str] = None,
|
|
15486
|
+
use_lake_formation_credentials: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
15487
|
+
) -> None:
|
|
15488
|
+
"""Type checking stubs"""
|
|
15489
|
+
pass
|
|
15490
|
+
|
|
15358
15491
|
def _typecheckingstub__b27a374f7da5948658852ac367f177b833b9e06c48e0a246c211a7d7ede3af94(
|
|
15359
15492
|
*,
|
|
15360
15493
|
connection_name: typing.Optional[builtins.str] = None,
|
|
@@ -15419,6 +15552,7 @@ def _typecheckingstub__51125dcaf0f55fdaefa50d6b9c05a6e431008538b8ab24abc0fbe126f
|
|
|
15419
15552
|
crawler_security_configuration: typing.Optional[builtins.str] = None,
|
|
15420
15553
|
database_name: typing.Optional[builtins.str] = None,
|
|
15421
15554
|
description: typing.Optional[builtins.str] = None,
|
|
15555
|
+
lake_formation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.LakeFormationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15422
15556
|
name: typing.Optional[builtins.str] = None,
|
|
15423
15557
|
recrawl_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.RecrawlPolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15424
15558
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCrawler.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|