aws-cdk-lib 2.139.1__py3-none-any.whl → 2.141.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 +8 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.139.1.jsii.tgz → aws-cdk-lib@2.141.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +70 -56
- aws_cdk/aws_apigateway/__init__.py +126 -53
- aws_cdk/aws_applicationautoscaling/__init__.py +1 -4
- aws_cdk/aws_arczonalshift/__init__.py +49 -44
- aws_cdk/aws_bedrock/__init__.py +2829 -147
- aws_cdk/aws_cloudfront/__init__.py +51 -9
- aws_cdk/aws_cloudtrail/__init__.py +13 -4
- aws_cdk/aws_codecommit/__init__.py +72 -46
- aws_cdk/aws_connectcampaigns/__init__.py +34 -4
- aws_cdk/aws_datasync/__init__.py +96 -75
- aws_cdk/aws_dms/__init__.py +0 -269
- aws_cdk/aws_dynamodb/__init__.py +410 -0
- aws_cdk/aws_ec2/__init__.py +239 -84
- aws_cdk/aws_ecr/__init__.py +32 -7
- aws_cdk/aws_ecs/__init__.py +2 -4
- aws_cdk/aws_efs/__init__.py +16 -2
- aws_cdk/aws_eks/__init__.py +57 -0
- aws_cdk/aws_entityresolution/__init__.py +6 -2
- aws_cdk/aws_events/__init__.py +115 -0
- aws_cdk/aws_events_targets/__init__.py +15 -0
- aws_cdk/aws_fis/__init__.py +2 -1
- aws_cdk/aws_fms/__init__.py +7 -7
- aws_cdk/aws_gamelift/__init__.py +1984 -107
- aws_cdk/aws_globalaccelerator/__init__.py +20 -16
- aws_cdk/aws_iam/__init__.py +2 -2
- aws_cdk/aws_ivs/__init__.py +1 -3
- aws_cdk/aws_kinesis/__init__.py +21 -0
- aws_cdk/aws_kinesisvideo/__init__.py +6 -4
- aws_cdk/aws_kms/__init__.py +33 -6
- aws_cdk/aws_lambda/__init__.py +0 -9
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_medialive/__init__.py +444 -3
- aws_cdk/aws_oam/__init__.py +45 -11
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_paymentcryptography/__init__.py +1155 -0
- aws_cdk/aws_personalize/__init__.py +8 -2
- aws_cdk/aws_pinpoint/__init__.py +7 -5
- aws_cdk/aws_qbusiness/__init__.py +5583 -0
- aws_cdk/aws_quicksight/__init__.py +10063 -1450
- aws_cdk/aws_rds/__init__.py +77 -5
- aws_cdk/aws_redshiftserverless/__init__.py +13 -9
- aws_cdk/aws_route53/__init__.py +350 -0
- aws_cdk/aws_route53profiles/__init__.py +1048 -0
- aws_cdk/aws_s3/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +30 -30
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_transfer/__init__.py +102 -37
- aws_cdk/aws_voiceid/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +92 -6
- aws_cdk/custom_resources/__init__.py +23 -2
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/RECORD +60 -57
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_transfer/__init__.py
CHANGED
|
@@ -998,6 +998,7 @@ class CfnConnector(
|
|
|
998
998
|
# the properties below are optional
|
|
999
999
|
as2_config=as2_config,
|
|
1000
1000
|
logging_role="loggingRole",
|
|
1001
|
+
security_policy_name="securityPolicyName",
|
|
1001
1002
|
sftp_config=transfer.CfnConnector.SftpConfigProperty(
|
|
1002
1003
|
trusted_host_keys=["trustedHostKeys"],
|
|
1003
1004
|
user_secret_id="userSecretId"
|
|
@@ -1018,6 +1019,7 @@ class CfnConnector(
|
|
|
1018
1019
|
url: builtins.str,
|
|
1019
1020
|
as2_config: typing.Any = None,
|
|
1020
1021
|
logging_role: typing.Optional[builtins.str] = None,
|
|
1022
|
+
security_policy_name: typing.Optional[builtins.str] = None,
|
|
1021
1023
|
sftp_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConnector.SftpConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1022
1024
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1023
1025
|
) -> None:
|
|
@@ -1028,6 +1030,7 @@ class CfnConnector(
|
|
|
1028
1030
|
:param url: The URL of the partner's AS2 or SFTP endpoint.
|
|
1029
1031
|
:param as2_config: A structure that contains the parameters for an AS2 connector object.
|
|
1030
1032
|
:param logging_role: The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a connector to turn on CloudWatch logging for Amazon S3 events. When set, you can view connector activity in your CloudWatch logs.
|
|
1033
|
+
:param security_policy_name: The text name of the security policy for the specified connector.
|
|
1031
1034
|
:param sftp_config: A structure that contains the parameters for an SFTP connector object.
|
|
1032
1035
|
:param tags: Key-value pairs that can be used to group and search for connectors.
|
|
1033
1036
|
'''
|
|
@@ -1040,6 +1043,7 @@ class CfnConnector(
|
|
|
1040
1043
|
url=url,
|
|
1041
1044
|
as2_config=as2_config,
|
|
1042
1045
|
logging_role=logging_role,
|
|
1046
|
+
security_policy_name=security_policy_name,
|
|
1043
1047
|
sftp_config=sftp_config,
|
|
1044
1048
|
tags=tags,
|
|
1045
1049
|
)
|
|
@@ -1094,6 +1098,17 @@ class CfnConnector(
|
|
|
1094
1098
|
'''
|
|
1095
1099
|
return typing.cast(builtins.str, jsii.get(self, "attrConnectorId"))
|
|
1096
1100
|
|
|
1101
|
+
@builtins.property
|
|
1102
|
+
@jsii.member(jsii_name="attrServiceManagedEgressIpAddresses")
|
|
1103
|
+
def attr_service_managed_egress_ip_addresses(self) -> typing.List[builtins.str]:
|
|
1104
|
+
'''The list of egress IP addresses of this connector.
|
|
1105
|
+
|
|
1106
|
+
These IP addresses are assigned automatically when you create the connector.
|
|
1107
|
+
|
|
1108
|
+
:cloudformationAttribute: ServiceManagedEgressIpAddresses
|
|
1109
|
+
'''
|
|
1110
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrServiceManagedEgressIpAddresses"))
|
|
1111
|
+
|
|
1097
1112
|
@builtins.property
|
|
1098
1113
|
@jsii.member(jsii_name="cfnProperties")
|
|
1099
1114
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -1157,6 +1172,19 @@ class CfnConnector(
|
|
|
1157
1172
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1158
1173
|
jsii.set(self, "loggingRole", value)
|
|
1159
1174
|
|
|
1175
|
+
@builtins.property
|
|
1176
|
+
@jsii.member(jsii_name="securityPolicyName")
|
|
1177
|
+
def security_policy_name(self) -> typing.Optional[builtins.str]:
|
|
1178
|
+
'''The text name of the security policy for the specified connector.'''
|
|
1179
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "securityPolicyName"))
|
|
1180
|
+
|
|
1181
|
+
@security_policy_name.setter
|
|
1182
|
+
def security_policy_name(self, value: typing.Optional[builtins.str]) -> None:
|
|
1183
|
+
if __debug__:
|
|
1184
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7c96b636b491e11ce074e40058c1620fda321bb7685ad3a5204502b6fdb4cc24)
|
|
1185
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1186
|
+
jsii.set(self, "securityPolicyName", value)
|
|
1187
|
+
|
|
1160
1188
|
@builtins.property
|
|
1161
1189
|
@jsii.member(jsii_name="sftpConfig")
|
|
1162
1190
|
def sftp_config(
|
|
@@ -1509,6 +1537,7 @@ class CfnConnector(
|
|
|
1509
1537
|
"url": "url",
|
|
1510
1538
|
"as2_config": "as2Config",
|
|
1511
1539
|
"logging_role": "loggingRole",
|
|
1540
|
+
"security_policy_name": "securityPolicyName",
|
|
1512
1541
|
"sftp_config": "sftpConfig",
|
|
1513
1542
|
"tags": "tags",
|
|
1514
1543
|
},
|
|
@@ -1521,6 +1550,7 @@ class CfnConnectorProps:
|
|
|
1521
1550
|
url: builtins.str,
|
|
1522
1551
|
as2_config: typing.Any = None,
|
|
1523
1552
|
logging_role: typing.Optional[builtins.str] = None,
|
|
1553
|
+
security_policy_name: typing.Optional[builtins.str] = None,
|
|
1524
1554
|
sftp_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnector.SftpConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1525
1555
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1526
1556
|
) -> None:
|
|
@@ -1530,6 +1560,7 @@ class CfnConnectorProps:
|
|
|
1530
1560
|
:param url: The URL of the partner's AS2 or SFTP endpoint.
|
|
1531
1561
|
:param as2_config: A structure that contains the parameters for an AS2 connector object.
|
|
1532
1562
|
:param logging_role: The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a connector to turn on CloudWatch logging for Amazon S3 events. When set, you can view connector activity in your CloudWatch logs.
|
|
1563
|
+
:param security_policy_name: The text name of the security policy for the specified connector.
|
|
1533
1564
|
:param sftp_config: A structure that contains the parameters for an SFTP connector object.
|
|
1534
1565
|
:param tags: Key-value pairs that can be used to group and search for connectors.
|
|
1535
1566
|
|
|
@@ -1551,6 +1582,7 @@ class CfnConnectorProps:
|
|
|
1551
1582
|
# the properties below are optional
|
|
1552
1583
|
as2_config=as2_config,
|
|
1553
1584
|
logging_role="loggingRole",
|
|
1585
|
+
security_policy_name="securityPolicyName",
|
|
1554
1586
|
sftp_config=transfer.CfnConnector.SftpConfigProperty(
|
|
1555
1587
|
trusted_host_keys=["trustedHostKeys"],
|
|
1556
1588
|
user_secret_id="userSecretId"
|
|
@@ -1567,6 +1599,7 @@ class CfnConnectorProps:
|
|
|
1567
1599
|
check_type(argname="argument url", value=url, expected_type=type_hints["url"])
|
|
1568
1600
|
check_type(argname="argument as2_config", value=as2_config, expected_type=type_hints["as2_config"])
|
|
1569
1601
|
check_type(argname="argument logging_role", value=logging_role, expected_type=type_hints["logging_role"])
|
|
1602
|
+
check_type(argname="argument security_policy_name", value=security_policy_name, expected_type=type_hints["security_policy_name"])
|
|
1570
1603
|
check_type(argname="argument sftp_config", value=sftp_config, expected_type=type_hints["sftp_config"])
|
|
1571
1604
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1572
1605
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -1577,6 +1610,8 @@ class CfnConnectorProps:
|
|
|
1577
1610
|
self._values["as2_config"] = as2_config
|
|
1578
1611
|
if logging_role is not None:
|
|
1579
1612
|
self._values["logging_role"] = logging_role
|
|
1613
|
+
if security_policy_name is not None:
|
|
1614
|
+
self._values["security_policy_name"] = security_policy_name
|
|
1580
1615
|
if sftp_config is not None:
|
|
1581
1616
|
self._values["sftp_config"] = sftp_config
|
|
1582
1617
|
if tags is not None:
|
|
@@ -1634,6 +1669,15 @@ class CfnConnectorProps:
|
|
|
1634
1669
|
result = self._values.get("logging_role")
|
|
1635
1670
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1636
1671
|
|
|
1672
|
+
@builtins.property
|
|
1673
|
+
def security_policy_name(self) -> typing.Optional[builtins.str]:
|
|
1674
|
+
'''The text name of the security policy for the specified connector.
|
|
1675
|
+
|
|
1676
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-connector.html#cfn-transfer-connector-securitypolicyname
|
|
1677
|
+
'''
|
|
1678
|
+
result = self._values.get("security_policy_name")
|
|
1679
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1680
|
+
|
|
1637
1681
|
@builtins.property
|
|
1638
1682
|
def sftp_config(
|
|
1639
1683
|
self,
|
|
@@ -4306,10 +4350,12 @@ class CfnWorkflow(
|
|
|
4306
4350
|
key="key"
|
|
4307
4351
|
)
|
|
4308
4352
|
),
|
|
4353
|
+
type="type",
|
|
4354
|
+
|
|
4355
|
+
# the properties below are optional
|
|
4309
4356
|
name="name",
|
|
4310
4357
|
overwrite_existing="overwriteExisting",
|
|
4311
|
-
source_file_location="sourceFileLocation"
|
|
4312
|
-
type="type"
|
|
4358
|
+
source_file_location="sourceFileLocation"
|
|
4313
4359
|
),
|
|
4314
4360
|
delete_step_details=delete_step_details,
|
|
4315
4361
|
tag_step_details=tag_step_details,
|
|
@@ -4332,10 +4378,12 @@ class CfnWorkflow(
|
|
|
4332
4378
|
key="key"
|
|
4333
4379
|
)
|
|
4334
4380
|
),
|
|
4381
|
+
type="type",
|
|
4382
|
+
|
|
4383
|
+
# the properties below are optional
|
|
4335
4384
|
name="name",
|
|
4336
4385
|
overwrite_existing="overwriteExisting",
|
|
4337
|
-
source_file_location="sourceFileLocation"
|
|
4338
|
-
type="type"
|
|
4386
|
+
source_file_location="sourceFileLocation"
|
|
4339
4387
|
),
|
|
4340
4388
|
delete_step_details=delete_step_details,
|
|
4341
4389
|
tag_step_details=tag_step_details,
|
|
@@ -4750,21 +4798,21 @@ class CfnWorkflow(
|
|
|
4750
4798
|
jsii_struct_bases=[],
|
|
4751
4799
|
name_mapping={
|
|
4752
4800
|
"destination_file_location": "destinationFileLocation",
|
|
4801
|
+
"type": "type",
|
|
4753
4802
|
"name": "name",
|
|
4754
4803
|
"overwrite_existing": "overwriteExisting",
|
|
4755
4804
|
"source_file_location": "sourceFileLocation",
|
|
4756
|
-
"type": "type",
|
|
4757
4805
|
},
|
|
4758
4806
|
)
|
|
4759
4807
|
class DecryptStepDetailsProperty:
|
|
4760
4808
|
def __init__(
|
|
4761
4809
|
self,
|
|
4762
4810
|
*,
|
|
4763
|
-
destination_file_location: typing.
|
|
4811
|
+
destination_file_location: typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.InputFileLocationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
4812
|
+
type: builtins.str,
|
|
4764
4813
|
name: typing.Optional[builtins.str] = None,
|
|
4765
4814
|
overwrite_existing: typing.Optional[builtins.str] = None,
|
|
4766
4815
|
source_file_location: typing.Optional[builtins.str] = None,
|
|
4767
|
-
type: typing.Optional[builtins.str] = None,
|
|
4768
4816
|
) -> None:
|
|
4769
4817
|
'''Details for a step that decrypts an encrypted file.
|
|
4770
4818
|
|
|
@@ -4777,10 +4825,10 @@ class CfnWorkflow(
|
|
|
4777
4825
|
- The type of encryption that's used. Currently, only PGP encryption is supported.
|
|
4778
4826
|
|
|
4779
4827
|
:param destination_file_location: Specifies the location for the file being decrypted. Use ``${Transfer:UserName}`` or ``${Transfer:UploadDate}`` in this field to parametrize the destination prefix by username or uploaded date. - Set the value of ``DestinationFileLocation`` to ``${Transfer:UserName}`` to decrypt uploaded files to an Amazon S3 bucket that is prefixed with the name of the Transfer Family user that uploaded the file. - Set the value of ``DestinationFileLocation`` to ``${Transfer:UploadDate}`` to decrypt uploaded files to an Amazon S3 bucket that is prefixed with the date of the upload. .. epigraph:: The system resolves ``UploadDate`` to a date format of *YYYY-MM-DD* , based on the date the file is uploaded in UTC.
|
|
4828
|
+
:param type: The type of encryption used. Currently, this value must be ``PGP`` .
|
|
4780
4829
|
:param name: The name of the step, used as an identifier.
|
|
4781
4830
|
:param overwrite_existing: A flag that indicates whether to overwrite an existing file of the same name. The default is ``FALSE`` . If the workflow is processing a file that has the same name as an existing file, the behavior is as follows: - If ``OverwriteExisting`` is ``TRUE`` , the existing file is replaced with the file being processed. - If ``OverwriteExisting`` is ``FALSE`` , nothing happens, and the workflow processing stops.
|
|
4782
4831
|
:param source_file_location: Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow. - To use the previous file as the input, enter ``${previous.file}`` . In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. - To use the originally uploaded file location as input for this step, enter ``${original.file}`` .
|
|
4783
|
-
:param type: The type of encryption used. Currently, this value must be ``PGP`` .
|
|
4784
4832
|
|
|
4785
4833
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-decryptstepdetails.html
|
|
4786
4834
|
:exampleMetadata: fixture=_generated
|
|
@@ -4802,35 +4850,36 @@ class CfnWorkflow(
|
|
|
4802
4850
|
key="key"
|
|
4803
4851
|
)
|
|
4804
4852
|
),
|
|
4853
|
+
type="type",
|
|
4854
|
+
|
|
4855
|
+
# the properties below are optional
|
|
4805
4856
|
name="name",
|
|
4806
4857
|
overwrite_existing="overwriteExisting",
|
|
4807
|
-
source_file_location="sourceFileLocation"
|
|
4808
|
-
type="type"
|
|
4858
|
+
source_file_location="sourceFileLocation"
|
|
4809
4859
|
)
|
|
4810
4860
|
'''
|
|
4811
4861
|
if __debug__:
|
|
4812
4862
|
type_hints = typing.get_type_hints(_typecheckingstub__ad8f772a5a88a70744cbdb419880ea7a579190d4fea687585ef9c062d4a6c34c)
|
|
4813
4863
|
check_type(argname="argument destination_file_location", value=destination_file_location, expected_type=type_hints["destination_file_location"])
|
|
4864
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
4814
4865
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
4815
4866
|
check_type(argname="argument overwrite_existing", value=overwrite_existing, expected_type=type_hints["overwrite_existing"])
|
|
4816
4867
|
check_type(argname="argument source_file_location", value=source_file_location, expected_type=type_hints["source_file_location"])
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4868
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4869
|
+
"destination_file_location": destination_file_location,
|
|
4870
|
+
"type": type,
|
|
4871
|
+
}
|
|
4821
4872
|
if name is not None:
|
|
4822
4873
|
self._values["name"] = name
|
|
4823
4874
|
if overwrite_existing is not None:
|
|
4824
4875
|
self._values["overwrite_existing"] = overwrite_existing
|
|
4825
4876
|
if source_file_location is not None:
|
|
4826
4877
|
self._values["source_file_location"] = source_file_location
|
|
4827
|
-
if type is not None:
|
|
4828
|
-
self._values["type"] = type
|
|
4829
4878
|
|
|
4830
4879
|
@builtins.property
|
|
4831
4880
|
def destination_file_location(
|
|
4832
4881
|
self,
|
|
4833
|
-
) -> typing.
|
|
4882
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnWorkflow.InputFileLocationProperty"]:
|
|
4834
4883
|
'''Specifies the location for the file being decrypted.
|
|
4835
4884
|
|
|
4836
4885
|
Use ``${Transfer:UserName}`` or ``${Transfer:UploadDate}`` in this field to parametrize the destination prefix by username or uploaded date.
|
|
@@ -4845,7 +4894,20 @@ class CfnWorkflow(
|
|
|
4845
4894
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-decryptstepdetails.html#cfn-transfer-workflow-decryptstepdetails-destinationfilelocation
|
|
4846
4895
|
'''
|
|
4847
4896
|
result = self._values.get("destination_file_location")
|
|
4848
|
-
|
|
4897
|
+
assert result is not None, "Required property 'destination_file_location' is missing"
|
|
4898
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnWorkflow.InputFileLocationProperty"], result)
|
|
4899
|
+
|
|
4900
|
+
@builtins.property
|
|
4901
|
+
def type(self) -> builtins.str:
|
|
4902
|
+
'''The type of encryption used.
|
|
4903
|
+
|
|
4904
|
+
Currently, this value must be ``PGP`` .
|
|
4905
|
+
|
|
4906
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-decryptstepdetails.html#cfn-transfer-workflow-decryptstepdetails-type
|
|
4907
|
+
'''
|
|
4908
|
+
result = self._values.get("type")
|
|
4909
|
+
assert result is not None, "Required property 'type' is missing"
|
|
4910
|
+
return typing.cast(builtins.str, result)
|
|
4849
4911
|
|
|
4850
4912
|
@builtins.property
|
|
4851
4913
|
def name(self) -> typing.Optional[builtins.str]:
|
|
@@ -4882,17 +4944,6 @@ class CfnWorkflow(
|
|
|
4882
4944
|
result = self._values.get("source_file_location")
|
|
4883
4945
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4884
4946
|
|
|
4885
|
-
@builtins.property
|
|
4886
|
-
def type(self) -> typing.Optional[builtins.str]:
|
|
4887
|
-
'''The type of encryption used.
|
|
4888
|
-
|
|
4889
|
-
Currently, this value must be ``PGP`` .
|
|
4890
|
-
|
|
4891
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-decryptstepdetails.html#cfn-transfer-workflow-decryptstepdetails-type
|
|
4892
|
-
'''
|
|
4893
|
-
result = self._values.get("type")
|
|
4894
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
4895
|
-
|
|
4896
4947
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4897
4948
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4898
4949
|
|
|
@@ -5487,10 +5538,12 @@ class CfnWorkflow(
|
|
|
5487
5538
|
key="key"
|
|
5488
5539
|
)
|
|
5489
5540
|
),
|
|
5541
|
+
type="type",
|
|
5542
|
+
|
|
5543
|
+
# the properties below are optional
|
|
5490
5544
|
name="name",
|
|
5491
5545
|
overwrite_existing="overwriteExisting",
|
|
5492
|
-
source_file_location="sourceFileLocation"
|
|
5493
|
-
type="type"
|
|
5546
|
+
source_file_location="sourceFileLocation"
|
|
5494
5547
|
),
|
|
5495
5548
|
delete_step_details=delete_step_details,
|
|
5496
5549
|
tag_step_details=tag_step_details,
|
|
@@ -5666,10 +5719,12 @@ class CfnWorkflowProps:
|
|
|
5666
5719
|
key="key"
|
|
5667
5720
|
)
|
|
5668
5721
|
),
|
|
5722
|
+
type="type",
|
|
5723
|
+
|
|
5724
|
+
# the properties below are optional
|
|
5669
5725
|
name="name",
|
|
5670
5726
|
overwrite_existing="overwriteExisting",
|
|
5671
|
-
source_file_location="sourceFileLocation"
|
|
5672
|
-
type="type"
|
|
5727
|
+
source_file_location="sourceFileLocation"
|
|
5673
5728
|
),
|
|
5674
5729
|
delete_step_details=delete_step_details,
|
|
5675
5730
|
tag_step_details=tag_step_details,
|
|
@@ -5692,10 +5747,12 @@ class CfnWorkflowProps:
|
|
|
5692
5747
|
key="key"
|
|
5693
5748
|
)
|
|
5694
5749
|
),
|
|
5750
|
+
type="type",
|
|
5751
|
+
|
|
5752
|
+
# the properties below are optional
|
|
5695
5753
|
name="name",
|
|
5696
5754
|
overwrite_existing="overwriteExisting",
|
|
5697
|
-
source_file_location="sourceFileLocation"
|
|
5698
|
-
type="type"
|
|
5755
|
+
source_file_location="sourceFileLocation"
|
|
5699
5756
|
),
|
|
5700
5757
|
delete_step_details=delete_step_details,
|
|
5701
5758
|
tag_step_details=tag_step_details,
|
|
@@ -5985,6 +6042,7 @@ def _typecheckingstub__2a3d92be7ab611ebe6dbf531ad899c2a95b3655fb829aeffdf52fdb11
|
|
|
5985
6042
|
url: builtins.str,
|
|
5986
6043
|
as2_config: typing.Any = None,
|
|
5987
6044
|
logging_role: typing.Optional[builtins.str] = None,
|
|
6045
|
+
security_policy_name: typing.Optional[builtins.str] = None,
|
|
5988
6046
|
sftp_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnector.SftpConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5989
6047
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5990
6048
|
) -> None:
|
|
@@ -6027,6 +6085,12 @@ def _typecheckingstub__f6fd1718d368db980c8cf49c237a691317f958db670b242715c5440aa
|
|
|
6027
6085
|
"""Type checking stubs"""
|
|
6028
6086
|
pass
|
|
6029
6087
|
|
|
6088
|
+
def _typecheckingstub__7c96b636b491e11ce074e40058c1620fda321bb7685ad3a5204502b6fdb4cc24(
|
|
6089
|
+
value: typing.Optional[builtins.str],
|
|
6090
|
+
) -> None:
|
|
6091
|
+
"""Type checking stubs"""
|
|
6092
|
+
pass
|
|
6093
|
+
|
|
6030
6094
|
def _typecheckingstub__391f4dfc56c4811c4c4aedb8ffcfac5c521d440de2f0de853365abcdec435568(
|
|
6031
6095
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnConnector.SftpConfigProperty]],
|
|
6032
6096
|
) -> None:
|
|
@@ -6068,6 +6132,7 @@ def _typecheckingstub__7675f9dcded8f51977cf70f499821100319fe5d62996cb917457f772c
|
|
|
6068
6132
|
url: builtins.str,
|
|
6069
6133
|
as2_config: typing.Any = None,
|
|
6070
6134
|
logging_role: typing.Optional[builtins.str] = None,
|
|
6135
|
+
security_policy_name: typing.Optional[builtins.str] = None,
|
|
6071
6136
|
sftp_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnector.SftpConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6072
6137
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6073
6138
|
) -> None:
|
|
@@ -6535,11 +6600,11 @@ def _typecheckingstub__fe264913218615c435ebf846cbfed95b995c342d261b4903fa7163453
|
|
|
6535
6600
|
|
|
6536
6601
|
def _typecheckingstub__ad8f772a5a88a70744cbdb419880ea7a579190d4fea687585ef9c062d4a6c34c(
|
|
6537
6602
|
*,
|
|
6538
|
-
destination_file_location: typing.
|
|
6603
|
+
destination_file_location: typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.InputFileLocationProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
6604
|
+
type: builtins.str,
|
|
6539
6605
|
name: typing.Optional[builtins.str] = None,
|
|
6540
6606
|
overwrite_existing: typing.Optional[builtins.str] = None,
|
|
6541
6607
|
source_file_location: typing.Optional[builtins.str] = None,
|
|
6542
|
-
type: typing.Optional[builtins.str] = None,
|
|
6543
6608
|
) -> None:
|
|
6544
6609
|
"""Type checking stubs"""
|
|
6545
6610
|
pass
|
aws_cdk/aws_voiceid/__init__.py
CHANGED
|
@@ -236,7 +236,7 @@ class CfnDomain(
|
|
|
236
236
|
def __init__(self, *, kms_key_id: builtins.str) -> None:
|
|
237
237
|
'''The configuration containing information about the customer managed key used for encrypting customer data.
|
|
238
238
|
|
|
239
|
-
:param kms_key_id: The identifier of the KMS key to use to encrypt data stored by Voice ID. Voice ID doesn't support asymmetric customer managed keys
|
|
239
|
+
:param kms_key_id: The identifier of the KMS key to use to encrypt data stored by Voice ID. Voice ID doesn't support asymmetric customer managed keys.
|
|
240
240
|
|
|
241
241
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-voiceid-domain-serversideencryptionconfiguration.html
|
|
242
242
|
:exampleMetadata: fixture=_generated
|
|
@@ -262,7 +262,7 @@ class CfnDomain(
|
|
|
262
262
|
def kms_key_id(self) -> builtins.str:
|
|
263
263
|
'''The identifier of the KMS key to use to encrypt data stored by Voice ID.
|
|
264
264
|
|
|
265
|
-
Voice ID doesn't support asymmetric customer managed keys
|
|
265
|
+
Voice ID doesn't support asymmetric customer managed keys.
|
|
266
266
|
|
|
267
267
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-voiceid-domain-serversideencryptionconfiguration.html#cfn-voiceid-domain-serversideencryptionconfiguration-kmskeyid
|
|
268
268
|
'''
|