aws-cdk-lib 2.189.0__py3-none-any.whl → 2.190.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 +16 -2
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.189.0.jsii.tgz → aws-cdk-lib@2.190.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +6 -6
- aws_cdk/aws_apigatewayv2/__init__.py +374 -6
- aws_cdk/aws_applicationautoscaling/__init__.py +16 -10
- aws_cdk/aws_applicationsignals/__init__.py +204 -31
- aws_cdk/aws_backup/__init__.py +0 -41
- aws_cdk/aws_batch/__init__.py +215 -0
- aws_cdk/aws_bedrock/__init__.py +287 -0
- aws_cdk/aws_cleanrooms/__init__.py +1392 -78
- aws_cdk/aws_cloudfront/__init__.py +1 -0
- aws_cdk/aws_cloudtrail/__init__.py +24 -26
- aws_cdk/aws_codebuild/__init__.py +59 -7
- aws_cdk/aws_dms/__init__.py +43 -0
- aws_cdk/aws_ec2/__init__.py +364 -30
- aws_cdk/aws_ecs/__init__.py +36 -5
- aws_cdk/aws_eks/__init__.py +2 -100
- aws_cdk/aws_elasticache/__init__.py +6 -11
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +341 -0
- aws_cdk/aws_events/__init__.py +67 -13
- aws_cdk/aws_fsx/__init__.py +9 -21
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iot/__init__.py +6 -6
- aws_cdk/aws_kafkaconnect/__init__.py +2 -2
- aws_cdk/aws_kinesis/__init__.py +44 -0
- aws_cdk/aws_lex/__init__.py +615 -39
- aws_cdk/aws_location/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +14 -3
- aws_cdk/aws_memorydb/__init__.py +87 -0
- aws_cdk/aws_msk/__init__.py +226 -127
- aws_cdk/aws_neptune/__init__.py +0 -8
- aws_cdk/aws_opensearchservice/__init__.py +64 -56
- aws_cdk/aws_paymentcryptography/__init__.py +41 -0
- aws_cdk/aws_qbusiness/__init__.py +175 -3
- aws_cdk/aws_quicksight/__init__.py +393 -0
- aws_cdk/aws_rds/__init__.py +113 -120
- aws_cdk/aws_redshiftserverless/__init__.py +4 -14
- aws_cdk/aws_route53resolver/__init__.py +60 -9
- aws_cdk/aws_s3/__init__.py +34 -1
- aws_cdk/aws_s3_deployment/__init__.py +202 -5
- aws_cdk/aws_sagemaker/__init__.py +40 -40
- aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
- aws_cdk/aws_stepfunctions/__init__.py +720 -45
- aws_cdk/aws_transfer/__init__.py +55 -2
- aws_cdk/custom_resources/__init__.py +5 -5
- aws_cdk/pipelines/__init__.py +1 -2
- {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/RECORD +53 -53
- {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_neptune/__init__.py
CHANGED
|
@@ -2710,14 +2710,6 @@ class CfnDBSubnetGroup(
|
|
|
2710
2710
|
'''The CloudFormation resource type name for this resource class.'''
|
|
2711
2711
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
2712
2712
|
|
|
2713
|
-
@builtins.property
|
|
2714
|
-
@jsii.member(jsii_name="attrId")
|
|
2715
|
-
def attr_id(self) -> builtins.str:
|
|
2716
|
-
'''
|
|
2717
|
-
:cloudformationAttribute: Id
|
|
2718
|
-
'''
|
|
2719
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
2720
|
-
|
|
2721
2713
|
@builtins.property
|
|
2722
2714
|
@jsii.member(jsii_name="cfnProperties")
|
|
2723
2715
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -940,7 +940,9 @@ class CfnApplication(
|
|
|
940
940
|
metaclass=jsii.JSIIMeta,
|
|
941
941
|
jsii_type="aws-cdk-lib.aws_opensearchservice.CfnApplication",
|
|
942
942
|
):
|
|
943
|
-
'''Creates an OpenSearch
|
|
943
|
+
'''Creates an OpenSearch UI application.
|
|
944
|
+
|
|
945
|
+
For more information, see `Using the OpenSearch user interface in Amazon OpenSearch Service <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/application.html>`_ .
|
|
944
946
|
|
|
945
947
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html
|
|
946
948
|
:cloudformationResource: AWS::OpenSearchService::Application
|
|
@@ -994,11 +996,11 @@ class CfnApplication(
|
|
|
994
996
|
'''
|
|
995
997
|
:param scope: Scope in which this resource is defined.
|
|
996
998
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
997
|
-
:param name:
|
|
999
|
+
:param name: The name of an OpenSearch application.
|
|
998
1000
|
:param app_configs: List of application configurations.
|
|
999
1001
|
:param data_sources: List of data sources.
|
|
1000
|
-
:param endpoint:
|
|
1001
|
-
:param iam_identity_center_options:
|
|
1002
|
+
:param endpoint: The endpoint URL of an OpenSearch application.
|
|
1003
|
+
:param iam_identity_center_options: Settings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources. This setup supports single sign-on (SSO) through IAM Identity Center, allowing centralized user management.
|
|
1002
1004
|
:param tags: An arbitrary set of tags (key-value pairs) for this application.
|
|
1003
1005
|
'''
|
|
1004
1006
|
if __debug__:
|
|
@@ -1060,7 +1062,7 @@ class CfnApplication(
|
|
|
1060
1062
|
@builtins.property
|
|
1061
1063
|
@jsii.member(jsii_name="attrId")
|
|
1062
1064
|
def attr_id(self) -> builtins.str:
|
|
1063
|
-
'''
|
|
1065
|
+
'''The unique identifier of an OpenSearch application.
|
|
1064
1066
|
|
|
1065
1067
|
:cloudformationAttribute: Id
|
|
1066
1068
|
'''
|
|
@@ -1080,7 +1082,7 @@ class CfnApplication(
|
|
|
1080
1082
|
@builtins.property
|
|
1081
1083
|
@jsii.member(jsii_name="name")
|
|
1082
1084
|
def name(self) -> builtins.str:
|
|
1083
|
-
'''
|
|
1085
|
+
'''The name of an OpenSearch application.'''
|
|
1084
1086
|
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
1085
1087
|
|
|
1086
1088
|
@name.setter
|
|
@@ -1129,7 +1131,7 @@ class CfnApplication(
|
|
|
1129
1131
|
@builtins.property
|
|
1130
1132
|
@jsii.member(jsii_name="endpoint")
|
|
1131
1133
|
def endpoint(self) -> typing.Optional[builtins.str]:
|
|
1132
|
-
'''
|
|
1134
|
+
'''The endpoint URL of an OpenSearch application.'''
|
|
1133
1135
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "endpoint"))
|
|
1134
1136
|
|
|
1135
1137
|
@endpoint.setter
|
|
@@ -1144,7 +1146,7 @@ class CfnApplication(
|
|
|
1144
1146
|
def iam_identity_center_options(
|
|
1145
1147
|
self,
|
|
1146
1148
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.IamIdentityCenterOptionsProperty"]]:
|
|
1147
|
-
'''
|
|
1149
|
+
'''Settings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources.'''
|
|
1148
1150
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.IamIdentityCenterOptionsProperty"]], jsii.get(self, "iamIdentityCenterOptions"))
|
|
1149
1151
|
|
|
1150
1152
|
@iam_identity_center_options.setter
|
|
@@ -1177,10 +1179,12 @@ class CfnApplication(
|
|
|
1177
1179
|
)
|
|
1178
1180
|
class AppConfigProperty:
|
|
1179
1181
|
def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
|
|
1180
|
-
'''
|
|
1182
|
+
'''Configuration settings for an OpenSearch application.
|
|
1183
|
+
|
|
1184
|
+
For more information, see see `Using the OpenSearch user interface in Amazon OpenSearch Service <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/application.html>`_ .
|
|
1181
1185
|
|
|
1182
|
-
:param key:
|
|
1183
|
-
:param value:
|
|
1186
|
+
:param key: The configuration item to set, such as the admin role for the OpenSearch application.
|
|
1187
|
+
:param value: The value assigned to the configuration key, such as an IAM user ARN.
|
|
1184
1188
|
|
|
1185
1189
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-application-appconfig.html
|
|
1186
1190
|
:exampleMetadata: fixture=_generated
|
|
@@ -1207,7 +1211,7 @@ class CfnApplication(
|
|
|
1207
1211
|
|
|
1208
1212
|
@builtins.property
|
|
1209
1213
|
def key(self) -> builtins.str:
|
|
1210
|
-
'''
|
|
1214
|
+
'''The configuration item to set, such as the admin role for the OpenSearch application.
|
|
1211
1215
|
|
|
1212
1216
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-application-appconfig.html#cfn-opensearchservice-application-appconfig-key
|
|
1213
1217
|
'''
|
|
@@ -1217,7 +1221,7 @@ class CfnApplication(
|
|
|
1217
1221
|
|
|
1218
1222
|
@builtins.property
|
|
1219
1223
|
def value(self) -> builtins.str:
|
|
1220
|
-
'''
|
|
1224
|
+
'''The value assigned to the configuration key, such as an IAM user ARN.
|
|
1221
1225
|
|
|
1222
1226
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-application-appconfig.html#cfn-opensearchservice-application-appconfig-value
|
|
1223
1227
|
'''
|
|
@@ -1251,7 +1255,7 @@ class CfnApplication(
|
|
|
1251
1255
|
data_source_arn: builtins.str,
|
|
1252
1256
|
data_source_description: typing.Optional[builtins.str] = None,
|
|
1253
1257
|
) -> None:
|
|
1254
|
-
'''Data sources that are associated with an OpenSearch
|
|
1258
|
+
'''Data sources that are associated with an OpenSearch application.
|
|
1255
1259
|
|
|
1256
1260
|
:param data_source_arn: Amazon Resource Name (ARN) format.
|
|
1257
1261
|
:param data_source_description: Detailed description of a data source.
|
|
@@ -1329,11 +1333,11 @@ class CfnApplication(
|
|
|
1329
1333
|
iam_identity_center_instance_arn: typing.Optional[builtins.str] = None,
|
|
1330
1334
|
iam_role_for_identity_center_application_arn: typing.Optional[builtins.str] = None,
|
|
1331
1335
|
) -> None:
|
|
1332
|
-
'''
|
|
1336
|
+
'''Configuration settings for IAM Identity Center in an OpenSearch application.
|
|
1333
1337
|
|
|
1334
|
-
:param enabled: IAM Identity Center is enabled for the OpenSearch
|
|
1338
|
+
:param enabled: Indicates whether IAM Identity Center is enabled for the OpenSearch application.
|
|
1335
1339
|
:param iam_identity_center_instance_arn: Amazon Resource Name (ARN) format.
|
|
1336
|
-
:param iam_role_for_identity_center_application_arn: Amazon Resource Name of the IAM Identity Center
|
|
1340
|
+
:param iam_role_for_identity_center_application_arn: The Amazon Resource Name (ARN) of the IAM role assigned to the IAM Identity Center application for the OpenSearch application.
|
|
1337
1341
|
|
|
1338
1342
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-application-iamidentitycenteroptions.html
|
|
1339
1343
|
:exampleMetadata: fixture=_generated
|
|
@@ -1367,7 +1371,7 @@ class CfnApplication(
|
|
|
1367
1371
|
def enabled(
|
|
1368
1372
|
self,
|
|
1369
1373
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
1370
|
-
'''IAM Identity Center is enabled for the OpenSearch
|
|
1374
|
+
'''Indicates whether IAM Identity Center is enabled for the OpenSearch application.
|
|
1371
1375
|
|
|
1372
1376
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-application-iamidentitycenteroptions.html#cfn-opensearchservice-application-iamidentitycenteroptions-enabled
|
|
1373
1377
|
'''
|
|
@@ -1387,7 +1391,7 @@ class CfnApplication(
|
|
|
1387
1391
|
def iam_role_for_identity_center_application_arn(
|
|
1388
1392
|
self,
|
|
1389
1393
|
) -> typing.Optional[builtins.str]:
|
|
1390
|
-
'''Amazon Resource Name of the IAM Identity Center
|
|
1394
|
+
'''The Amazon Resource Name (ARN) of the IAM role assigned to the IAM Identity Center application for the OpenSearch application.
|
|
1391
1395
|
|
|
1392
1396
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-application-iamidentitycenteroptions.html#cfn-opensearchservice-application-iamidentitycenteroptions-iamroleforidentitycenterapplicationarn
|
|
1393
1397
|
'''
|
|
@@ -1431,11 +1435,11 @@ class CfnApplicationProps:
|
|
|
1431
1435
|
) -> None:
|
|
1432
1436
|
'''Properties for defining a ``CfnApplication``.
|
|
1433
1437
|
|
|
1434
|
-
:param name:
|
|
1438
|
+
:param name: The name of an OpenSearch application.
|
|
1435
1439
|
:param app_configs: List of application configurations.
|
|
1436
1440
|
:param data_sources: List of data sources.
|
|
1437
|
-
:param endpoint:
|
|
1438
|
-
:param iam_identity_center_options:
|
|
1441
|
+
:param endpoint: The endpoint URL of an OpenSearch application.
|
|
1442
|
+
:param iam_identity_center_options: Settings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources. This setup supports single sign-on (SSO) through IAM Identity Center, allowing centralized user management.
|
|
1439
1443
|
:param tags: An arbitrary set of tags (key-value pairs) for this application.
|
|
1440
1444
|
|
|
1441
1445
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html
|
|
@@ -1497,7 +1501,7 @@ class CfnApplicationProps:
|
|
|
1497
1501
|
|
|
1498
1502
|
@builtins.property
|
|
1499
1503
|
def name(self) -> builtins.str:
|
|
1500
|
-
'''
|
|
1504
|
+
'''The name of an OpenSearch application.
|
|
1501
1505
|
|
|
1502
1506
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-name
|
|
1503
1507
|
'''
|
|
@@ -1529,7 +1533,7 @@ class CfnApplicationProps:
|
|
|
1529
1533
|
|
|
1530
1534
|
@builtins.property
|
|
1531
1535
|
def endpoint(self) -> typing.Optional[builtins.str]:
|
|
1532
|
-
'''
|
|
1536
|
+
'''The endpoint URL of an OpenSearch application.
|
|
1533
1537
|
|
|
1534
1538
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-endpoint
|
|
1535
1539
|
'''
|
|
@@ -1540,7 +1544,9 @@ class CfnApplicationProps:
|
|
|
1540
1544
|
def iam_identity_center_options(
|
|
1541
1545
|
self,
|
|
1542
1546
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.IamIdentityCenterOptionsProperty]]:
|
|
1543
|
-
'''
|
|
1547
|
+
'''Settings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources.
|
|
1548
|
+
|
|
1549
|
+
This setup supports single sign-on (SSO) through IAM Identity Center, allowing centralized user management.
|
|
1544
1550
|
|
|
1545
1551
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-iamidentitycenteroptions
|
|
1546
1552
|
'''
|
|
@@ -1761,7 +1767,7 @@ class CfnDomain(
|
|
|
1761
1767
|
:param ebs_options: The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain. For more information, see `EBS volume size limits <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/limits.html#ebsresource>`_ in the *Amazon OpenSearch Service Developer Guide* .
|
|
1762
1768
|
:param encryption_at_rest_options: Whether the domain should encrypt data at rest, and if so, the AWS KMS key to use. See `Encryption of data at rest for Amazon OpenSearch Service <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/encryption-at-rest.html>`_ . If no encryption at rest options were initially specified in the template, updating this property by adding it causes no interruption. However, if you change this property after it's already been set within a template, the domain is deleted and recreated in order to modify the property.
|
|
1763
1769
|
:param engine_version: The version of OpenSearch to use. The value must be in the format ``OpenSearch_X.Y`` or ``Elasticsearch_X.Y`` . If not specified, the latest version of OpenSearch is used. For information about the versions that OpenSearch Service supports, see `Supported versions of OpenSearch and Elasticsearch <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/what-is.html#choosing-version>`_ in the *Amazon OpenSearch Service Developer Guide* . If you set the `EnableVersionUpgrade <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html#cfn-attributes-updatepolicy-upgradeopensearchdomain>`_ update policy to ``true`` , you can update ``EngineVersion`` without interruption. When ``EnableVersionUpgrade`` is set to ``false`` , or is not specified, updating ``EngineVersion`` results in `replacement <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement>`_ .
|
|
1764
|
-
:param identity_center_options:
|
|
1770
|
+
:param identity_center_options: Configuration options for controlling IAM Identity Center integration within a domain.
|
|
1765
1771
|
:param ip_address_type: Choose either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option. If you set your IP address type to dual stack, you can't change your address type later.
|
|
1766
1772
|
:param log_publishing_options: An object with one or more of the following keys: ``SEARCH_SLOW_LOGS`` , ``ES_APPLICATION_LOGS`` , ``INDEX_SLOW_LOGS`` , ``AUDIT_LOGS`` , depending on the types of logs you want to publish. Each key needs a valid ``LogPublishingOption`` value. For the full syntax, see the `examples <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html#aws-resource-opensearchservice-domain--examples>`_ .
|
|
1767
1773
|
:param node_to_node_encryption_options: Specifies whether node-to-node encryption is enabled. See `Node-to-node encryption for Amazon OpenSearch Service <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/ntn.html>`_ .
|
|
@@ -1898,7 +1904,7 @@ class CfnDomain(
|
|
|
1898
1904
|
def attr_identity_center_options_identity_center_application_arn(
|
|
1899
1905
|
self,
|
|
1900
1906
|
) -> builtins.str:
|
|
1901
|
-
'''The ARN
|
|
1907
|
+
'''The ARN of the IAM Identity Center application that integrates with Amazon OpenSearch Service.
|
|
1902
1908
|
|
|
1903
1909
|
:cloudformationAttribute: IdentityCenterOptions.IdentityCenterApplicationARN
|
|
1904
1910
|
'''
|
|
@@ -1907,7 +1913,7 @@ class CfnDomain(
|
|
|
1907
1913
|
@builtins.property
|
|
1908
1914
|
@jsii.member(jsii_name="attrIdentityCenterOptionsIdentityStoreId")
|
|
1909
1915
|
def attr_identity_center_options_identity_store_id(self) -> builtins.str:
|
|
1910
|
-
'''The
|
|
1916
|
+
'''The identifier of the IAM Identity Store.
|
|
1911
1917
|
|
|
1912
1918
|
:cloudformationAttribute: IdentityCenterOptions.IdentityStoreId
|
|
1913
1919
|
'''
|
|
@@ -2180,7 +2186,7 @@ class CfnDomain(
|
|
|
2180
2186
|
def identity_center_options(
|
|
2181
2187
|
self,
|
|
2182
2188
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.IdentityCenterOptionsProperty"]]:
|
|
2183
|
-
'''
|
|
2189
|
+
'''Configuration options for controlling IAM Identity Center integration within a domain.'''
|
|
2184
2190
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.IdentityCenterOptionsProperty"]], jsii.get(self, "identityCenterOptions"))
|
|
2185
2191
|
|
|
2186
2192
|
@identity_center_options.setter
|
|
@@ -3372,14 +3378,16 @@ class CfnDomain(
|
|
|
3372
3378
|
roles_key: typing.Optional[builtins.str] = None,
|
|
3373
3379
|
subject_key: typing.Optional[builtins.str] = None,
|
|
3374
3380
|
) -> None:
|
|
3375
|
-
'''
|
|
3381
|
+
'''Settings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources.
|
|
3382
|
+
|
|
3383
|
+
This setup supports single sign-on (SSO) through IAM Identity Center, allowing centralized user management.
|
|
3376
3384
|
|
|
3377
|
-
:param enabled_api_access:
|
|
3378
|
-
:param identity_center_application_arn: The ARN
|
|
3379
|
-
:param identity_center_instance_arn: The ARN
|
|
3380
|
-
:param identity_store_id: The
|
|
3381
|
-
:param roles_key:
|
|
3382
|
-
:param subject_key:
|
|
3385
|
+
:param enabled_api_access: Indicates whether IAM Identity Center is enabled for the application.
|
|
3386
|
+
:param identity_center_application_arn: The ARN of the IAM Identity Center application that integrates with Amazon OpenSearch Service.
|
|
3387
|
+
:param identity_center_instance_arn: The Amazon Resource Name (ARN) of the IAM Identity Center instance.
|
|
3388
|
+
:param identity_store_id: The identifier of the IAM Identity Store.
|
|
3389
|
+
:param roles_key: Specifies the attribute that contains the backend role identifier (such as group name or group ID) in IAM Identity Center.
|
|
3390
|
+
:param subject_key: Specifies the attribute that contains the subject identifier (such as username, user ID, or email) in IAM Identity Center.
|
|
3383
3391
|
|
|
3384
3392
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html
|
|
3385
3393
|
:exampleMetadata: fixture=_generated
|
|
@@ -3425,7 +3433,7 @@ class CfnDomain(
|
|
|
3425
3433
|
def enabled_api_access(
|
|
3426
3434
|
self,
|
|
3427
3435
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3428
|
-
'''
|
|
3436
|
+
'''Indicates whether IAM Identity Center is enabled for the application.
|
|
3429
3437
|
|
|
3430
3438
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html#cfn-opensearchservice-domain-identitycenteroptions-enabledapiaccess
|
|
3431
3439
|
'''
|
|
@@ -3434,7 +3442,7 @@ class CfnDomain(
|
|
|
3434
3442
|
|
|
3435
3443
|
@builtins.property
|
|
3436
3444
|
def identity_center_application_arn(self) -> typing.Optional[builtins.str]:
|
|
3437
|
-
'''The ARN
|
|
3445
|
+
'''The ARN of the IAM Identity Center application that integrates with Amazon OpenSearch Service.
|
|
3438
3446
|
|
|
3439
3447
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html#cfn-opensearchservice-domain-identitycenteroptions-identitycenterapplicationarn
|
|
3440
3448
|
'''
|
|
@@ -3443,7 +3451,7 @@ class CfnDomain(
|
|
|
3443
3451
|
|
|
3444
3452
|
@builtins.property
|
|
3445
3453
|
def identity_center_instance_arn(self) -> typing.Optional[builtins.str]:
|
|
3446
|
-
'''The ARN
|
|
3454
|
+
'''The Amazon Resource Name (ARN) of the IAM Identity Center instance.
|
|
3447
3455
|
|
|
3448
3456
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html#cfn-opensearchservice-domain-identitycenteroptions-identitycenterinstancearn
|
|
3449
3457
|
'''
|
|
@@ -3452,7 +3460,7 @@ class CfnDomain(
|
|
|
3452
3460
|
|
|
3453
3461
|
@builtins.property
|
|
3454
3462
|
def identity_store_id(self) -> typing.Optional[builtins.str]:
|
|
3455
|
-
'''The
|
|
3463
|
+
'''The identifier of the IAM Identity Store.
|
|
3456
3464
|
|
|
3457
3465
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html#cfn-opensearchservice-domain-identitycenteroptions-identitystoreid
|
|
3458
3466
|
'''
|
|
@@ -3461,7 +3469,7 @@ class CfnDomain(
|
|
|
3461
3469
|
|
|
3462
3470
|
@builtins.property
|
|
3463
3471
|
def roles_key(self) -> typing.Optional[builtins.str]:
|
|
3464
|
-
'''
|
|
3472
|
+
'''Specifies the attribute that contains the backend role identifier (such as group name or group ID) in IAM Identity Center.
|
|
3465
3473
|
|
|
3466
3474
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html#cfn-opensearchservice-domain-identitycenteroptions-roleskey
|
|
3467
3475
|
'''
|
|
@@ -3470,7 +3478,7 @@ class CfnDomain(
|
|
|
3470
3478
|
|
|
3471
3479
|
@builtins.property
|
|
3472
3480
|
def subject_key(self) -> typing.Optional[builtins.str]:
|
|
3473
|
-
'''
|
|
3481
|
+
'''Specifies the attribute that contains the subject identifier (such as username, user ID, or email) in IAM Identity Center.
|
|
3474
3482
|
|
|
3475
3483
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html#cfn-opensearchservice-domain-identitycenteroptions-subjectkey
|
|
3476
3484
|
'''
|
|
@@ -3854,11 +3862,11 @@ class CfnDomain(
|
|
|
3854
3862
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3855
3863
|
type: typing.Optional[builtins.str] = None,
|
|
3856
3864
|
) -> None:
|
|
3857
|
-
'''
|
|
3865
|
+
'''Configuration options for defining the setup of any node type within the cluster.
|
|
3858
3866
|
|
|
3859
|
-
:param count: The number of nodes of a
|
|
3860
|
-
:param enabled: A boolean
|
|
3861
|
-
:param type: The instance type of a particular node
|
|
3867
|
+
:param count: The number of nodes of a specific type within the cluster.
|
|
3868
|
+
:param enabled: A boolean value indicating whether a specific node type is active or inactive.
|
|
3869
|
+
:param type: The instance type of a particular node within the cluster.
|
|
3862
3870
|
|
|
3863
3871
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeconfig.html
|
|
3864
3872
|
:exampleMetadata: fixture=_generated
|
|
@@ -3890,7 +3898,7 @@ class CfnDomain(
|
|
|
3890
3898
|
|
|
3891
3899
|
@builtins.property
|
|
3892
3900
|
def count(self) -> typing.Optional[jsii.Number]:
|
|
3893
|
-
'''The number of nodes of a
|
|
3901
|
+
'''The number of nodes of a specific type within the cluster.
|
|
3894
3902
|
|
|
3895
3903
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeconfig.html#cfn-opensearchservice-domain-nodeconfig-count
|
|
3896
3904
|
'''
|
|
@@ -3901,7 +3909,7 @@ class CfnDomain(
|
|
|
3901
3909
|
def enabled(
|
|
3902
3910
|
self,
|
|
3903
3911
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3904
|
-
'''A boolean
|
|
3912
|
+
'''A boolean value indicating whether a specific node type is active or inactive.
|
|
3905
3913
|
|
|
3906
3914
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeconfig.html#cfn-opensearchservice-domain-nodeconfig-enabled
|
|
3907
3915
|
'''
|
|
@@ -3910,7 +3918,7 @@ class CfnDomain(
|
|
|
3910
3918
|
|
|
3911
3919
|
@builtins.property
|
|
3912
3920
|
def type(self) -> typing.Optional[builtins.str]:
|
|
3913
|
-
'''The instance type of a particular node
|
|
3921
|
+
'''The instance type of a particular node within the cluster.
|
|
3914
3922
|
|
|
3915
3923
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeconfig.html#cfn-opensearchservice-domain-nodeconfig-type
|
|
3916
3924
|
'''
|
|
@@ -3940,10 +3948,10 @@ class CfnDomain(
|
|
|
3940
3948
|
node_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.NodeConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3941
3949
|
node_type: typing.Optional[builtins.str] = None,
|
|
3942
3950
|
) -> None:
|
|
3943
|
-
'''
|
|
3951
|
+
'''Configuration settings for defining the node type within a cluster.
|
|
3944
3952
|
|
|
3945
|
-
:param node_config:
|
|
3946
|
-
:param node_type:
|
|
3953
|
+
:param node_config: Configuration options for defining the setup of any node type.
|
|
3954
|
+
:param node_type: Defines the type of node, such as coordinating nodes.
|
|
3947
3955
|
|
|
3948
3956
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html
|
|
3949
3957
|
:exampleMetadata: fixture=_generated
|
|
@@ -3977,7 +3985,7 @@ class CfnDomain(
|
|
|
3977
3985
|
def node_config(
|
|
3978
3986
|
self,
|
|
3979
3987
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.NodeConfigProperty"]]:
|
|
3980
|
-
'''
|
|
3988
|
+
'''Configuration options for defining the setup of any node type.
|
|
3981
3989
|
|
|
3982
3990
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html#cfn-opensearchservice-domain-nodeoption-nodeconfig
|
|
3983
3991
|
'''
|
|
@@ -3986,7 +3994,7 @@ class CfnDomain(
|
|
|
3986
3994
|
|
|
3987
3995
|
@builtins.property
|
|
3988
3996
|
def node_type(self) -> typing.Optional[builtins.str]:
|
|
3989
|
-
'''
|
|
3997
|
+
'''Defines the type of node, such as coordinating nodes.
|
|
3990
3998
|
|
|
3991
3999
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html#cfn-opensearchservice-domain-nodeoption-nodetype
|
|
3992
4000
|
'''
|
|
@@ -4952,7 +4960,7 @@ class CfnDomainProps:
|
|
|
4952
4960
|
:param ebs_options: The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain. For more information, see `EBS volume size limits <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/limits.html#ebsresource>`_ in the *Amazon OpenSearch Service Developer Guide* .
|
|
4953
4961
|
:param encryption_at_rest_options: Whether the domain should encrypt data at rest, and if so, the AWS KMS key to use. See `Encryption of data at rest for Amazon OpenSearch Service <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/encryption-at-rest.html>`_ . If no encryption at rest options were initially specified in the template, updating this property by adding it causes no interruption. However, if you change this property after it's already been set within a template, the domain is deleted and recreated in order to modify the property.
|
|
4954
4962
|
:param engine_version: The version of OpenSearch to use. The value must be in the format ``OpenSearch_X.Y`` or ``Elasticsearch_X.Y`` . If not specified, the latest version of OpenSearch is used. For information about the versions that OpenSearch Service supports, see `Supported versions of OpenSearch and Elasticsearch <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/what-is.html#choosing-version>`_ in the *Amazon OpenSearch Service Developer Guide* . If you set the `EnableVersionUpgrade <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html#cfn-attributes-updatepolicy-upgradeopensearchdomain>`_ update policy to ``true`` , you can update ``EngineVersion`` without interruption. When ``EnableVersionUpgrade`` is set to ``false`` , or is not specified, updating ``EngineVersion`` results in `replacement <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement>`_ .
|
|
4955
|
-
:param identity_center_options:
|
|
4963
|
+
:param identity_center_options: Configuration options for controlling IAM Identity Center integration within a domain.
|
|
4956
4964
|
:param ip_address_type: Choose either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option. If you set your IP address type to dual stack, you can't change your address type later.
|
|
4957
4965
|
:param log_publishing_options: An object with one or more of the following keys: ``SEARCH_SLOW_LOGS`` , ``ES_APPLICATION_LOGS`` , ``INDEX_SLOW_LOGS`` , ``AUDIT_LOGS`` , depending on the types of logs you want to publish. Each key needs a valid ``LogPublishingOption`` value. For the full syntax, see the `examples <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html#aws-resource-opensearchservice-domain--examples>`_ .
|
|
4958
4966
|
:param node_to_node_encryption_options: Specifies whether node-to-node encryption is enabled. See `Node-to-node encryption for Amazon OpenSearch Service <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/ntn.html>`_ .
|
|
@@ -5311,7 +5319,7 @@ class CfnDomainProps:
|
|
|
5311
5319
|
def identity_center_options(
|
|
5312
5320
|
self,
|
|
5313
5321
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomain.IdentityCenterOptionsProperty]]:
|
|
5314
|
-
'''
|
|
5322
|
+
'''Configuration options for controlling IAM Identity Center integration within a domain.
|
|
5315
5323
|
|
|
5316
5324
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html#cfn-opensearchservice-domain-identitycenteroptions
|
|
5317
5325
|
'''
|
|
@@ -343,6 +343,7 @@ class CfnKey(
|
|
|
343
343
|
),
|
|
344
344
|
|
|
345
345
|
# the properties below are optional
|
|
346
|
+
derive_key_usage="deriveKeyUsage",
|
|
346
347
|
enabled=False,
|
|
347
348
|
key_check_value_algorithm="keyCheckValueAlgorithm",
|
|
348
349
|
tags=[CfnTag(
|
|
@@ -359,6 +360,7 @@ class CfnKey(
|
|
|
359
360
|
*,
|
|
360
361
|
exportable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
361
362
|
key_attributes: typing.Union[_IResolvable_da3f097b, typing.Union["CfnKey.KeyAttributesProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
363
|
+
derive_key_usage: typing.Optional[builtins.str] = None,
|
|
362
364
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
363
365
|
key_check_value_algorithm: typing.Optional[builtins.str] = None,
|
|
364
366
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -368,6 +370,7 @@ class CfnKey(
|
|
|
368
370
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
369
371
|
:param exportable: Specifies whether the key is exportable. This data is immutable after the key is created.
|
|
370
372
|
:param key_attributes: The role of the key, the algorithm it supports, and the cryptographic operations allowed with the key. This data is immutable after the key is created.
|
|
373
|
+
:param derive_key_usage: The cryptographic usage of an ECDH derived key as defined in section A.5.2 of the TR-31 spec.
|
|
371
374
|
:param enabled: Specifies whether the key is enabled.
|
|
372
375
|
:param key_check_value_algorithm: The algorithm that AWS Payment Cryptography uses to calculate the key check value (KCV). It is used to validate the key integrity. For TDES keys, the KCV is computed by encrypting 8 bytes, each with value of zero, with the key to be checked and retaining the 3 highest order bytes of the encrypted result. For AES keys, the KCV is computed using a CMAC algorithm where the input data is 16 bytes of zero and retaining the 3 highest order bytes of the encrypted result.
|
|
373
376
|
:param tags:
|
|
@@ -379,6 +382,7 @@ class CfnKey(
|
|
|
379
382
|
props = CfnKeyProps(
|
|
380
383
|
exportable=exportable,
|
|
381
384
|
key_attributes=key_attributes,
|
|
385
|
+
derive_key_usage=derive_key_usage,
|
|
382
386
|
enabled=enabled,
|
|
383
387
|
key_check_value_algorithm=key_check_value_algorithm,
|
|
384
388
|
tags=tags,
|
|
@@ -489,6 +493,19 @@ class CfnKey(
|
|
|
489
493
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
490
494
|
jsii.set(self, "keyAttributes", value) # pyright: ignore[reportArgumentType]
|
|
491
495
|
|
|
496
|
+
@builtins.property
|
|
497
|
+
@jsii.member(jsii_name="deriveKeyUsage")
|
|
498
|
+
def derive_key_usage(self) -> typing.Optional[builtins.str]:
|
|
499
|
+
'''The cryptographic usage of an ECDH derived key as defined in section A.5.2 of the TR-31 spec.'''
|
|
500
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "deriveKeyUsage"))
|
|
501
|
+
|
|
502
|
+
@derive_key_usage.setter
|
|
503
|
+
def derive_key_usage(self, value: typing.Optional[builtins.str]) -> None:
|
|
504
|
+
if __debug__:
|
|
505
|
+
type_hints = typing.get_type_hints(_typecheckingstub__656be50ed219aff27971e773805f3ea7068f9738b74cc7d35f92f017614b969e)
|
|
506
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
507
|
+
jsii.set(self, "deriveKeyUsage", value) # pyright: ignore[reportArgumentType]
|
|
508
|
+
|
|
492
509
|
@builtins.property
|
|
493
510
|
@jsii.member(jsii_name="enabled")
|
|
494
511
|
def enabled(
|
|
@@ -883,6 +900,7 @@ class CfnKey(
|
|
|
883
900
|
name_mapping={
|
|
884
901
|
"exportable": "exportable",
|
|
885
902
|
"key_attributes": "keyAttributes",
|
|
903
|
+
"derive_key_usage": "deriveKeyUsage",
|
|
886
904
|
"enabled": "enabled",
|
|
887
905
|
"key_check_value_algorithm": "keyCheckValueAlgorithm",
|
|
888
906
|
"tags": "tags",
|
|
@@ -894,6 +912,7 @@ class CfnKeyProps:
|
|
|
894
912
|
*,
|
|
895
913
|
exportable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
896
914
|
key_attributes: typing.Union[_IResolvable_da3f097b, typing.Union[CfnKey.KeyAttributesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
915
|
+
derive_key_usage: typing.Optional[builtins.str] = None,
|
|
897
916
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
898
917
|
key_check_value_algorithm: typing.Optional[builtins.str] = None,
|
|
899
918
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -902,6 +921,7 @@ class CfnKeyProps:
|
|
|
902
921
|
|
|
903
922
|
:param exportable: Specifies whether the key is exportable. This data is immutable after the key is created.
|
|
904
923
|
:param key_attributes: The role of the key, the algorithm it supports, and the cryptographic operations allowed with the key. This data is immutable after the key is created.
|
|
924
|
+
:param derive_key_usage: The cryptographic usage of an ECDH derived key as defined in section A.5.2 of the TR-31 spec.
|
|
905
925
|
:param enabled: Specifies whether the key is enabled.
|
|
906
926
|
:param key_check_value_algorithm: The algorithm that AWS Payment Cryptography uses to calculate the key check value (KCV). It is used to validate the key integrity. For TDES keys, the KCV is computed by encrypting 8 bytes, each with value of zero, with the key to be checked and retaining the 3 highest order bytes of the encrypted result. For AES keys, the KCV is computed using a CMAC algorithm where the input data is 16 bytes of zero and retaining the 3 highest order bytes of the encrypted result.
|
|
907
927
|
:param tags:
|
|
@@ -935,6 +955,7 @@ class CfnKeyProps:
|
|
|
935
955
|
),
|
|
936
956
|
|
|
937
957
|
# the properties below are optional
|
|
958
|
+
derive_key_usage="deriveKeyUsage",
|
|
938
959
|
enabled=False,
|
|
939
960
|
key_check_value_algorithm="keyCheckValueAlgorithm",
|
|
940
961
|
tags=[CfnTag(
|
|
@@ -947,6 +968,7 @@ class CfnKeyProps:
|
|
|
947
968
|
type_hints = typing.get_type_hints(_typecheckingstub__1ba44ca0d377189c3fde668037b0b7a8a9ee19fc052286d570ba26e888b2cf78)
|
|
948
969
|
check_type(argname="argument exportable", value=exportable, expected_type=type_hints["exportable"])
|
|
949
970
|
check_type(argname="argument key_attributes", value=key_attributes, expected_type=type_hints["key_attributes"])
|
|
971
|
+
check_type(argname="argument derive_key_usage", value=derive_key_usage, expected_type=type_hints["derive_key_usage"])
|
|
950
972
|
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
951
973
|
check_type(argname="argument key_check_value_algorithm", value=key_check_value_algorithm, expected_type=type_hints["key_check_value_algorithm"])
|
|
952
974
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -954,6 +976,8 @@ class CfnKeyProps:
|
|
|
954
976
|
"exportable": exportable,
|
|
955
977
|
"key_attributes": key_attributes,
|
|
956
978
|
}
|
|
979
|
+
if derive_key_usage is not None:
|
|
980
|
+
self._values["derive_key_usage"] = derive_key_usage
|
|
957
981
|
if enabled is not None:
|
|
958
982
|
self._values["enabled"] = enabled
|
|
959
983
|
if key_check_value_algorithm is not None:
|
|
@@ -987,6 +1011,15 @@ class CfnKeyProps:
|
|
|
987
1011
|
assert result is not None, "Required property 'key_attributes' is missing"
|
|
988
1012
|
return typing.cast(typing.Union[_IResolvable_da3f097b, CfnKey.KeyAttributesProperty], result)
|
|
989
1013
|
|
|
1014
|
+
@builtins.property
|
|
1015
|
+
def derive_key_usage(self) -> typing.Optional[builtins.str]:
|
|
1016
|
+
'''The cryptographic usage of an ECDH derived key as defined in section A.5.2 of the TR-31 spec.
|
|
1017
|
+
|
|
1018
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html#cfn-paymentcryptography-key-derivekeyusage
|
|
1019
|
+
'''
|
|
1020
|
+
result = self._values.get("derive_key_usage")
|
|
1021
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1022
|
+
|
|
990
1023
|
@builtins.property
|
|
991
1024
|
def enabled(
|
|
992
1025
|
self,
|
|
@@ -1088,6 +1121,7 @@ def _typecheckingstub__eae3f8af01ec3a496044e22e7d1ce2b96cf8f20736ded57ce899a918f
|
|
|
1088
1121
|
*,
|
|
1089
1122
|
exportable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1090
1123
|
key_attributes: typing.Union[_IResolvable_da3f097b, typing.Union[CfnKey.KeyAttributesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
1124
|
+
derive_key_usage: typing.Optional[builtins.str] = None,
|
|
1091
1125
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1092
1126
|
key_check_value_algorithm: typing.Optional[builtins.str] = None,
|
|
1093
1127
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -1119,6 +1153,12 @@ def _typecheckingstub__509385bb900abd87d7e9680c46b008a76766e5f51864d21972df261f9
|
|
|
1119
1153
|
"""Type checking stubs"""
|
|
1120
1154
|
pass
|
|
1121
1155
|
|
|
1156
|
+
def _typecheckingstub__656be50ed219aff27971e773805f3ea7068f9738b74cc7d35f92f017614b969e(
|
|
1157
|
+
value: typing.Optional[builtins.str],
|
|
1158
|
+
) -> None:
|
|
1159
|
+
"""Type checking stubs"""
|
|
1160
|
+
pass
|
|
1161
|
+
|
|
1122
1162
|
def _typecheckingstub__1defb803536cf97ac83055a5760a6073dfc007fbfe2b34f9a774538091a30ef3(
|
|
1123
1163
|
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
1124
1164
|
) -> None:
|
|
@@ -1166,6 +1206,7 @@ def _typecheckingstub__1ba44ca0d377189c3fde668037b0b7a8a9ee19fc052286d570ba26e88
|
|
|
1166
1206
|
*,
|
|
1167
1207
|
exportable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1168
1208
|
key_attributes: typing.Union[_IResolvable_da3f097b, typing.Union[CfnKey.KeyAttributesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
1209
|
+
derive_key_usage: typing.Optional[builtins.str] = None,
|
|
1169
1210
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1170
1211
|
key_check_value_algorithm: typing.Optional[builtins.str] = None,
|
|
1171
1212
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|