aws-cdk-lib 2.162.1__py3-none-any.whl → 2.163.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 +5 -7
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.162.1.jsii.tgz → aws-cdk-lib@2.163.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +7 -7
- aws_cdk/aws_appflow/__init__.py +30 -16
- aws_cdk/aws_appsync/__init__.py +11 -21
- aws_cdk/aws_autoscaling/__init__.py +123 -0
- aws_cdk/aws_b2bi/__init__.py +83 -57
- aws_cdk/aws_cloudformation/__init__.py +5 -7
- aws_cdk/aws_codebuild/__init__.py +19 -40
- aws_cdk/aws_codepipeline/__init__.py +88 -7
- aws_cdk/aws_cognito/__init__.py +282 -168
- aws_cdk/aws_dms/__init__.py +1076 -117
- aws_cdk/aws_docdb/__init__.py +19 -13
- aws_cdk/aws_dynamodb/__init__.py +43 -22
- aws_cdk/aws_ec2/__init__.py +1213 -38
- aws_cdk/aws_ecs/__init__.py +187 -18
- aws_cdk/aws_ecs_patterns/__init__.py +189 -27
- aws_cdk/aws_efs/__init__.py +56 -37
- aws_cdk/aws_eks/__init__.py +6 -2
- aws_cdk/aws_elasticache/__init__.py +118 -118
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +21 -1
- aws_cdk/aws_emr/__init__.py +124 -57
- aws_cdk/aws_events/__init__.py +40 -0
- aws_cdk/aws_fms/__init__.py +757 -8
- aws_cdk/aws_fsx/__init__.py +245 -10
- aws_cdk/aws_gamelift/__init__.py +121 -0
- aws_cdk/aws_glue/__init__.py +344 -61
- aws_cdk/aws_iam/__init__.py +44 -0
- aws_cdk/aws_identitystore/__init__.py +4 -2
- aws_cdk/aws_iot/__init__.py +40 -12
- aws_cdk/aws_kinesis/__init__.py +239 -0
- aws_cdk/aws_kms/__init__.py +92 -3
- aws_cdk/aws_lambda/__init__.py +2 -2
- aws_cdk/aws_mediapackagev2/__init__.py +26 -10
- aws_cdk/aws_memorydb/__init__.py +7 -7
- aws_cdk/aws_networkfirewall/__init__.py +89 -0
- aws_cdk/aws_qbusiness/__init__.py +51 -7
- aws_cdk/aws_quicksight/__init__.py +221 -87
- aws_cdk/aws_rds/__init__.py +376 -75
- aws_cdk/aws_redshift/__init__.py +493 -13
- aws_cdk/aws_route53profiles/__init__.py +4 -2
- aws_cdk/aws_route53resolver/__init__.py +26 -60
- aws_cdk/aws_s3/__init__.py +104 -4
- aws_cdk/aws_s3express/__init__.py +73 -13
- aws_cdk/aws_s3outposts/__init__.py +21 -12
- aws_cdk/aws_sagemaker/__init__.py +4 -44
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_stepfunctions/__init__.py +529 -156
- aws_cdk/aws_transfer/__init__.py +15 -4
- aws_cdk/aws_waf/__init__.py +11 -11
- aws_cdk/aws_wafregional/__init__.py +12 -12
- aws_cdk/aws_wisdom/__init__.py +710 -5
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.0.dist-info}/RECORD +59 -59
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_glue/__init__.py
CHANGED
|
@@ -1604,14 +1604,6 @@ class CfnCrawler(
|
|
|
1604
1604
|
'''The CloudFormation resource type name for this resource class.'''
|
|
1605
1605
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
1606
1606
|
|
|
1607
|
-
@builtins.property
|
|
1608
|
-
@jsii.member(jsii_name="attrId")
|
|
1609
|
-
def attr_id(self) -> builtins.str:
|
|
1610
|
-
'''
|
|
1611
|
-
:cloudformationAttribute: Id
|
|
1612
|
-
'''
|
|
1613
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
1614
|
-
|
|
1615
1607
|
@builtins.property
|
|
1616
1608
|
@jsii.member(jsii_name="cfnProperties")
|
|
1617
1609
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -6171,14 +6163,6 @@ class CfnJob(
|
|
|
6171
6163
|
'''The CloudFormation resource type name for this resource class.'''
|
|
6172
6164
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
6173
6165
|
|
|
6174
|
-
@builtins.property
|
|
6175
|
-
@jsii.member(jsii_name="attrId")
|
|
6176
|
-
def attr_id(self) -> builtins.str:
|
|
6177
|
-
'''
|
|
6178
|
-
:cloudformationAttribute: Id
|
|
6179
|
-
'''
|
|
6180
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
6181
|
-
|
|
6182
6166
|
@builtins.property
|
|
6183
6167
|
@jsii.member(jsii_name="cfnProperties")
|
|
6184
6168
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -8136,7 +8120,7 @@ class CfnMLTransform(
|
|
|
8136
8120
|
) -> None:
|
|
8137
8121
|
'''The algorithm-specific parameters that are associated with the machine learning transform.
|
|
8138
8122
|
|
|
8139
|
-
:param transform_type: The type of machine learning transform. ``FIND_MATCHES`` is the only option. For information about the types of machine learning transforms, see `
|
|
8123
|
+
:param transform_type: The type of machine learning transform. ``FIND_MATCHES`` is the only option. For information about the types of machine learning transforms, see `Working with machine learning transforms <https://docs.aws.amazon.com/glue/latest/dg/console-machine-learning-transforms.html>`_ .
|
|
8140
8124
|
:param find_matches_parameters: The parameters for the find matches algorithm.
|
|
8141
8125
|
|
|
8142
8126
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html
|
|
@@ -8176,7 +8160,7 @@ class CfnMLTransform(
|
|
|
8176
8160
|
def transform_type(self) -> builtins.str:
|
|
8177
8161
|
'''The type of machine learning transform. ``FIND_MATCHES`` is the only option.
|
|
8178
8162
|
|
|
8179
|
-
For information about the types of machine learning transforms, see `
|
|
8163
|
+
For information about the types of machine learning transforms, see `Working with machine learning transforms <https://docs.aws.amazon.com/glue/latest/dg/console-machine-learning-transforms.html>`_ .
|
|
8180
8164
|
|
|
8181
8165
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype
|
|
8182
8166
|
'''
|
|
@@ -10155,7 +10139,6 @@ class CfnSchema(
|
|
|
10155
10139
|
compatibility="compatibility",
|
|
10156
10140
|
data_format="dataFormat",
|
|
10157
10141
|
name="name",
|
|
10158
|
-
schema_definition="schemaDefinition",
|
|
10159
10142
|
|
|
10160
10143
|
# the properties below are optional
|
|
10161
10144
|
checkpoint_version=glue.CfnSchema.SchemaVersionProperty(
|
|
@@ -10167,6 +10150,7 @@ class CfnSchema(
|
|
|
10167
10150
|
arn="arn",
|
|
10168
10151
|
name="name"
|
|
10169
10152
|
),
|
|
10153
|
+
schema_definition="schemaDefinition",
|
|
10170
10154
|
tags=[CfnTag(
|
|
10171
10155
|
key="key",
|
|
10172
10156
|
value="value"
|
|
@@ -10182,10 +10166,10 @@ class CfnSchema(
|
|
|
10182
10166
|
compatibility: builtins.str,
|
|
10183
10167
|
data_format: builtins.str,
|
|
10184
10168
|
name: builtins.str,
|
|
10185
|
-
schema_definition: builtins.str,
|
|
10186
10169
|
checkpoint_version: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSchema.SchemaVersionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10187
10170
|
description: typing.Optional[builtins.str] = None,
|
|
10188
10171
|
registry: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSchema.RegistryProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10172
|
+
schema_definition: typing.Optional[builtins.str] = None,
|
|
10189
10173
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10190
10174
|
) -> None:
|
|
10191
10175
|
'''
|
|
@@ -10194,10 +10178,10 @@ class CfnSchema(
|
|
|
10194
10178
|
:param compatibility: The compatibility mode of the schema.
|
|
10195
10179
|
:param data_format: The data format of the schema definition. Currently only ``AVRO`` is supported.
|
|
10196
10180
|
:param name: Name of the schema to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.
|
|
10197
|
-
:param schema_definition: The schema definition using the ``DataFormat`` setting for ``SchemaName`` .
|
|
10198
10181
|
:param checkpoint_version: Specify the ``VersionNumber`` or the ``IsLatest`` for setting the checkpoint for the schema. This is only required for updating a checkpoint.
|
|
10199
10182
|
:param description: A description of the schema if specified when created.
|
|
10200
10183
|
:param registry: The registry where a schema is stored.
|
|
10184
|
+
:param schema_definition: The schema definition using the ``DataFormat`` setting for ``SchemaName`` .
|
|
10201
10185
|
:param tags: AWS tags that contain a key value pair and may be searched by console, command line, or API.
|
|
10202
10186
|
'''
|
|
10203
10187
|
if __debug__:
|
|
@@ -10208,10 +10192,10 @@ class CfnSchema(
|
|
|
10208
10192
|
compatibility=compatibility,
|
|
10209
10193
|
data_format=data_format,
|
|
10210
10194
|
name=name,
|
|
10211
|
-
schema_definition=schema_definition,
|
|
10212
10195
|
checkpoint_version=checkpoint_version,
|
|
10213
10196
|
description=description,
|
|
10214
10197
|
registry=registry,
|
|
10198
|
+
schema_definition=schema_definition,
|
|
10215
10199
|
tags=tags,
|
|
10216
10200
|
)
|
|
10217
10201
|
|
|
@@ -10315,19 +10299,6 @@ class CfnSchema(
|
|
|
10315
10299
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
10316
10300
|
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
10317
10301
|
|
|
10318
|
-
@builtins.property
|
|
10319
|
-
@jsii.member(jsii_name="schemaDefinition")
|
|
10320
|
-
def schema_definition(self) -> builtins.str:
|
|
10321
|
-
'''The schema definition using the ``DataFormat`` setting for ``SchemaName`` .'''
|
|
10322
|
-
return typing.cast(builtins.str, jsii.get(self, "schemaDefinition"))
|
|
10323
|
-
|
|
10324
|
-
@schema_definition.setter
|
|
10325
|
-
def schema_definition(self, value: builtins.str) -> None:
|
|
10326
|
-
if __debug__:
|
|
10327
|
-
type_hints = typing.get_type_hints(_typecheckingstub__0425f83d697fdeb65b7ad72b89add3f188c811ceb74503e3deeda6f8fd774134)
|
|
10328
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
10329
|
-
jsii.set(self, "schemaDefinition", value) # pyright: ignore[reportArgumentType]
|
|
10330
|
-
|
|
10331
10302
|
@builtins.property
|
|
10332
10303
|
@jsii.member(jsii_name="checkpointVersion")
|
|
10333
10304
|
def checkpoint_version(
|
|
@@ -10377,6 +10348,19 @@ class CfnSchema(
|
|
|
10377
10348
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
10378
10349
|
jsii.set(self, "registry", value) # pyright: ignore[reportArgumentType]
|
|
10379
10350
|
|
|
10351
|
+
@builtins.property
|
|
10352
|
+
@jsii.member(jsii_name="schemaDefinition")
|
|
10353
|
+
def schema_definition(self) -> typing.Optional[builtins.str]:
|
|
10354
|
+
'''The schema definition using the ``DataFormat`` setting for ``SchemaName`` .'''
|
|
10355
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "schemaDefinition"))
|
|
10356
|
+
|
|
10357
|
+
@schema_definition.setter
|
|
10358
|
+
def schema_definition(self, value: typing.Optional[builtins.str]) -> None:
|
|
10359
|
+
if __debug__:
|
|
10360
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0425f83d697fdeb65b7ad72b89add3f188c811ceb74503e3deeda6f8fd774134)
|
|
10361
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
10362
|
+
jsii.set(self, "schemaDefinition", value) # pyright: ignore[reportArgumentType]
|
|
10363
|
+
|
|
10380
10364
|
@builtins.property
|
|
10381
10365
|
@jsii.member(jsii_name="tagsRaw")
|
|
10382
10366
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -10540,10 +10524,10 @@ class CfnSchema(
|
|
|
10540
10524
|
"compatibility": "compatibility",
|
|
10541
10525
|
"data_format": "dataFormat",
|
|
10542
10526
|
"name": "name",
|
|
10543
|
-
"schema_definition": "schemaDefinition",
|
|
10544
10527
|
"checkpoint_version": "checkpointVersion",
|
|
10545
10528
|
"description": "description",
|
|
10546
10529
|
"registry": "registry",
|
|
10530
|
+
"schema_definition": "schemaDefinition",
|
|
10547
10531
|
"tags": "tags",
|
|
10548
10532
|
},
|
|
10549
10533
|
)
|
|
@@ -10554,10 +10538,10 @@ class CfnSchemaProps:
|
|
|
10554
10538
|
compatibility: builtins.str,
|
|
10555
10539
|
data_format: builtins.str,
|
|
10556
10540
|
name: builtins.str,
|
|
10557
|
-
schema_definition: builtins.str,
|
|
10558
10541
|
checkpoint_version: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSchema.SchemaVersionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10559
10542
|
description: typing.Optional[builtins.str] = None,
|
|
10560
10543
|
registry: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSchema.RegistryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10544
|
+
schema_definition: typing.Optional[builtins.str] = None,
|
|
10561
10545
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10562
10546
|
) -> None:
|
|
10563
10547
|
'''Properties for defining a ``CfnSchema``.
|
|
@@ -10565,10 +10549,10 @@ class CfnSchemaProps:
|
|
|
10565
10549
|
:param compatibility: The compatibility mode of the schema.
|
|
10566
10550
|
:param data_format: The data format of the schema definition. Currently only ``AVRO`` is supported.
|
|
10567
10551
|
:param name: Name of the schema to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.
|
|
10568
|
-
:param schema_definition: The schema definition using the ``DataFormat`` setting for ``SchemaName`` .
|
|
10569
10552
|
:param checkpoint_version: Specify the ``VersionNumber`` or the ``IsLatest`` for setting the checkpoint for the schema. This is only required for updating a checkpoint.
|
|
10570
10553
|
:param description: A description of the schema if specified when created.
|
|
10571
10554
|
:param registry: The registry where a schema is stored.
|
|
10555
|
+
:param schema_definition: The schema definition using the ``DataFormat`` setting for ``SchemaName`` .
|
|
10572
10556
|
:param tags: AWS tags that contain a key value pair and may be searched by console, command line, or API.
|
|
10573
10557
|
|
|
10574
10558
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schema.html
|
|
@@ -10584,7 +10568,6 @@ class CfnSchemaProps:
|
|
|
10584
10568
|
compatibility="compatibility",
|
|
10585
10569
|
data_format="dataFormat",
|
|
10586
10570
|
name="name",
|
|
10587
|
-
schema_definition="schemaDefinition",
|
|
10588
10571
|
|
|
10589
10572
|
# the properties below are optional
|
|
10590
10573
|
checkpoint_version=glue.CfnSchema.SchemaVersionProperty(
|
|
@@ -10596,6 +10579,7 @@ class CfnSchemaProps:
|
|
|
10596
10579
|
arn="arn",
|
|
10597
10580
|
name="name"
|
|
10598
10581
|
),
|
|
10582
|
+
schema_definition="schemaDefinition",
|
|
10599
10583
|
tags=[CfnTag(
|
|
10600
10584
|
key="key",
|
|
10601
10585
|
value="value"
|
|
@@ -10607,16 +10591,15 @@ class CfnSchemaProps:
|
|
|
10607
10591
|
check_type(argname="argument compatibility", value=compatibility, expected_type=type_hints["compatibility"])
|
|
10608
10592
|
check_type(argname="argument data_format", value=data_format, expected_type=type_hints["data_format"])
|
|
10609
10593
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
10610
|
-
check_type(argname="argument schema_definition", value=schema_definition, expected_type=type_hints["schema_definition"])
|
|
10611
10594
|
check_type(argname="argument checkpoint_version", value=checkpoint_version, expected_type=type_hints["checkpoint_version"])
|
|
10612
10595
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
10613
10596
|
check_type(argname="argument registry", value=registry, expected_type=type_hints["registry"])
|
|
10597
|
+
check_type(argname="argument schema_definition", value=schema_definition, expected_type=type_hints["schema_definition"])
|
|
10614
10598
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
10615
10599
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
10616
10600
|
"compatibility": compatibility,
|
|
10617
10601
|
"data_format": data_format,
|
|
10618
10602
|
"name": name,
|
|
10619
|
-
"schema_definition": schema_definition,
|
|
10620
10603
|
}
|
|
10621
10604
|
if checkpoint_version is not None:
|
|
10622
10605
|
self._values["checkpoint_version"] = checkpoint_version
|
|
@@ -10624,6 +10607,8 @@ class CfnSchemaProps:
|
|
|
10624
10607
|
self._values["description"] = description
|
|
10625
10608
|
if registry is not None:
|
|
10626
10609
|
self._values["registry"] = registry
|
|
10610
|
+
if schema_definition is not None:
|
|
10611
|
+
self._values["schema_definition"] = schema_definition
|
|
10627
10612
|
if tags is not None:
|
|
10628
10613
|
self._values["tags"] = tags
|
|
10629
10614
|
|
|
@@ -10661,16 +10646,6 @@ class CfnSchemaProps:
|
|
|
10661
10646
|
assert result is not None, "Required property 'name' is missing"
|
|
10662
10647
|
return typing.cast(builtins.str, result)
|
|
10663
10648
|
|
|
10664
|
-
@builtins.property
|
|
10665
|
-
def schema_definition(self) -> builtins.str:
|
|
10666
|
-
'''The schema definition using the ``DataFormat`` setting for ``SchemaName`` .
|
|
10667
|
-
|
|
10668
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schema.html#cfn-glue-schema-schemadefinition
|
|
10669
|
-
'''
|
|
10670
|
-
result = self._values.get("schema_definition")
|
|
10671
|
-
assert result is not None, "Required property 'schema_definition' is missing"
|
|
10672
|
-
return typing.cast(builtins.str, result)
|
|
10673
|
-
|
|
10674
10649
|
@builtins.property
|
|
10675
10650
|
def checkpoint_version(
|
|
10676
10651
|
self,
|
|
@@ -10704,6 +10679,15 @@ class CfnSchemaProps:
|
|
|
10704
10679
|
result = self._values.get("registry")
|
|
10705
10680
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnSchema.RegistryProperty]], result)
|
|
10706
10681
|
|
|
10682
|
+
@builtins.property
|
|
10683
|
+
def schema_definition(self) -> typing.Optional[builtins.str]:
|
|
10684
|
+
'''The schema definition using the ``DataFormat`` setting for ``SchemaName`` .
|
|
10685
|
+
|
|
10686
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schema.html#cfn-glue-schema-schemadefinition
|
|
10687
|
+
'''
|
|
10688
|
+
result = self._values.get("schema_definition")
|
|
10689
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
10690
|
+
|
|
10707
10691
|
@builtins.property
|
|
10708
10692
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
10709
10693
|
'''AWS tags that contain a key value pair and may be searched by console, command line, or API.
|
|
@@ -15019,6 +15003,24 @@ class CfnUsageProfile(
|
|
|
15019
15003
|
name="name",
|
|
15020
15004
|
|
|
15021
15005
|
# the properties below are optional
|
|
15006
|
+
configuration=glue.CfnUsageProfile.ProfileConfigurationProperty(
|
|
15007
|
+
job_configuration={
|
|
15008
|
+
"job_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty(
|
|
15009
|
+
allowed_values=["allowedValues"],
|
|
15010
|
+
default_value="defaultValue",
|
|
15011
|
+
max_value="maxValue",
|
|
15012
|
+
min_value="minValue"
|
|
15013
|
+
)
|
|
15014
|
+
},
|
|
15015
|
+
session_configuration={
|
|
15016
|
+
"session_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty(
|
|
15017
|
+
allowed_values=["allowedValues"],
|
|
15018
|
+
default_value="defaultValue",
|
|
15019
|
+
max_value="maxValue",
|
|
15020
|
+
min_value="minValue"
|
|
15021
|
+
)
|
|
15022
|
+
}
|
|
15023
|
+
),
|
|
15022
15024
|
description="description",
|
|
15023
15025
|
tags=[CfnTag(
|
|
15024
15026
|
key="key",
|
|
@@ -15033,6 +15035,7 @@ class CfnUsageProfile(
|
|
|
15033
15035
|
id: builtins.str,
|
|
15034
15036
|
*,
|
|
15035
15037
|
name: builtins.str,
|
|
15038
|
+
configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnUsageProfile.ProfileConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15036
15039
|
description: typing.Optional[builtins.str] = None,
|
|
15037
15040
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15038
15041
|
) -> None:
|
|
@@ -15040,6 +15043,7 @@ class CfnUsageProfile(
|
|
|
15040
15043
|
:param scope: Scope in which this resource is defined.
|
|
15041
15044
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
15042
15045
|
:param name: The name of the usage profile.
|
|
15046
|
+
:param configuration:
|
|
15043
15047
|
:param description: A description of the usage profile.
|
|
15044
15048
|
:param tags: The tags to be applied to this UsageProfiles.
|
|
15045
15049
|
'''
|
|
@@ -15047,7 +15051,9 @@ class CfnUsageProfile(
|
|
|
15047
15051
|
type_hints = typing.get_type_hints(_typecheckingstub__e7218caa3227d549ee6ae3f63083c402f9b57ee1e7764a3646a34f5e19c5bced)
|
|
15048
15052
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
15049
15053
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
15050
|
-
props = CfnUsageProfileProps(
|
|
15054
|
+
props = CfnUsageProfileProps(
|
|
15055
|
+
name=name, configuration=configuration, description=description, tags=tags
|
|
15056
|
+
)
|
|
15051
15057
|
|
|
15052
15058
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
15053
15059
|
|
|
@@ -15114,6 +15120,23 @@ class CfnUsageProfile(
|
|
|
15114
15120
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15115
15121
|
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
15116
15122
|
|
|
15123
|
+
@builtins.property
|
|
15124
|
+
@jsii.member(jsii_name="configuration")
|
|
15125
|
+
def configuration(
|
|
15126
|
+
self,
|
|
15127
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUsageProfile.ProfileConfigurationProperty"]]:
|
|
15128
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUsageProfile.ProfileConfigurationProperty"]], jsii.get(self, "configuration"))
|
|
15129
|
+
|
|
15130
|
+
@configuration.setter
|
|
15131
|
+
def configuration(
|
|
15132
|
+
self,
|
|
15133
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUsageProfile.ProfileConfigurationProperty"]],
|
|
15134
|
+
) -> None:
|
|
15135
|
+
if __debug__:
|
|
15136
|
+
type_hints = typing.get_type_hints(_typecheckingstub__836be4c4a58ceadcb2de9519a85712cea791d4357ba3a806e22bbd3e87d9744c)
|
|
15137
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15138
|
+
jsii.set(self, "configuration", value) # pyright: ignore[reportArgumentType]
|
|
15139
|
+
|
|
15117
15140
|
@builtins.property
|
|
15118
15141
|
@jsii.member(jsii_name="description")
|
|
15119
15142
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -15140,23 +15163,226 @@ class CfnUsageProfile(
|
|
|
15140
15163
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15141
15164
|
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
15142
15165
|
|
|
15166
|
+
@jsii.data_type(
|
|
15167
|
+
jsii_type="aws-cdk-lib.aws_glue.CfnUsageProfile.ConfigurationObjectProperty",
|
|
15168
|
+
jsii_struct_bases=[],
|
|
15169
|
+
name_mapping={
|
|
15170
|
+
"allowed_values": "allowedValues",
|
|
15171
|
+
"default_value": "defaultValue",
|
|
15172
|
+
"max_value": "maxValue",
|
|
15173
|
+
"min_value": "minValue",
|
|
15174
|
+
},
|
|
15175
|
+
)
|
|
15176
|
+
class ConfigurationObjectProperty:
|
|
15177
|
+
def __init__(
|
|
15178
|
+
self,
|
|
15179
|
+
*,
|
|
15180
|
+
allowed_values: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
15181
|
+
default_value: typing.Optional[builtins.str] = None,
|
|
15182
|
+
max_value: typing.Optional[builtins.str] = None,
|
|
15183
|
+
min_value: typing.Optional[builtins.str] = None,
|
|
15184
|
+
) -> None:
|
|
15185
|
+
'''Specifies the values that an admin sets for each job or session parameter configured in a AWS Glue usage profile.
|
|
15186
|
+
|
|
15187
|
+
:param allowed_values: A list of allowed values for the parameter.
|
|
15188
|
+
:param default_value: A default value for the parameter.
|
|
15189
|
+
:param max_value: A maximum allowed value for the parameter.
|
|
15190
|
+
:param min_value: A minimum allowed value for the parameter.
|
|
15191
|
+
|
|
15192
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html
|
|
15193
|
+
:exampleMetadata: fixture=_generated
|
|
15194
|
+
|
|
15195
|
+
Example::
|
|
15196
|
+
|
|
15197
|
+
# The code below shows an example of how to instantiate this type.
|
|
15198
|
+
# The values are placeholders you should change.
|
|
15199
|
+
from aws_cdk import aws_glue as glue
|
|
15200
|
+
|
|
15201
|
+
configuration_object_property = glue.CfnUsageProfile.ConfigurationObjectProperty(
|
|
15202
|
+
allowed_values=["allowedValues"],
|
|
15203
|
+
default_value="defaultValue",
|
|
15204
|
+
max_value="maxValue",
|
|
15205
|
+
min_value="minValue"
|
|
15206
|
+
)
|
|
15207
|
+
'''
|
|
15208
|
+
if __debug__:
|
|
15209
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8acb5926ab7b8b723d811c6d3d87fbbb90062b45be0cfe303b1c2514d558e91e)
|
|
15210
|
+
check_type(argname="argument allowed_values", value=allowed_values, expected_type=type_hints["allowed_values"])
|
|
15211
|
+
check_type(argname="argument default_value", value=default_value, expected_type=type_hints["default_value"])
|
|
15212
|
+
check_type(argname="argument max_value", value=max_value, expected_type=type_hints["max_value"])
|
|
15213
|
+
check_type(argname="argument min_value", value=min_value, expected_type=type_hints["min_value"])
|
|
15214
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
15215
|
+
if allowed_values is not None:
|
|
15216
|
+
self._values["allowed_values"] = allowed_values
|
|
15217
|
+
if default_value is not None:
|
|
15218
|
+
self._values["default_value"] = default_value
|
|
15219
|
+
if max_value is not None:
|
|
15220
|
+
self._values["max_value"] = max_value
|
|
15221
|
+
if min_value is not None:
|
|
15222
|
+
self._values["min_value"] = min_value
|
|
15223
|
+
|
|
15224
|
+
@builtins.property
|
|
15225
|
+
def allowed_values(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
15226
|
+
'''A list of allowed values for the parameter.
|
|
15227
|
+
|
|
15228
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html#cfn-glue-usageprofile-configurationobject-allowedvalues
|
|
15229
|
+
'''
|
|
15230
|
+
result = self._values.get("allowed_values")
|
|
15231
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
15232
|
+
|
|
15233
|
+
@builtins.property
|
|
15234
|
+
def default_value(self) -> typing.Optional[builtins.str]:
|
|
15235
|
+
'''A default value for the parameter.
|
|
15236
|
+
|
|
15237
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html#cfn-glue-usageprofile-configurationobject-defaultvalue
|
|
15238
|
+
'''
|
|
15239
|
+
result = self._values.get("default_value")
|
|
15240
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15241
|
+
|
|
15242
|
+
@builtins.property
|
|
15243
|
+
def max_value(self) -> typing.Optional[builtins.str]:
|
|
15244
|
+
'''A maximum allowed value for the parameter.
|
|
15245
|
+
|
|
15246
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html#cfn-glue-usageprofile-configurationobject-maxvalue
|
|
15247
|
+
'''
|
|
15248
|
+
result = self._values.get("max_value")
|
|
15249
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15250
|
+
|
|
15251
|
+
@builtins.property
|
|
15252
|
+
def min_value(self) -> typing.Optional[builtins.str]:
|
|
15253
|
+
'''A minimum allowed value for the parameter.
|
|
15254
|
+
|
|
15255
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html#cfn-glue-usageprofile-configurationobject-minvalue
|
|
15256
|
+
'''
|
|
15257
|
+
result = self._values.get("min_value")
|
|
15258
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15259
|
+
|
|
15260
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
15261
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
15262
|
+
|
|
15263
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
15264
|
+
return not (rhs == self)
|
|
15265
|
+
|
|
15266
|
+
def __repr__(self) -> str:
|
|
15267
|
+
return "ConfigurationObjectProperty(%s)" % ", ".join(
|
|
15268
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
15269
|
+
)
|
|
15270
|
+
|
|
15271
|
+
@jsii.data_type(
|
|
15272
|
+
jsii_type="aws-cdk-lib.aws_glue.CfnUsageProfile.ProfileConfigurationProperty",
|
|
15273
|
+
jsii_struct_bases=[],
|
|
15274
|
+
name_mapping={
|
|
15275
|
+
"job_configuration": "jobConfiguration",
|
|
15276
|
+
"session_configuration": "sessionConfiguration",
|
|
15277
|
+
},
|
|
15278
|
+
)
|
|
15279
|
+
class ProfileConfigurationProperty:
|
|
15280
|
+
def __init__(
|
|
15281
|
+
self,
|
|
15282
|
+
*,
|
|
15283
|
+
job_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnUsageProfile.ConfigurationObjectProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
15284
|
+
session_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnUsageProfile.ConfigurationObjectProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
15285
|
+
) -> None:
|
|
15286
|
+
'''Specifies the job and session values that an admin configures in an AWS Glue usage profile.
|
|
15287
|
+
|
|
15288
|
+
:param job_configuration: A key-value map of configuration parameters for AWS Glue jobs.
|
|
15289
|
+
:param session_configuration: A key-value map of configuration parameters for AWS Glue sessions.
|
|
15290
|
+
|
|
15291
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-profileconfiguration.html
|
|
15292
|
+
:exampleMetadata: fixture=_generated
|
|
15293
|
+
|
|
15294
|
+
Example::
|
|
15295
|
+
|
|
15296
|
+
# The code below shows an example of how to instantiate this type.
|
|
15297
|
+
# The values are placeholders you should change.
|
|
15298
|
+
from aws_cdk import aws_glue as glue
|
|
15299
|
+
|
|
15300
|
+
profile_configuration_property = glue.CfnUsageProfile.ProfileConfigurationProperty(
|
|
15301
|
+
job_configuration={
|
|
15302
|
+
"job_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty(
|
|
15303
|
+
allowed_values=["allowedValues"],
|
|
15304
|
+
default_value="defaultValue",
|
|
15305
|
+
max_value="maxValue",
|
|
15306
|
+
min_value="minValue"
|
|
15307
|
+
)
|
|
15308
|
+
},
|
|
15309
|
+
session_configuration={
|
|
15310
|
+
"session_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty(
|
|
15311
|
+
allowed_values=["allowedValues"],
|
|
15312
|
+
default_value="defaultValue",
|
|
15313
|
+
max_value="maxValue",
|
|
15314
|
+
min_value="minValue"
|
|
15315
|
+
)
|
|
15316
|
+
}
|
|
15317
|
+
)
|
|
15318
|
+
'''
|
|
15319
|
+
if __debug__:
|
|
15320
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4baf090b6a43b458d781d98d7bbd0625045db44ca6926d8b4b7bb58261fbcf3e)
|
|
15321
|
+
check_type(argname="argument job_configuration", value=job_configuration, expected_type=type_hints["job_configuration"])
|
|
15322
|
+
check_type(argname="argument session_configuration", value=session_configuration, expected_type=type_hints["session_configuration"])
|
|
15323
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
15324
|
+
if job_configuration is not None:
|
|
15325
|
+
self._values["job_configuration"] = job_configuration
|
|
15326
|
+
if session_configuration is not None:
|
|
15327
|
+
self._values["session_configuration"] = session_configuration
|
|
15328
|
+
|
|
15329
|
+
@builtins.property
|
|
15330
|
+
def job_configuration(
|
|
15331
|
+
self,
|
|
15332
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnUsageProfile.ConfigurationObjectProperty"]]]]:
|
|
15333
|
+
'''A key-value map of configuration parameters for AWS Glue jobs.
|
|
15334
|
+
|
|
15335
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-profileconfiguration.html#cfn-glue-usageprofile-profileconfiguration-jobconfiguration
|
|
15336
|
+
'''
|
|
15337
|
+
result = self._values.get("job_configuration")
|
|
15338
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnUsageProfile.ConfigurationObjectProperty"]]]], result)
|
|
15339
|
+
|
|
15340
|
+
@builtins.property
|
|
15341
|
+
def session_configuration(
|
|
15342
|
+
self,
|
|
15343
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnUsageProfile.ConfigurationObjectProperty"]]]]:
|
|
15344
|
+
'''A key-value map of configuration parameters for AWS Glue sessions.
|
|
15345
|
+
|
|
15346
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-profileconfiguration.html#cfn-glue-usageprofile-profileconfiguration-sessionconfiguration
|
|
15347
|
+
'''
|
|
15348
|
+
result = self._values.get("session_configuration")
|
|
15349
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnUsageProfile.ConfigurationObjectProperty"]]]], result)
|
|
15350
|
+
|
|
15351
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
15352
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
15353
|
+
|
|
15354
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
15355
|
+
return not (rhs == self)
|
|
15356
|
+
|
|
15357
|
+
def __repr__(self) -> str:
|
|
15358
|
+
return "ProfileConfigurationProperty(%s)" % ", ".join(
|
|
15359
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
15360
|
+
)
|
|
15361
|
+
|
|
15143
15362
|
|
|
15144
15363
|
@jsii.data_type(
|
|
15145
15364
|
jsii_type="aws-cdk-lib.aws_glue.CfnUsageProfileProps",
|
|
15146
15365
|
jsii_struct_bases=[],
|
|
15147
|
-
name_mapping={
|
|
15366
|
+
name_mapping={
|
|
15367
|
+
"name": "name",
|
|
15368
|
+
"configuration": "configuration",
|
|
15369
|
+
"description": "description",
|
|
15370
|
+
"tags": "tags",
|
|
15371
|
+
},
|
|
15148
15372
|
)
|
|
15149
15373
|
class CfnUsageProfileProps:
|
|
15150
15374
|
def __init__(
|
|
15151
15375
|
self,
|
|
15152
15376
|
*,
|
|
15153
15377
|
name: builtins.str,
|
|
15378
|
+
configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnUsageProfile.ProfileConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15154
15379
|
description: typing.Optional[builtins.str] = None,
|
|
15155
15380
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15156
15381
|
) -> None:
|
|
15157
15382
|
'''Properties for defining a ``CfnUsageProfile``.
|
|
15158
15383
|
|
|
15159
15384
|
:param name: The name of the usage profile.
|
|
15385
|
+
:param configuration:
|
|
15160
15386
|
:param description: A description of the usage profile.
|
|
15161
15387
|
:param tags: The tags to be applied to this UsageProfiles.
|
|
15162
15388
|
|
|
@@ -15173,6 +15399,24 @@ class CfnUsageProfileProps:
|
|
|
15173
15399
|
name="name",
|
|
15174
15400
|
|
|
15175
15401
|
# the properties below are optional
|
|
15402
|
+
configuration=glue.CfnUsageProfile.ProfileConfigurationProperty(
|
|
15403
|
+
job_configuration={
|
|
15404
|
+
"job_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty(
|
|
15405
|
+
allowed_values=["allowedValues"],
|
|
15406
|
+
default_value="defaultValue",
|
|
15407
|
+
max_value="maxValue",
|
|
15408
|
+
min_value="minValue"
|
|
15409
|
+
)
|
|
15410
|
+
},
|
|
15411
|
+
session_configuration={
|
|
15412
|
+
"session_configuration_key": glue.CfnUsageProfile.ConfigurationObjectProperty(
|
|
15413
|
+
allowed_values=["allowedValues"],
|
|
15414
|
+
default_value="defaultValue",
|
|
15415
|
+
max_value="maxValue",
|
|
15416
|
+
min_value="minValue"
|
|
15417
|
+
)
|
|
15418
|
+
}
|
|
15419
|
+
),
|
|
15176
15420
|
description="description",
|
|
15177
15421
|
tags=[CfnTag(
|
|
15178
15422
|
key="key",
|
|
@@ -15183,11 +15427,14 @@ class CfnUsageProfileProps:
|
|
|
15183
15427
|
if __debug__:
|
|
15184
15428
|
type_hints = typing.get_type_hints(_typecheckingstub__be3c5b9721453aa0bc8630055cb2a1fa015c3fde4feb4c18424a9ed6f85b5406)
|
|
15185
15429
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
15430
|
+
check_type(argname="argument configuration", value=configuration, expected_type=type_hints["configuration"])
|
|
15186
15431
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
15187
15432
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
15188
15433
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
15189
15434
|
"name": name,
|
|
15190
15435
|
}
|
|
15436
|
+
if configuration is not None:
|
|
15437
|
+
self._values["configuration"] = configuration
|
|
15191
15438
|
if description is not None:
|
|
15192
15439
|
self._values["description"] = description
|
|
15193
15440
|
if tags is not None:
|
|
@@ -15203,6 +15450,16 @@ class CfnUsageProfileProps:
|
|
|
15203
15450
|
assert result is not None, "Required property 'name' is missing"
|
|
15204
15451
|
return typing.cast(builtins.str, result)
|
|
15205
15452
|
|
|
15453
|
+
@builtins.property
|
|
15454
|
+
def configuration(
|
|
15455
|
+
self,
|
|
15456
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnUsageProfile.ProfileConfigurationProperty]]:
|
|
15457
|
+
'''
|
|
15458
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-configuration
|
|
15459
|
+
'''
|
|
15460
|
+
result = self._values.get("configuration")
|
|
15461
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnUsageProfile.ProfileConfigurationProperty]], result)
|
|
15462
|
+
|
|
15206
15463
|
@builtins.property
|
|
15207
15464
|
def description(self) -> typing.Optional[builtins.str]:
|
|
15208
15465
|
'''A description of the usage profile.
|
|
@@ -17066,10 +17323,10 @@ def _typecheckingstub__6c24fd21e2dfff4073f4fd8235eb4e6907b6a19fef52a7e12e6cc3279
|
|
|
17066
17323
|
compatibility: builtins.str,
|
|
17067
17324
|
data_format: builtins.str,
|
|
17068
17325
|
name: builtins.str,
|
|
17069
|
-
schema_definition: builtins.str,
|
|
17070
17326
|
checkpoint_version: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSchema.SchemaVersionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17071
17327
|
description: typing.Optional[builtins.str] = None,
|
|
17072
17328
|
registry: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSchema.RegistryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17329
|
+
schema_definition: typing.Optional[builtins.str] = None,
|
|
17073
17330
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17074
17331
|
) -> None:
|
|
17075
17332
|
"""Type checking stubs"""
|
|
@@ -17105,12 +17362,6 @@ def _typecheckingstub__ff3dcb47edaa294c6caf2b08476ad6ab296e0af75fac6f4cff50f7d07
|
|
|
17105
17362
|
"""Type checking stubs"""
|
|
17106
17363
|
pass
|
|
17107
17364
|
|
|
17108
|
-
def _typecheckingstub__0425f83d697fdeb65b7ad72b89add3f188c811ceb74503e3deeda6f8fd774134(
|
|
17109
|
-
value: builtins.str,
|
|
17110
|
-
) -> None:
|
|
17111
|
-
"""Type checking stubs"""
|
|
17112
|
-
pass
|
|
17113
|
-
|
|
17114
17365
|
def _typecheckingstub__2e496b746565a2a907c7b308108c0f360ed6e1d756d065268762427d0c0195ca(
|
|
17115
17366
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnSchema.SchemaVersionProperty]],
|
|
17116
17367
|
) -> None:
|
|
@@ -17129,6 +17380,12 @@ def _typecheckingstub__d9180e06f6739c2a1783c2974f71f4a42d49ca8423d693d37b0c96b31
|
|
|
17129
17380
|
"""Type checking stubs"""
|
|
17130
17381
|
pass
|
|
17131
17382
|
|
|
17383
|
+
def _typecheckingstub__0425f83d697fdeb65b7ad72b89add3f188c811ceb74503e3deeda6f8fd774134(
|
|
17384
|
+
value: typing.Optional[builtins.str],
|
|
17385
|
+
) -> None:
|
|
17386
|
+
"""Type checking stubs"""
|
|
17387
|
+
pass
|
|
17388
|
+
|
|
17132
17389
|
def _typecheckingstub__2060d4f7f98e703465a1d2f6e55970d3e0767652cb30c60bd1dfb69101403c47(
|
|
17133
17390
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
17134
17391
|
) -> None:
|
|
@@ -17156,10 +17413,10 @@ def _typecheckingstub__cbb4fb2ee83fa315d5be44ea6b3b74388d44b2e9cd9fac352aa28801b
|
|
|
17156
17413
|
compatibility: builtins.str,
|
|
17157
17414
|
data_format: builtins.str,
|
|
17158
17415
|
name: builtins.str,
|
|
17159
|
-
schema_definition: builtins.str,
|
|
17160
17416
|
checkpoint_version: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSchema.SchemaVersionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17161
17417
|
description: typing.Optional[builtins.str] = None,
|
|
17162
17418
|
registry: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSchema.RegistryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17419
|
+
schema_definition: typing.Optional[builtins.str] = None,
|
|
17163
17420
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17164
17421
|
) -> None:
|
|
17165
17422
|
"""Type checking stubs"""
|
|
@@ -17744,6 +18001,7 @@ def _typecheckingstub__e7218caa3227d549ee6ae3f63083c402f9b57ee1e7764a3646a34f5e1
|
|
|
17744
18001
|
id: builtins.str,
|
|
17745
18002
|
*,
|
|
17746
18003
|
name: builtins.str,
|
|
18004
|
+
configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnUsageProfile.ProfileConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17747
18005
|
description: typing.Optional[builtins.str] = None,
|
|
17748
18006
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17749
18007
|
) -> None:
|
|
@@ -17768,6 +18026,12 @@ def _typecheckingstub__684c428549d29ad8532c5e606008c4b929d5880614743b1c10d6c5d50
|
|
|
17768
18026
|
"""Type checking stubs"""
|
|
17769
18027
|
pass
|
|
17770
18028
|
|
|
18029
|
+
def _typecheckingstub__836be4c4a58ceadcb2de9519a85712cea791d4357ba3a806e22bbd3e87d9744c(
|
|
18030
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnUsageProfile.ProfileConfigurationProperty]],
|
|
18031
|
+
) -> None:
|
|
18032
|
+
"""Type checking stubs"""
|
|
18033
|
+
pass
|
|
18034
|
+
|
|
17771
18035
|
def _typecheckingstub__0c384f6773b216fb00e1ed093c336ae81d5fc2503152c5ab6dd4d11cb90395ac(
|
|
17772
18036
|
value: typing.Optional[builtins.str],
|
|
17773
18037
|
) -> None:
|
|
@@ -17780,9 +18044,28 @@ def _typecheckingstub__74c36563c0f5c0a37025a4d18000f949fb67163cc9702362a13a4e795
|
|
|
17780
18044
|
"""Type checking stubs"""
|
|
17781
18045
|
pass
|
|
17782
18046
|
|
|
18047
|
+
def _typecheckingstub__8acb5926ab7b8b723d811c6d3d87fbbb90062b45be0cfe303b1c2514d558e91e(
|
|
18048
|
+
*,
|
|
18049
|
+
allowed_values: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
18050
|
+
default_value: typing.Optional[builtins.str] = None,
|
|
18051
|
+
max_value: typing.Optional[builtins.str] = None,
|
|
18052
|
+
min_value: typing.Optional[builtins.str] = None,
|
|
18053
|
+
) -> None:
|
|
18054
|
+
"""Type checking stubs"""
|
|
18055
|
+
pass
|
|
18056
|
+
|
|
18057
|
+
def _typecheckingstub__4baf090b6a43b458d781d98d7bbd0625045db44ca6926d8b4b7bb58261fbcf3e(
|
|
18058
|
+
*,
|
|
18059
|
+
job_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnUsageProfile.ConfigurationObjectProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
18060
|
+
session_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnUsageProfile.ConfigurationObjectProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
18061
|
+
) -> None:
|
|
18062
|
+
"""Type checking stubs"""
|
|
18063
|
+
pass
|
|
18064
|
+
|
|
17783
18065
|
def _typecheckingstub__be3c5b9721453aa0bc8630055cb2a1fa015c3fde4feb4c18424a9ed6f85b5406(
|
|
17784
18066
|
*,
|
|
17785
18067
|
name: builtins.str,
|
|
18068
|
+
configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnUsageProfile.ProfileConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17786
18069
|
description: typing.Optional[builtins.str] = None,
|
|
17787
18070
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17788
18071
|
) -> None:
|