aws-cdk-lib 2.140.0__py3-none-any.whl → 2.142.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.140.0.jsii.tgz → aws-cdk-lib@2.142.0.jsii.tgz} +0 -0
- aws_cdk/aws_appsync/__init__.py +224 -94
- aws_cdk/aws_autoscaling/__init__.py +109 -25
- aws_cdk/aws_bedrock/__init__.py +51 -41
- aws_cdk/aws_cloudfront/__init__.py +34 -78
- aws_cdk/aws_cloudtrail/__init__.py +13 -4
- aws_cdk/aws_codepipeline/__init__.py +364 -27
- aws_cdk/aws_connectcampaigns/__init__.py +2 -2
- aws_cdk/aws_datasync/__init__.py +51 -56
- aws_cdk/aws_docdb/__init__.py +181 -4
- aws_cdk/aws_dynamodb/__init__.py +410 -0
- aws_cdk/aws_ec2/__init__.py +91 -42
- aws_cdk/aws_ecr/__init__.py +32 -7
- aws_cdk/aws_ecs/__init__.py +65 -18
- aws_cdk/aws_eks/__init__.py +36 -3
- aws_cdk/aws_entityresolution/__init__.py +6 -2
- aws_cdk/aws_events/__init__.py +46 -25
- aws_cdk/aws_events_targets/__init__.py +341 -0
- aws_cdk/aws_fms/__init__.py +7 -7
- aws_cdk/aws_gamelift/__init__.py +261 -160
- aws_cdk/aws_iam/__init__.py +13 -8
- aws_cdk/aws_ivs/__init__.py +1 -3
- aws_cdk/aws_kms/__init__.py +11 -5
- aws_cdk/aws_lambda_nodejs/__init__.py +3 -0
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_logs/__init__.py +6 -6
- aws_cdk/aws_oam/__init__.py +45 -11
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_paymentcryptography/__init__.py +128 -48
- aws_cdk/aws_pinpoint/__init__.py +7 -5
- aws_cdk/aws_qbusiness/__init__.py +620 -294
- aws_cdk/aws_quicksight/__init__.py +103 -40
- aws_cdk/aws_rds/__init__.py +80 -16
- aws_cdk/aws_route53profiles/__init__.py +49 -49
- aws_cdk/aws_s3/__init__.py +9 -2
- aws_cdk/aws_sagemaker/__init__.py +30 -30
- aws_cdk/aws_servicecatalog/__init__.py +27 -4
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_stepfunctions_tasks/__init__.py +7 -6
- aws_cdk/aws_transfer/__init__.py +4 -4
- aws_cdk/aws_voiceid/__init__.py +2 -2
- {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/METADATA +10 -2
- {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/RECORD +49 -49
- {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/top_level.txt +0 -0
|
@@ -70,7 +70,22 @@ class CfnAlias(
|
|
|
70
70
|
metaclass=jsii.JSIIMeta,
|
|
71
71
|
jsii_type="aws-cdk-lib.aws_paymentcryptography.CfnAlias",
|
|
72
72
|
):
|
|
73
|
-
'''
|
|
73
|
+
'''Creates an *alias* , or a friendly name, for an AWS Payment Cryptography key.
|
|
74
|
+
|
|
75
|
+
You can use an alias to identify a key in the console and when you call cryptographic operations such as `EncryptData <https://docs.aws.amazon.com/payment-cryptography/latest/DataAPIReference/API_EncryptData.html>`_ or `DecryptData <https://docs.aws.amazon.com/payment-cryptography/latest/DataAPIReference/API_DecryptData.html>`_ .
|
|
76
|
+
|
|
77
|
+
You can associate the alias with any key in the same AWS Region . Each alias is associated with only one key at a time, but a key can have multiple aliases. You can't create an alias without a key. The alias must be unique in the account and AWS Region , but you can create another alias with the same name in a different AWS Region .
|
|
78
|
+
|
|
79
|
+
To change the key that's associated with the alias, call `UpdateAlias <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_UpdateAlias.html>`_ . To delete the alias, call `DeleteAlias <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_DeleteAlias.html>`_ . These operations don't affect the underlying key. To get the alias that you created, call `ListAliases <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_ListAliases.html>`_ .
|
|
80
|
+
|
|
81
|
+
*Cross-account use* : This operation can't be used across different AWS accounts.
|
|
82
|
+
|
|
83
|
+
*Related operations:*
|
|
84
|
+
|
|
85
|
+
- `DeleteAlias <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_DeleteAlias.html>`_
|
|
86
|
+
- `GetAlias <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_GetAlias.html>`_
|
|
87
|
+
- `ListAliases <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_ListAliases.html>`_
|
|
88
|
+
- `UpdateAlias <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_UpdateAlias.html>`_
|
|
74
89
|
|
|
75
90
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-alias.html
|
|
76
91
|
:cloudformationResource: AWS::PaymentCryptography::Alias
|
|
@@ -101,8 +116,8 @@ class CfnAlias(
|
|
|
101
116
|
'''
|
|
102
117
|
:param scope: Scope in which this resource is defined.
|
|
103
118
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
104
|
-
:param alias_name:
|
|
105
|
-
:param key_arn:
|
|
119
|
+
:param alias_name: A friendly name that you can use to refer to a key. The value must begin with ``alias/`` . .. epigraph:: Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in AWS CloudTrail logs and other output.
|
|
120
|
+
:param key_arn: The ``KeyARN`` of the key associated with the alias.
|
|
106
121
|
'''
|
|
107
122
|
if __debug__:
|
|
108
123
|
type_hints = typing.get_type_hints(_typecheckingstub__03e3543c569149d753dcca4f9aa62f90766372bafcd1f94b89e73d5b425564e5)
|
|
@@ -150,6 +165,10 @@ class CfnAlias(
|
|
|
150
165
|
@builtins.property
|
|
151
166
|
@jsii.member(jsii_name="aliasName")
|
|
152
167
|
def alias_name(self) -> builtins.str:
|
|
168
|
+
'''A friendly name that you can use to refer to a key.
|
|
169
|
+
|
|
170
|
+
The value must begin with ``alias/`` .
|
|
171
|
+
'''
|
|
153
172
|
return typing.cast(builtins.str, jsii.get(self, "aliasName"))
|
|
154
173
|
|
|
155
174
|
@alias_name.setter
|
|
@@ -162,6 +181,7 @@ class CfnAlias(
|
|
|
162
181
|
@builtins.property
|
|
163
182
|
@jsii.member(jsii_name="keyArn")
|
|
164
183
|
def key_arn(self) -> typing.Optional[builtins.str]:
|
|
184
|
+
'''The ``KeyARN`` of the key associated with the alias.'''
|
|
165
185
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "keyArn"))
|
|
166
186
|
|
|
167
187
|
@key_arn.setter
|
|
@@ -186,8 +206,8 @@ class CfnAliasProps:
|
|
|
186
206
|
) -> None:
|
|
187
207
|
'''Properties for defining a ``CfnAlias``.
|
|
188
208
|
|
|
189
|
-
:param alias_name:
|
|
190
|
-
:param key_arn:
|
|
209
|
+
:param alias_name: A friendly name that you can use to refer to a key. The value must begin with ``alias/`` . .. epigraph:: Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in AWS CloudTrail logs and other output.
|
|
210
|
+
:param key_arn: The ``KeyARN`` of the key associated with the alias.
|
|
191
211
|
|
|
192
212
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-alias.html
|
|
193
213
|
:exampleMetadata: fixture=_generated
|
|
@@ -217,7 +237,12 @@ class CfnAliasProps:
|
|
|
217
237
|
|
|
218
238
|
@builtins.property
|
|
219
239
|
def alias_name(self) -> builtins.str:
|
|
220
|
-
'''
|
|
240
|
+
'''A friendly name that you can use to refer to a key. The value must begin with ``alias/`` .
|
|
241
|
+
|
|
242
|
+
.. epigraph::
|
|
243
|
+
|
|
244
|
+
Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in AWS CloudTrail logs and other output.
|
|
245
|
+
|
|
221
246
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-alias.html#cfn-paymentcryptography-alias-aliasname
|
|
222
247
|
'''
|
|
223
248
|
result = self._values.get("alias_name")
|
|
@@ -226,7 +251,8 @@ class CfnAliasProps:
|
|
|
226
251
|
|
|
227
252
|
@builtins.property
|
|
228
253
|
def key_arn(self) -> typing.Optional[builtins.str]:
|
|
229
|
-
'''
|
|
254
|
+
'''The ``KeyARN`` of the key associated with the alias.
|
|
255
|
+
|
|
230
256
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-alias.html#cfn-paymentcryptography-alias-keyarn
|
|
231
257
|
'''
|
|
232
258
|
result = self._values.get("key_arn")
|
|
@@ -250,7 +276,23 @@ class CfnKey(
|
|
|
250
276
|
metaclass=jsii.JSIIMeta,
|
|
251
277
|
jsii_type="aws-cdk-lib.aws_paymentcryptography.CfnKey",
|
|
252
278
|
):
|
|
253
|
-
'''
|
|
279
|
+
'''Creates an AWS Payment Cryptography key, a logical representation of a cryptographic key, that is unique in your account and AWS Region .
|
|
280
|
+
|
|
281
|
+
You use keys for cryptographic functions such as encryption and decryption.
|
|
282
|
+
|
|
283
|
+
In addition to the key material used in cryptographic operations, an AWS Payment Cryptography key includes metadata such as the key ARN, key usage, key origin, creation date, description, and key state.
|
|
284
|
+
|
|
285
|
+
When you create a key, you specify both immutable and mutable data about the key. The immutable data contains key attributes that define the scope and cryptographic operations that you can perform using the key, for example key class (example: ``SYMMETRIC_KEY`` ), key algorithm (example: ``TDES_2KEY`` ), key usage (example: ``TR31_P0_PIN_ENCRYPTION_KEY`` ) and key modes of use (example: ``Encrypt`` ). For information about valid combinations of key attributes, see `Understanding key attributes <https://docs.aws.amazon.com/payment-cryptography/latest/userguide/keys-validattributes.html>`_ in the *AWS Payment Cryptography User Guide* . The mutable data contained within a key includes usage timestamp and key deletion timestamp and can be modified after creation.
|
|
286
|
+
|
|
287
|
+
AWS Payment Cryptography binds key attributes to keys using key blocks when you store or export them. AWS Payment Cryptography stores the key contents wrapped and never stores or transmits them in the clear.
|
|
288
|
+
|
|
289
|
+
*Cross-account use* : This operation can't be used across different AWS accounts.
|
|
290
|
+
|
|
291
|
+
*Related operations:*
|
|
292
|
+
|
|
293
|
+
- `DeleteKey <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_DeleteKey.html>`_
|
|
294
|
+
- `GetKey <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_GetKey.html>`_
|
|
295
|
+
- `ListKeys <https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_ListKeys.html>`_
|
|
254
296
|
|
|
255
297
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html
|
|
256
298
|
:cloudformationResource: AWS::PaymentCryptography::Key
|
|
@@ -305,10 +347,10 @@ class CfnKey(
|
|
|
305
347
|
'''
|
|
306
348
|
:param scope: Scope in which this resource is defined.
|
|
307
349
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
308
|
-
:param exportable:
|
|
309
|
-
:param key_attributes:
|
|
310
|
-
:param enabled:
|
|
311
|
-
:param key_check_value_algorithm:
|
|
350
|
+
:param exportable: Specifies whether the key is exportable. This data is immutable after the key is created.
|
|
351
|
+
: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.
|
|
352
|
+
:param enabled: Specifies whether the key is enabled.
|
|
353
|
+
: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.
|
|
312
354
|
:param tags:
|
|
313
355
|
'''
|
|
314
356
|
if __debug__:
|
|
@@ -366,7 +408,9 @@ class CfnKey(
|
|
|
366
408
|
@builtins.property
|
|
367
409
|
@jsii.member(jsii_name="attrKeyOrigin")
|
|
368
410
|
def attr_key_origin(self) -> builtins.str:
|
|
369
|
-
'''
|
|
411
|
+
'''The source of the key material.
|
|
412
|
+
|
|
413
|
+
For keys created within AWS Payment Cryptography, the value is ``AWS_PAYMENT_CRYPTOGRAPHY`` . For keys imported into AWS Payment Cryptography, the value is ``EXTERNAL`` .
|
|
370
414
|
|
|
371
415
|
:cloudformationAttribute: KeyOrigin
|
|
372
416
|
'''
|
|
@@ -375,7 +419,7 @@ class CfnKey(
|
|
|
375
419
|
@builtins.property
|
|
376
420
|
@jsii.member(jsii_name="attrKeyState")
|
|
377
421
|
def attr_key_state(self) -> builtins.str:
|
|
378
|
-
'''
|
|
422
|
+
'''The state of key that is being created or deleted.
|
|
379
423
|
|
|
380
424
|
:cloudformationAttribute: KeyState
|
|
381
425
|
'''
|
|
@@ -395,6 +439,7 @@ class CfnKey(
|
|
|
395
439
|
@builtins.property
|
|
396
440
|
@jsii.member(jsii_name="exportable")
|
|
397
441
|
def exportable(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
442
|
+
'''Specifies whether the key is exportable.'''
|
|
398
443
|
return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], jsii.get(self, "exportable"))
|
|
399
444
|
|
|
400
445
|
@exportable.setter
|
|
@@ -412,6 +457,7 @@ class CfnKey(
|
|
|
412
457
|
def key_attributes(
|
|
413
458
|
self,
|
|
414
459
|
) -> typing.Union[_IResolvable_da3f097b, "CfnKey.KeyAttributesProperty"]:
|
|
460
|
+
'''The role of the key, the algorithm it supports, and the cryptographic operations allowed with the key.'''
|
|
415
461
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnKey.KeyAttributesProperty"], jsii.get(self, "keyAttributes"))
|
|
416
462
|
|
|
417
463
|
@key_attributes.setter
|
|
@@ -429,6 +475,7 @@ class CfnKey(
|
|
|
429
475
|
def enabled(
|
|
430
476
|
self,
|
|
431
477
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
478
|
+
'''Specifies whether the key is enabled.'''
|
|
432
479
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "enabled"))
|
|
433
480
|
|
|
434
481
|
@enabled.setter
|
|
@@ -444,6 +491,7 @@ class CfnKey(
|
|
|
444
491
|
@builtins.property
|
|
445
492
|
@jsii.member(jsii_name="keyCheckValueAlgorithm")
|
|
446
493
|
def key_check_value_algorithm(self) -> typing.Optional[builtins.str]:
|
|
494
|
+
'''The algorithm that AWS Payment Cryptography uses to calculate the key check value (KCV).'''
|
|
447
495
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "keyCheckValueAlgorithm"))
|
|
448
496
|
|
|
449
497
|
@key_check_value_algorithm.setter
|
|
@@ -484,11 +532,14 @@ class CfnKey(
|
|
|
484
532
|
key_modes_of_use: typing.Union[_IResolvable_da3f097b, typing.Union["CfnKey.KeyModesOfUseProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
485
533
|
key_usage: builtins.str,
|
|
486
534
|
) -> None:
|
|
487
|
-
'''
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
:param
|
|
535
|
+
'''The role of the key, the algorithm it supports, and the cryptographic operations allowed with the key.
|
|
536
|
+
|
|
537
|
+
This data is immutable after the key is created.
|
|
538
|
+
|
|
539
|
+
:param key_algorithm: The key algorithm to be use during creation of an AWS Payment Cryptography key. For symmetric keys, AWS Payment Cryptography supports ``AES`` and ``TDES`` algorithms. For asymmetric keys, AWS Payment Cryptography supports ``RSA`` and ``ECC_NIST`` algorithms.
|
|
540
|
+
:param key_class: The type of AWS Payment Cryptography key to create, which determines the classification of the cryptographic method and whether AWS Payment Cryptography key contains a symmetric key or an asymmetric key pair.
|
|
541
|
+
:param key_modes_of_use: The list of cryptographic operations that you can perform using the key.
|
|
542
|
+
:param key_usage: The cryptographic usage of an AWS Payment Cryptography key as defined in section A.5.2 of the TR-31 spec.
|
|
492
543
|
|
|
493
544
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyattributes.html
|
|
494
545
|
:exampleMetadata: fixture=_generated
|
|
@@ -531,7 +582,10 @@ class CfnKey(
|
|
|
531
582
|
|
|
532
583
|
@builtins.property
|
|
533
584
|
def key_algorithm(self) -> builtins.str:
|
|
534
|
-
'''
|
|
585
|
+
'''The key algorithm to be use during creation of an AWS Payment Cryptography key.
|
|
586
|
+
|
|
587
|
+
For symmetric keys, AWS Payment Cryptography supports ``AES`` and ``TDES`` algorithms. For asymmetric keys, AWS Payment Cryptography supports ``RSA`` and ``ECC_NIST`` algorithms.
|
|
588
|
+
|
|
535
589
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyattributes.html#cfn-paymentcryptography-key-keyattributes-keyalgorithm
|
|
536
590
|
'''
|
|
537
591
|
result = self._values.get("key_algorithm")
|
|
@@ -540,7 +594,8 @@ class CfnKey(
|
|
|
540
594
|
|
|
541
595
|
@builtins.property
|
|
542
596
|
def key_class(self) -> builtins.str:
|
|
543
|
-
'''
|
|
597
|
+
'''The type of AWS Payment Cryptography key to create, which determines the classification of the cryptographic method and whether AWS Payment Cryptography key contains a symmetric key or an asymmetric key pair.
|
|
598
|
+
|
|
544
599
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyattributes.html#cfn-paymentcryptography-key-keyattributes-keyclass
|
|
545
600
|
'''
|
|
546
601
|
result = self._values.get("key_class")
|
|
@@ -551,7 +606,8 @@ class CfnKey(
|
|
|
551
606
|
def key_modes_of_use(
|
|
552
607
|
self,
|
|
553
608
|
) -> typing.Union[_IResolvable_da3f097b, "CfnKey.KeyModesOfUseProperty"]:
|
|
554
|
-
'''
|
|
609
|
+
'''The list of cryptographic operations that you can perform using the key.
|
|
610
|
+
|
|
555
611
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyattributes.html#cfn-paymentcryptography-key-keyattributes-keymodesofuse
|
|
556
612
|
'''
|
|
557
613
|
result = self._values.get("key_modes_of_use")
|
|
@@ -560,7 +616,8 @@ class CfnKey(
|
|
|
560
616
|
|
|
561
617
|
@builtins.property
|
|
562
618
|
def key_usage(self) -> builtins.str:
|
|
563
|
-
'''
|
|
619
|
+
'''The cryptographic usage of an AWS Payment Cryptography key as defined in section A.5.2 of the TR-31 spec.
|
|
620
|
+
|
|
564
621
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyattributes.html#cfn-paymentcryptography-key-keyattributes-keyusage
|
|
565
622
|
'''
|
|
566
623
|
result = self._values.get("key_usage")
|
|
@@ -607,16 +664,19 @@ class CfnKey(
|
|
|
607
664
|
verify: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
608
665
|
wrap: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
609
666
|
) -> None:
|
|
610
|
-
'''
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
:param
|
|
615
|
-
:param
|
|
616
|
-
:param
|
|
667
|
+
'''The list of cryptographic operations that you can perform using the key.
|
|
668
|
+
|
|
669
|
+
The modes of use are defined in section A.5.3 of the TR-31 spec.
|
|
670
|
+
|
|
671
|
+
:param decrypt: Specifies whether an AWS Payment Cryptography key can be used to decrypt data. Default: - false
|
|
672
|
+
:param derive_key: Specifies whether an AWS Payment Cryptography key can be used to derive new keys. Default: - false
|
|
673
|
+
:param encrypt: Specifies whether an AWS Payment Cryptography key can be used to encrypt data. Default: - false
|
|
674
|
+
:param generate: Specifies whether an AWS Payment Cryptography key can be used to generate and verify other card and PIN verification keys. Default: - false
|
|
675
|
+
:param no_restrictions: Specifies whether an AWS Payment Cryptography key has no special restrictions other than the restrictions implied by ``KeyUsage`` . Default: - false
|
|
676
|
+
:param sign: Specifies whether an AWS Payment Cryptography key can be used for signing. Default: - false
|
|
617
677
|
:param unwrap: Default: - false
|
|
618
|
-
:param verify: Default: - false
|
|
619
|
-
:param wrap: Default: - false
|
|
678
|
+
:param verify: Specifies whether an AWS Payment Cryptography key can be used to verify signatures. Default: - false
|
|
679
|
+
:param wrap: Specifies whether an AWS Payment Cryptography key can be used to wrap other keys. Default: - false
|
|
620
680
|
|
|
621
681
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html
|
|
622
682
|
:exampleMetadata: fixture=_generated
|
|
@@ -674,7 +734,8 @@ class CfnKey(
|
|
|
674
734
|
def decrypt(
|
|
675
735
|
self,
|
|
676
736
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
677
|
-
'''
|
|
737
|
+
'''Specifies whether an AWS Payment Cryptography key can be used to decrypt data.
|
|
738
|
+
|
|
678
739
|
:default: - false
|
|
679
740
|
|
|
680
741
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-decrypt
|
|
@@ -686,7 +747,8 @@ class CfnKey(
|
|
|
686
747
|
def derive_key(
|
|
687
748
|
self,
|
|
688
749
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
689
|
-
'''
|
|
750
|
+
'''Specifies whether an AWS Payment Cryptography key can be used to derive new keys.
|
|
751
|
+
|
|
690
752
|
:default: - false
|
|
691
753
|
|
|
692
754
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-derivekey
|
|
@@ -698,7 +760,8 @@ class CfnKey(
|
|
|
698
760
|
def encrypt(
|
|
699
761
|
self,
|
|
700
762
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
701
|
-
'''
|
|
763
|
+
'''Specifies whether an AWS Payment Cryptography key can be used to encrypt data.
|
|
764
|
+
|
|
702
765
|
:default: - false
|
|
703
766
|
|
|
704
767
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-encrypt
|
|
@@ -710,7 +773,8 @@ class CfnKey(
|
|
|
710
773
|
def generate(
|
|
711
774
|
self,
|
|
712
775
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
713
|
-
'''
|
|
776
|
+
'''Specifies whether an AWS Payment Cryptography key can be used to generate and verify other card and PIN verification keys.
|
|
777
|
+
|
|
714
778
|
:default: - false
|
|
715
779
|
|
|
716
780
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-generate
|
|
@@ -722,7 +786,8 @@ class CfnKey(
|
|
|
722
786
|
def no_restrictions(
|
|
723
787
|
self,
|
|
724
788
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
725
|
-
'''
|
|
789
|
+
'''Specifies whether an AWS Payment Cryptography key has no special restrictions other than the restrictions implied by ``KeyUsage`` .
|
|
790
|
+
|
|
726
791
|
:default: - false
|
|
727
792
|
|
|
728
793
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-norestrictions
|
|
@@ -734,7 +799,8 @@ class CfnKey(
|
|
|
734
799
|
def sign(
|
|
735
800
|
self,
|
|
736
801
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
737
|
-
'''
|
|
802
|
+
'''Specifies whether an AWS Payment Cryptography key can be used for signing.
|
|
803
|
+
|
|
738
804
|
:default: - false
|
|
739
805
|
|
|
740
806
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-sign
|
|
@@ -758,7 +824,8 @@ class CfnKey(
|
|
|
758
824
|
def verify(
|
|
759
825
|
self,
|
|
760
826
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
761
|
-
'''
|
|
827
|
+
'''Specifies whether an AWS Payment Cryptography key can be used to verify signatures.
|
|
828
|
+
|
|
762
829
|
:default: - false
|
|
763
830
|
|
|
764
831
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-verify
|
|
@@ -770,7 +837,8 @@ class CfnKey(
|
|
|
770
837
|
def wrap(
|
|
771
838
|
self,
|
|
772
839
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
773
|
-
'''
|
|
840
|
+
'''Specifies whether an AWS Payment Cryptography key can be used to wrap other keys.
|
|
841
|
+
|
|
774
842
|
:default: - false
|
|
775
843
|
|
|
776
844
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keymodesofuse.html#cfn-paymentcryptography-key-keymodesofuse-wrap
|
|
@@ -813,10 +881,10 @@ class CfnKeyProps:
|
|
|
813
881
|
) -> None:
|
|
814
882
|
'''Properties for defining a ``CfnKey``.
|
|
815
883
|
|
|
816
|
-
:param exportable:
|
|
817
|
-
:param key_attributes:
|
|
818
|
-
:param enabled:
|
|
819
|
-
:param key_check_value_algorithm:
|
|
884
|
+
:param exportable: Specifies whether the key is exportable. This data is immutable after the key is created.
|
|
885
|
+
: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.
|
|
886
|
+
:param enabled: Specifies whether the key is enabled.
|
|
887
|
+
: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.
|
|
820
888
|
:param tags:
|
|
821
889
|
|
|
822
890
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html
|
|
@@ -876,7 +944,10 @@ class CfnKeyProps:
|
|
|
876
944
|
|
|
877
945
|
@builtins.property
|
|
878
946
|
def exportable(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
879
|
-
'''
|
|
947
|
+
'''Specifies whether the key is exportable.
|
|
948
|
+
|
|
949
|
+
This data is immutable after the key is created.
|
|
950
|
+
|
|
880
951
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html#cfn-paymentcryptography-key-exportable
|
|
881
952
|
'''
|
|
882
953
|
result = self._values.get("exportable")
|
|
@@ -887,7 +958,10 @@ class CfnKeyProps:
|
|
|
887
958
|
def key_attributes(
|
|
888
959
|
self,
|
|
889
960
|
) -> typing.Union[_IResolvable_da3f097b, CfnKey.KeyAttributesProperty]:
|
|
890
|
-
'''
|
|
961
|
+
'''The role of the key, the algorithm it supports, and the cryptographic operations allowed with the key.
|
|
962
|
+
|
|
963
|
+
This data is immutable after the key is created.
|
|
964
|
+
|
|
891
965
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html#cfn-paymentcryptography-key-keyattributes
|
|
892
966
|
'''
|
|
893
967
|
result = self._values.get("key_attributes")
|
|
@@ -898,7 +972,8 @@ class CfnKeyProps:
|
|
|
898
972
|
def enabled(
|
|
899
973
|
self,
|
|
900
974
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
901
|
-
'''
|
|
975
|
+
'''Specifies whether the key is enabled.
|
|
976
|
+
|
|
902
977
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html#cfn-paymentcryptography-key-enabled
|
|
903
978
|
'''
|
|
904
979
|
result = self._values.get("enabled")
|
|
@@ -906,7 +981,12 @@ class CfnKeyProps:
|
|
|
906
981
|
|
|
907
982
|
@builtins.property
|
|
908
983
|
def key_check_value_algorithm(self) -> typing.Optional[builtins.str]:
|
|
909
|
-
'''
|
|
984
|
+
'''The algorithm that AWS Payment Cryptography uses to calculate the key check value (KCV).
|
|
985
|
+
|
|
986
|
+
It is used to validate the key integrity.
|
|
987
|
+
|
|
988
|
+
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.
|
|
989
|
+
|
|
910
990
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html#cfn-paymentcryptography-key-keycheckvaluealgorithm
|
|
911
991
|
'''
|
|
912
992
|
result = self._values.get("key_check_value_algorithm")
|
aws_cdk/aws_pinpoint/__init__.py
CHANGED
|
@@ -5843,7 +5843,7 @@ class CfnCampaign(
|
|
|
5843
5843
|
:param baidu_message: The message that the campaign sends through the Baidu (Baidu Cloud Push) channel. If specified, this message overrides the default message.
|
|
5844
5844
|
:param custom_message: The message that the campaign sends through a custom channel, as specified by the delivery configuration ( ``CustomDeliveryConfiguration`` ) settings for the campaign. If specified, this message overrides the default message.
|
|
5845
5845
|
:param default_message: The default message that the campaign sends through all the channels that are configured for the campaign.
|
|
5846
|
-
:param email_message: The message that the campaign sends through the email channel. If specified, this message overrides the default message. .. epigraph:: The maximum email message size is
|
|
5846
|
+
:param email_message: The message that the campaign sends through the email channel. If specified, this message overrides the default message. .. epigraph:: The maximum email message size is 200 KB. You can use email templates to send larger email messages.
|
|
5847
5847
|
:param gcm_message: The message that the campaign sends through the GCM channel, which enables Amazon Pinpoint to send push notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service. If specified, this message overrides the default message.
|
|
5848
5848
|
:param in_app_message: The default message for the in-app messaging channel. This message overrides the default message ( ``DefaultMessage`` ).
|
|
5849
5849
|
:param sms_message: The message that the campaign sends through the SMS channel. If specified, this message overrides the default message.
|
|
@@ -6113,7 +6113,7 @@ class CfnCampaign(
|
|
|
6113
6113
|
|
|
6114
6114
|
.. epigraph::
|
|
6115
6115
|
|
|
6116
|
-
The maximum email message size is
|
|
6116
|
+
The maximum email message size is 200 KB. You can use email templates to send larger email messages.
|
|
6117
6117
|
|
|
6118
6118
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-messageconfiguration.html#cfn-pinpoint-campaign-messageconfiguration-emailmessage
|
|
6119
6119
|
'''
|
|
@@ -8277,7 +8277,7 @@ class CfnEmailChannel(
|
|
|
8277
8277
|
:param identity: The Amazon Resource Name (ARN) of the identity, verified with Amazon Simple Email Service (Amazon SES), that you want to use when you send email through the channel.
|
|
8278
8278
|
:param configuration_set: The `Amazon SES configuration set <https://docs.aws.amazon.com/ses/latest/APIReference/API_ConfigurationSet.html>`_ that you want to apply to messages that you send through the channel.
|
|
8279
8279
|
:param enabled: Specifies whether to enable the email channel for the application.
|
|
8280
|
-
:param orchestration_sending_role_arn:
|
|
8280
|
+
:param orchestration_sending_role_arn: The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES .
|
|
8281
8281
|
:param role_arn: The ARN of the AWS Identity and Access Management (IAM) role that you want Amazon Pinpoint to use when it submits email-related event data for the channel.
|
|
8282
8282
|
'''
|
|
8283
8283
|
if __debug__:
|
|
@@ -8415,6 +8415,7 @@ class CfnEmailChannel(
|
|
|
8415
8415
|
@builtins.property
|
|
8416
8416
|
@jsii.member(jsii_name="orchestrationSendingRoleArn")
|
|
8417
8417
|
def orchestration_sending_role_arn(self) -> typing.Optional[builtins.str]:
|
|
8418
|
+
'''The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES .'''
|
|
8418
8419
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "orchestrationSendingRoleArn"))
|
|
8419
8420
|
|
|
8420
8421
|
@orchestration_sending_role_arn.setter
|
|
@@ -8473,7 +8474,7 @@ class CfnEmailChannelProps:
|
|
|
8473
8474
|
:param identity: The Amazon Resource Name (ARN) of the identity, verified with Amazon Simple Email Service (Amazon SES), that you want to use when you send email through the channel.
|
|
8474
8475
|
:param configuration_set: The `Amazon SES configuration set <https://docs.aws.amazon.com/ses/latest/APIReference/API_ConfigurationSet.html>`_ that you want to apply to messages that you send through the channel.
|
|
8475
8476
|
:param enabled: Specifies whether to enable the email channel for the application.
|
|
8476
|
-
:param orchestration_sending_role_arn:
|
|
8477
|
+
:param orchestration_sending_role_arn: The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES .
|
|
8477
8478
|
:param role_arn: The ARN of the AWS Identity and Access Management (IAM) role that you want Amazon Pinpoint to use when it submits email-related event data for the channel.
|
|
8478
8479
|
|
|
8479
8480
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html
|
|
@@ -8572,7 +8573,8 @@ class CfnEmailChannelProps:
|
|
|
8572
8573
|
|
|
8573
8574
|
@builtins.property
|
|
8574
8575
|
def orchestration_sending_role_arn(self) -> typing.Optional[builtins.str]:
|
|
8575
|
-
'''
|
|
8576
|
+
'''The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES .
|
|
8577
|
+
|
|
8576
8578
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-emailchannel.html#cfn-pinpoint-emailchannel-orchestrationsendingrolearn
|
|
8577
8579
|
'''
|
|
8578
8580
|
result = self._values.get("orchestration_sending_role_arn")
|