aws-cdk-lib 2.187.0__py3-none-any.whl → 2.189.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 +24 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.187.0.jsii.tgz → aws-cdk-lib@2.189.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +21 -9
- aws_cdk/aws_apigateway/__init__.py +27 -19
- aws_cdk/aws_apigatewayv2/__init__.py +170 -0
- aws_cdk/aws_appconfig/__init__.py +30 -14
- aws_cdk/aws_arczonalshift/__init__.py +4 -4
- aws_cdk/aws_batch/__init__.py +2 -0
- aws_cdk/aws_bedrock/__init__.py +629 -32
- aws_cdk/aws_budgets/__init__.py +8 -8
- aws_cdk/aws_cassandra/__init__.py +3 -1
- aws_cdk/aws_ce/__init__.py +2 -2
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_codebuild/__init__.py +23 -1
- aws_cdk/aws_codepipeline/__init__.py +47 -32
- aws_cdk/aws_codepipeline_actions/__init__.py +2786 -1042
- aws_cdk/aws_codestarnotifications/__init__.py +16 -16
- aws_cdk/aws_cognito/__init__.py +8 -2
- aws_cdk/aws_dsql/__init__.py +366 -0
- aws_cdk/aws_dynamodb/__init__.py +4 -4
- aws_cdk/aws_ec2/__init__.py +2130 -237
- aws_cdk/aws_eks/__init__.py +112 -10
- aws_cdk/aws_events_targets/__init__.py +136 -0
- aws_cdk/aws_fsx/__init__.py +2 -8
- aws_cdk/aws_gamelift/__init__.py +140 -14
- aws_cdk/aws_groundstation/__init__.py +4 -2
- aws_cdk/aws_iam/__init__.py +6 -4
- aws_cdk/aws_identitystore/__init__.py +15 -13
- aws_cdk/aws_kinesisfirehose/__init__.py +38 -0
- aws_cdk/aws_lambda_event_sources/__init__.py +22 -22
- aws_cdk/aws_lex/__init__.py +21 -17
- aws_cdk/aws_logs/__init__.py +18 -0
- aws_cdk/aws_logs_destinations/__init__.py +146 -0
- aws_cdk/aws_notifications/__init__.py +4 -4
- aws_cdk/aws_omics/__init__.py +9 -1
- aws_cdk/aws_opensearchserverless/__init__.py +31 -23
- aws_cdk/aws_organizations/__init__.py +1 -1
- aws_cdk/aws_paymentcryptography/__init__.py +6 -2
- aws_cdk/aws_pcaconnectorad/__init__.py +3 -2
- aws_cdk/aws_quicksight/__init__.py +35 -22
- aws_cdk/aws_rds/__init__.py +84 -0
- aws_cdk/aws_redshiftserverless/__init__.py +166 -0
- aws_cdk/aws_route53/__init__.py +3 -3
- aws_cdk/aws_route53recoverycontrol/__init__.py +4 -6
- aws_cdk/aws_rum/__init__.py +13 -10
- aws_cdk/aws_s3/__init__.py +3 -6
- aws_cdk/aws_sagemaker/__init__.py +41 -0
- aws_cdk/aws_ssmincidents/__init__.py +10 -10
- aws_cdk/aws_systemsmanagersap/__init__.py +17 -7
- aws_cdk/aws_transfer/__init__.py +19 -10
- aws_cdk/aws_wafv2/__init__.py +80 -35
- aws_cdk/cx_api/__init__.py +23 -2
- aws_cdk/pipelines/__init__.py +71 -1
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/RECORD +60 -59
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/top_level.txt +0 -0
|
@@ -114,7 +114,7 @@ class CfnCluster(
|
|
|
114
114
|
:param scope: Scope in which this resource is defined.
|
|
115
115
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
116
116
|
:param name: Name of the cluster. You can use any non-white space character in the name except the following: & > < ' (single quote) " (double quote) ; (semicolon).
|
|
117
|
-
:param network_type:
|
|
117
|
+
:param network_type: The network-type can either be IPV4 or DUALSTACK.
|
|
118
118
|
:param tags: The tags associated with the cluster.
|
|
119
119
|
'''
|
|
120
120
|
if __debug__:
|
|
@@ -213,7 +213,7 @@ class CfnCluster(
|
|
|
213
213
|
@builtins.property
|
|
214
214
|
@jsii.member(jsii_name="networkType")
|
|
215
215
|
def network_type(self) -> typing.Optional[builtins.str]:
|
|
216
|
-
'''
|
|
216
|
+
'''The network-type can either be IPV4 or DUALSTACK.'''
|
|
217
217
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "networkType"))
|
|
218
218
|
|
|
219
219
|
@network_type.setter
|
|
@@ -327,7 +327,7 @@ class CfnClusterProps:
|
|
|
327
327
|
'''Properties for defining a ``CfnCluster``.
|
|
328
328
|
|
|
329
329
|
:param name: Name of the cluster. You can use any non-white space character in the name except the following: & > < ' (single quote) " (double quote) ; (semicolon).
|
|
330
|
-
:param network_type:
|
|
330
|
+
:param network_type: The network-type can either be IPV4 or DUALSTACK.
|
|
331
331
|
:param tags: The tags associated with the cluster.
|
|
332
332
|
|
|
333
333
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.html
|
|
@@ -377,9 +377,7 @@ class CfnClusterProps:
|
|
|
377
377
|
|
|
378
378
|
@builtins.property
|
|
379
379
|
def network_type(self) -> typing.Optional[builtins.str]:
|
|
380
|
-
'''
|
|
381
|
-
|
|
382
|
-
NetworkType can be IPV4 or DUALSTACK.
|
|
380
|
+
'''The network-type can either be IPV4 or DUALSTACK.
|
|
383
381
|
|
|
384
382
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.html#cfn-route53recoverycontrol-cluster-networktype
|
|
385
383
|
'''
|
aws_cdk/aws_rum/__init__.py
CHANGED
|
@@ -175,8 +175,8 @@ class CfnAppMonitor(
|
|
|
175
175
|
:param custom_events: Specifies whether this app monitor allows the web client to define and send custom events. If you omit this parameter, custom events are ``DISABLED`` .
|
|
176
176
|
:param cw_log_enabled: Data collected by CloudWatch RUM is kept by RUM for 30 days and then deleted. This parameter specifies whether CloudWatch RUM sends a copy of this telemetry data to Amazon CloudWatch Logs in your account. This enables you to keep the telemetry data for more than 30 days, but it does incur Amazon CloudWatch Logs charges. If you omit this parameter, the default is ``false`` .
|
|
177
177
|
:param deobfuscation_configuration: A structure that contains the configuration for how an app monitor can deobfuscate stack traces.
|
|
178
|
-
:param domain: The top-level internet domain name for which your application has administrative authority. This parameter is required.
|
|
179
|
-
:param domain_list:
|
|
178
|
+
:param domain: The top-level internet domain name for which your application has administrative authority. This parameter or the ``DomainList`` parameter is required.
|
|
179
|
+
:param domain_list: List the domain names for which your application has administrative authority. This parameter or the ``Domain`` parameter is required. You can have a minimum of 1 and a maximum of 5 ``Domain`` under ``DomainList`` . Each ``Domain`` must be a minimum length of 1 and a maximum of 253 characters.
|
|
180
180
|
:param resource_policy: Use this structure to assign a resource-based policy to a CloudWatch RUM app monitor to control access to it. Each app monitor can have one resource-based policy. The maximum size of the policy is 4 KB. To learn more about using resource policies with RUM, see `Using resource-based policies with CloudWatch RUM <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-resource-policies.html>`_ .
|
|
181
181
|
:param tags: Assigns one or more tags (key-value pairs) to the app monitor. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters. You can associate as many as 50 tags with an app monitor. For more information, see `Tagging AWS resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ .
|
|
182
182
|
'''
|
|
@@ -349,7 +349,10 @@ class CfnAppMonitor(
|
|
|
349
349
|
@builtins.property
|
|
350
350
|
@jsii.member(jsii_name="domainList")
|
|
351
351
|
def domain_list(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
352
|
-
'''
|
|
352
|
+
'''List the domain names for which your application has administrative authority.
|
|
353
|
+
|
|
354
|
+
This parameter or the ``Domain`` parameter is required.
|
|
355
|
+
'''
|
|
353
356
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "domainList"))
|
|
354
357
|
|
|
355
358
|
@domain_list.setter
|
|
@@ -762,7 +765,7 @@ class CfnAppMonitor(
|
|
|
762
765
|
) -> None:
|
|
763
766
|
'''A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.
|
|
764
767
|
|
|
765
|
-
:param status: Specifies whether JavaScript error stack traces should be unminified for this app monitor. The default is for JavaScript error stack trace unminification to be DISABLED
|
|
768
|
+
:param status: Specifies whether JavaScript error stack traces should be unminified for this app monitor. The default is for JavaScript error stack trace unminification to be ``DISABLED`` .
|
|
766
769
|
:param s3_uri: The S3Uri of the bucket or folder that stores the source map files. It is required if status is ENABLED.
|
|
767
770
|
|
|
768
771
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html
|
|
@@ -795,7 +798,7 @@ class CfnAppMonitor(
|
|
|
795
798
|
def status(self) -> builtins.str:
|
|
796
799
|
'''Specifies whether JavaScript error stack traces should be unminified for this app monitor.
|
|
797
800
|
|
|
798
|
-
The default is for JavaScript error stack trace unminification to be DISABLED
|
|
801
|
+
The default is for JavaScript error stack trace unminification to be ``DISABLED`` .
|
|
799
802
|
|
|
800
803
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html#cfn-rum-appmonitor-javascriptsourcemaps-status
|
|
801
804
|
'''
|
|
@@ -1252,8 +1255,8 @@ class CfnAppMonitorProps:
|
|
|
1252
1255
|
:param custom_events: Specifies whether this app monitor allows the web client to define and send custom events. If you omit this parameter, custom events are ``DISABLED`` .
|
|
1253
1256
|
:param cw_log_enabled: Data collected by CloudWatch RUM is kept by RUM for 30 days and then deleted. This parameter specifies whether CloudWatch RUM sends a copy of this telemetry data to Amazon CloudWatch Logs in your account. This enables you to keep the telemetry data for more than 30 days, but it does incur Amazon CloudWatch Logs charges. If you omit this parameter, the default is ``false`` .
|
|
1254
1257
|
:param deobfuscation_configuration: A structure that contains the configuration for how an app monitor can deobfuscate stack traces.
|
|
1255
|
-
:param domain: The top-level internet domain name for which your application has administrative authority. This parameter is required.
|
|
1256
|
-
:param domain_list:
|
|
1258
|
+
:param domain: The top-level internet domain name for which your application has administrative authority. This parameter or the ``DomainList`` parameter is required.
|
|
1259
|
+
:param domain_list: List the domain names for which your application has administrative authority. This parameter or the ``Domain`` parameter is required. You can have a minimum of 1 and a maximum of 5 ``Domain`` under ``DomainList`` . Each ``Domain`` must be a minimum length of 1 and a maximum of 253 characters.
|
|
1257
1260
|
:param resource_policy: Use this structure to assign a resource-based policy to a CloudWatch RUM app monitor to control access to it. Each app monitor can have one resource-based policy. The maximum size of the policy is 4 KB. To learn more about using resource policies with RUM, see `Using resource-based policies with CloudWatch RUM <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-resource-policies.html>`_ .
|
|
1258
1261
|
:param tags: Assigns one or more tags (key-value pairs) to the app monitor. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters. You can associate as many as 50 tags with an app monitor. For more information, see `Tagging AWS resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ .
|
|
1259
1262
|
|
|
@@ -1427,7 +1430,7 @@ class CfnAppMonitorProps:
|
|
|
1427
1430
|
def domain(self) -> typing.Optional[builtins.str]:
|
|
1428
1431
|
'''The top-level internet domain name for which your application has administrative authority.
|
|
1429
1432
|
|
|
1430
|
-
This parameter is required.
|
|
1433
|
+
This parameter or the ``DomainList`` parameter is required.
|
|
1431
1434
|
|
|
1432
1435
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rum-appmonitor.html#cfn-rum-appmonitor-domain
|
|
1433
1436
|
'''
|
|
@@ -1436,9 +1439,9 @@ class CfnAppMonitorProps:
|
|
|
1436
1439
|
|
|
1437
1440
|
@builtins.property
|
|
1438
1441
|
def domain_list(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1439
|
-
'''
|
|
1442
|
+
'''List the domain names for which your application has administrative authority. This parameter or the ``Domain`` parameter is required.
|
|
1440
1443
|
|
|
1441
|
-
|
|
1444
|
+
You can have a minimum of 1 and a maximum of 5 ``Domain`` under ``DomainList`` . Each ``Domain`` must be a minimum length of 1 and a maximum of 253 characters.
|
|
1442
1445
|
|
|
1443
1446
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rum-appmonitor.html#cfn-rum-appmonitor-domainlist
|
|
1444
1447
|
'''
|
aws_cdk/aws_s3/__init__.py
CHANGED
|
@@ -2087,7 +2087,7 @@ class BucketProps:
|
|
|
2087
2087
|
:param bucket_key_enabled: Whether Amazon S3 should use its own intermediary key to generate data keys. Only relevant when using KMS for encryption. - If not enabled, every object GET and PUT will cause an API call to KMS (with the attendant cost implications of that). - If enabled, S3 will use its own time-limited key instead. Only relevant, when Encryption is not set to ``BucketEncryption.UNENCRYPTED``. Default: - false
|
|
2088
2088
|
:param bucket_name: Physical name of this bucket. Default: - Assigned by CloudFormation (recommended).
|
|
2089
2089
|
:param cors: The CORS configuration of this bucket. Default: - No CORS configuration.
|
|
2090
|
-
:param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``
|
|
2090
|
+
:param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``S3_MANAGED`` otherwise.
|
|
2091
2091
|
:param encryption_key: External KMS key to use for bucket encryption. The ``encryption`` property must be either not specified or set to ``KMS`` or ``DSSE``. An error will be emitted if ``encryption`` is set to ``UNENCRYPTED`` or ``S3_MANAGED``. Default: - If ``encryption`` is set to ``KMS`` and this property is undefined, a new KMS key will be created and associated with this bucket.
|
|
2092
2092
|
:param enforce_ssl: Enforces SSL for requests. S3.5 of the AWS Foundational Security Best Practices Regarding S3. Default: false
|
|
2093
2093
|
:param event_bridge_enabled: Whether this bucket should send notifications to Amazon EventBridge or not. Default: false
|
|
@@ -2325,10 +2325,7 @@ class BucketProps:
|
|
|
2325
2325
|
If you choose KMS, you can specify a KMS key via ``encryptionKey``. If
|
|
2326
2326
|
encryption key is not specified, a key will automatically be created.
|
|
2327
2327
|
|
|
2328
|
-
:default:
|
|
2329
|
-
|
|
2330
|
-
- ``KMS`` if ``encryptionKey`` is specified, or ``UNENCRYPTED`` otherwise.
|
|
2331
|
-
But if ``UNENCRYPTED`` is specified, the bucket will be encrypted as ``S3_MANAGED`` automatically.
|
|
2328
|
+
:default: - ``KMS`` if ``encryptionKey`` is specified, or ``S3_MANAGED`` otherwise.
|
|
2332
2329
|
'''
|
|
2333
2330
|
result = self._values.get("encryption")
|
|
2334
2331
|
return typing.cast(typing.Optional[BucketEncryption], result)
|
|
@@ -20670,7 +20667,7 @@ class Bucket(
|
|
|
20670
20667
|
:param bucket_key_enabled: Whether Amazon S3 should use its own intermediary key to generate data keys. Only relevant when using KMS for encryption. - If not enabled, every object GET and PUT will cause an API call to KMS (with the attendant cost implications of that). - If enabled, S3 will use its own time-limited key instead. Only relevant, when Encryption is not set to ``BucketEncryption.UNENCRYPTED``. Default: - false
|
|
20671
20668
|
:param bucket_name: Physical name of this bucket. Default: - Assigned by CloudFormation (recommended).
|
|
20672
20669
|
:param cors: The CORS configuration of this bucket. Default: - No CORS configuration.
|
|
20673
|
-
:param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``
|
|
20670
|
+
:param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``S3_MANAGED`` otherwise.
|
|
20674
20671
|
:param encryption_key: External KMS key to use for bucket encryption. The ``encryption`` property must be either not specified or set to ``KMS`` or ``DSSE``. An error will be emitted if ``encryption`` is set to ``UNENCRYPTED`` or ``S3_MANAGED``. Default: - If ``encryption`` is set to ``KMS`` and this property is undefined, a new KMS key will be created and associated with this bucket.
|
|
20675
20672
|
:param enforce_ssl: Enforces SSL for requests. S3.5 of the AWS Foundational Security Best Practices Regarding S3. Default: false
|
|
20676
20673
|
:param event_bridge_enabled: Whether this bucket should send notifications to Amazon EventBridge or not. Default: false
|
|
@@ -42051,6 +42051,7 @@ class CfnPartnerApp(
|
|
|
42051
42051
|
),
|
|
42052
42052
|
client_token="clientToken",
|
|
42053
42053
|
enable_iam_session_based_identity=False,
|
|
42054
|
+
kms_key_id="kmsKeyId",
|
|
42054
42055
|
maintenance_config=sagemaker.CfnPartnerApp.PartnerAppMaintenanceConfigProperty(
|
|
42055
42056
|
maintenance_window_start="maintenanceWindowStart"
|
|
42056
42057
|
),
|
|
@@ -42074,6 +42075,7 @@ class CfnPartnerApp(
|
|
|
42074
42075
|
application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnerApp.PartnerAppConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
42075
42076
|
client_token: typing.Optional[builtins.str] = None,
|
|
42076
42077
|
enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
42078
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
42077
42079
|
maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnerApp.PartnerAppMaintenanceConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
42078
42080
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
42079
42081
|
) -> None:
|
|
@@ -42088,6 +42090,7 @@ class CfnPartnerApp(
|
|
|
42088
42090
|
:param application_config: A collection of configuration settings for the PartnerApp.
|
|
42089
42091
|
:param client_token: (deprecated) The client token for the PartnerApp.
|
|
42090
42092
|
:param enable_iam_session_based_identity: Enables IAM Session based Identity for PartnerApp.
|
|
42093
|
+
:param kms_key_id: The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
|
|
42091
42094
|
:param maintenance_config: A collection of settings that specify the maintenance schedule for the PartnerApp.
|
|
42092
42095
|
:param tags: A list of tags to apply to the PartnerApp.
|
|
42093
42096
|
'''
|
|
@@ -42104,6 +42107,7 @@ class CfnPartnerApp(
|
|
|
42104
42107
|
application_config=application_config,
|
|
42105
42108
|
client_token=client_token,
|
|
42106
42109
|
enable_iam_session_based_identity=enable_iam_session_based_identity,
|
|
42110
|
+
kms_key_id=kms_key_id,
|
|
42107
42111
|
maintenance_config=maintenance_config,
|
|
42108
42112
|
tags=tags,
|
|
42109
42113
|
)
|
|
@@ -42288,6 +42292,19 @@ class CfnPartnerApp(
|
|
|
42288
42292
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
42289
42293
|
jsii.set(self, "enableIamSessionBasedIdentity", value) # pyright: ignore[reportArgumentType]
|
|
42290
42294
|
|
|
42295
|
+
@builtins.property
|
|
42296
|
+
@jsii.member(jsii_name="kmsKeyId")
|
|
42297
|
+
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
42298
|
+
'''The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.'''
|
|
42299
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
|
|
42300
|
+
|
|
42301
|
+
@kms_key_id.setter
|
|
42302
|
+
def kms_key_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
42303
|
+
if __debug__:
|
|
42304
|
+
type_hints = typing.get_type_hints(_typecheckingstub__58c272923722b0c517d340605d53203fe379f478e3d080374edf1307990220fe)
|
|
42305
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
42306
|
+
jsii.set(self, "kmsKeyId", value) # pyright: ignore[reportArgumentType]
|
|
42307
|
+
|
|
42291
42308
|
@builtins.property
|
|
42292
42309
|
@jsii.member(jsii_name="maintenanceConfig")
|
|
42293
42310
|
def maintenance_config(
|
|
@@ -42462,6 +42479,7 @@ class CfnPartnerApp(
|
|
|
42462
42479
|
"application_config": "applicationConfig",
|
|
42463
42480
|
"client_token": "clientToken",
|
|
42464
42481
|
"enable_iam_session_based_identity": "enableIamSessionBasedIdentity",
|
|
42482
|
+
"kms_key_id": "kmsKeyId",
|
|
42465
42483
|
"maintenance_config": "maintenanceConfig",
|
|
42466
42484
|
"tags": "tags",
|
|
42467
42485
|
},
|
|
@@ -42478,6 +42496,7 @@ class CfnPartnerAppProps:
|
|
|
42478
42496
|
application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
42479
42497
|
client_token: typing.Optional[builtins.str] = None,
|
|
42480
42498
|
enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
42499
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
42481
42500
|
maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppMaintenanceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
42482
42501
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
42483
42502
|
) -> None:
|
|
@@ -42491,6 +42510,7 @@ class CfnPartnerAppProps:
|
|
|
42491
42510
|
:param application_config: A collection of configuration settings for the PartnerApp.
|
|
42492
42511
|
:param client_token: (deprecated) The client token for the PartnerApp.
|
|
42493
42512
|
:param enable_iam_session_based_identity: Enables IAM Session based Identity for PartnerApp.
|
|
42513
|
+
:param kms_key_id: The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
|
|
42494
42514
|
:param maintenance_config: A collection of settings that specify the maintenance schedule for the PartnerApp.
|
|
42495
42515
|
:param tags: A list of tags to apply to the PartnerApp.
|
|
42496
42516
|
|
|
@@ -42519,6 +42539,7 @@ class CfnPartnerAppProps:
|
|
|
42519
42539
|
),
|
|
42520
42540
|
client_token="clientToken",
|
|
42521
42541
|
enable_iam_session_based_identity=False,
|
|
42542
|
+
kms_key_id="kmsKeyId",
|
|
42522
42543
|
maintenance_config=sagemaker.CfnPartnerApp.PartnerAppMaintenanceConfigProperty(
|
|
42523
42544
|
maintenance_window_start="maintenanceWindowStart"
|
|
42524
42545
|
),
|
|
@@ -42538,6 +42559,7 @@ class CfnPartnerAppProps:
|
|
|
42538
42559
|
check_type(argname="argument application_config", value=application_config, expected_type=type_hints["application_config"])
|
|
42539
42560
|
check_type(argname="argument client_token", value=client_token, expected_type=type_hints["client_token"])
|
|
42540
42561
|
check_type(argname="argument enable_iam_session_based_identity", value=enable_iam_session_based_identity, expected_type=type_hints["enable_iam_session_based_identity"])
|
|
42562
|
+
check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
|
|
42541
42563
|
check_type(argname="argument maintenance_config", value=maintenance_config, expected_type=type_hints["maintenance_config"])
|
|
42542
42564
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
42543
42565
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -42553,6 +42575,8 @@ class CfnPartnerAppProps:
|
|
|
42553
42575
|
self._values["client_token"] = client_token
|
|
42554
42576
|
if enable_iam_session_based_identity is not None:
|
|
42555
42577
|
self._values["enable_iam_session_based_identity"] = enable_iam_session_based_identity
|
|
42578
|
+
if kms_key_id is not None:
|
|
42579
|
+
self._values["kms_key_id"] = kms_key_id
|
|
42556
42580
|
if maintenance_config is not None:
|
|
42557
42581
|
self._values["maintenance_config"] = maintenance_config
|
|
42558
42582
|
if tags is not None:
|
|
@@ -42644,6 +42668,15 @@ class CfnPartnerAppProps:
|
|
|
42644
42668
|
result = self._values.get("enable_iam_session_based_identity")
|
|
42645
42669
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
42646
42670
|
|
|
42671
|
+
@builtins.property
|
|
42672
|
+
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
42673
|
+
'''The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
|
|
42674
|
+
|
|
42675
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-kmskeyid
|
|
42676
|
+
'''
|
|
42677
|
+
result = self._values.get("kms_key_id")
|
|
42678
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
42679
|
+
|
|
42647
42680
|
@builtins.property
|
|
42648
42681
|
def maintenance_config(
|
|
42649
42682
|
self,
|
|
@@ -54541,6 +54574,7 @@ def _typecheckingstub__149fe137328534a718f6ce551ee72371d9e2f7ac901d129321d3ff327
|
|
|
54541
54574
|
application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54542
54575
|
client_token: typing.Optional[builtins.str] = None,
|
|
54543
54576
|
enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
54577
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
54544
54578
|
maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppMaintenanceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54545
54579
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54546
54580
|
) -> None:
|
|
@@ -54607,6 +54641,12 @@ def _typecheckingstub__ebd74e6776143e94da10e5c2bab1e42ca40468d81bb1db74aa0c18459
|
|
|
54607
54641
|
"""Type checking stubs"""
|
|
54608
54642
|
pass
|
|
54609
54643
|
|
|
54644
|
+
def _typecheckingstub__58c272923722b0c517d340605d53203fe379f478e3d080374edf1307990220fe(
|
|
54645
|
+
value: typing.Optional[builtins.str],
|
|
54646
|
+
) -> None:
|
|
54647
|
+
"""Type checking stubs"""
|
|
54648
|
+
pass
|
|
54649
|
+
|
|
54610
54650
|
def _typecheckingstub__01904965c7f75553d54adf4ed7dd98da8f98703ddbdf03abdbbfb7056e2bceab(
|
|
54611
54651
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPartnerApp.PartnerAppMaintenanceConfigProperty]],
|
|
54612
54652
|
) -> None:
|
|
@@ -54644,6 +54684,7 @@ def _typecheckingstub__23a26f35e63e4c1c82a8885f138a3f6006822c6ecbf7284a7c2ccafae
|
|
|
54644
54684
|
application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54645
54685
|
client_token: typing.Optional[builtins.str] = None,
|
|
54646
54686
|
enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
54687
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
54647
54688
|
maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppMaintenanceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54648
54689
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54649
54690
|
) -> None:
|
|
@@ -564,7 +564,7 @@ class CfnResponsePlan(
|
|
|
564
564
|
:param incident_template: Details used to create an incident when using this response plan.
|
|
565
565
|
:param name: The name of the response plan.
|
|
566
566
|
:param actions: The actions that the response plan starts at the beginning of an incident.
|
|
567
|
-
:param chat_channel: The
|
|
567
|
+
:param chat_channel: The chat channel used for collaboration during an incident.
|
|
568
568
|
:param display_name: The human readable name of the response plan.
|
|
569
569
|
:param engagements: The Amazon Resource Name (ARN) for the contacts and escalation plans that the response plan engages during an incident.
|
|
570
570
|
:param integrations: Information about third-party services integrated into the response plan.
|
|
@@ -691,7 +691,7 @@ class CfnResponsePlan(
|
|
|
691
691
|
def chat_channel(
|
|
692
692
|
self,
|
|
693
693
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnResponsePlan.ChatChannelProperty"]]:
|
|
694
|
-
'''The
|
|
694
|
+
'''The chat channel used for collaboration during an incident.'''
|
|
695
695
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnResponsePlan.ChatChannelProperty"]], jsii.get(self, "chatChannel"))
|
|
696
696
|
|
|
697
697
|
@chat_channel.setter
|
|
@@ -846,9 +846,9 @@ class CfnResponsePlan(
|
|
|
846
846
|
*,
|
|
847
847
|
chatbot_sns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
848
848
|
) -> None:
|
|
849
|
-
'''The
|
|
849
|
+
'''The chat channel used for collaboration during an incident.
|
|
850
850
|
|
|
851
|
-
:param chatbot_sns: The Amazon SNS targets that
|
|
851
|
+
:param chatbot_sns: The Amazon SNS targets that uses to notify the chat channel of updates to an incident. You can also make updates to the incident through the chat channel by using the Amazon SNS topics
|
|
852
852
|
|
|
853
853
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-chatchannel.html
|
|
854
854
|
:exampleMetadata: fixture=_generated
|
|
@@ -872,7 +872,7 @@ class CfnResponsePlan(
|
|
|
872
872
|
|
|
873
873
|
@builtins.property
|
|
874
874
|
def chatbot_sns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
875
|
-
'''The Amazon SNS targets that
|
|
875
|
+
'''The Amazon SNS targets that uses to notify the chat channel of updates to an incident.
|
|
876
876
|
|
|
877
877
|
You can also make updates to the incident through the chat channel by using the Amazon SNS topics
|
|
878
878
|
|
|
@@ -1065,7 +1065,7 @@ class CfnResponsePlan(
|
|
|
1065
1065
|
:param title: The title of the incident is a brief and easily recognizable.
|
|
1066
1066
|
:param dedupe_string: Used to create only one incident record for an incident.
|
|
1067
1067
|
:param incident_tags: Tags to assign to the template. When the ``StartIncident`` API action is called, Incident Manager assigns the tags specified in the template to the incident.
|
|
1068
|
-
:param notification_targets: The Amazon Simple Notification Service ( Amazon SNS ) targets that
|
|
1068
|
+
:param notification_targets: The Amazon Simple Notification Service ( Amazon SNS ) targets that uses to notify the chat channel of updates to an incident. You can also make updates to the incident through the chat channel using the Amazon SNS topics.
|
|
1069
1069
|
:param summary: The summary describes what has happened during the incident.
|
|
1070
1070
|
|
|
1071
1071
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html
|
|
@@ -1167,7 +1167,7 @@ class CfnResponsePlan(
|
|
|
1167
1167
|
def notification_targets(
|
|
1168
1168
|
self,
|
|
1169
1169
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnResponsePlan.NotificationTargetItemProperty"]]]]:
|
|
1170
|
-
'''The Amazon Simple Notification Service ( Amazon SNS ) targets that
|
|
1170
|
+
'''The Amazon Simple Notification Service ( Amazon SNS ) targets that uses to notify the chat channel of updates to an incident.
|
|
1171
1171
|
|
|
1172
1172
|
You can also make updates to the incident through the chat channel using the Amazon SNS topics.
|
|
1173
1173
|
|
|
@@ -1271,7 +1271,7 @@ class CfnResponsePlan(
|
|
|
1271
1271
|
*,
|
|
1272
1272
|
sns_topic_arn: typing.Optional[builtins.str] = None,
|
|
1273
1273
|
) -> None:
|
|
1274
|
-
'''The Amazon SNS topic that's used by
|
|
1274
|
+
'''The Amazon SNS topic that's used by to notify the incidents chat channel.
|
|
1275
1275
|
|
|
1276
1276
|
:param sns_topic_arn: The Amazon Resource Name (ARN) of the Amazon SNS topic.
|
|
1277
1277
|
|
|
@@ -1719,7 +1719,7 @@ class CfnResponsePlanProps:
|
|
|
1719
1719
|
:param incident_template: Details used to create an incident when using this response plan.
|
|
1720
1720
|
:param name: The name of the response plan.
|
|
1721
1721
|
:param actions: The actions that the response plan starts at the beginning of an incident.
|
|
1722
|
-
:param chat_channel: The
|
|
1722
|
+
:param chat_channel: The chat channel used for collaboration during an incident.
|
|
1723
1723
|
:param display_name: The human readable name of the response plan.
|
|
1724
1724
|
:param engagements: The Amazon Resource Name (ARN) for the contacts and escalation plans that the response plan engages during an incident.
|
|
1725
1725
|
:param integrations: Information about third-party services integrated into the response plan.
|
|
@@ -1857,7 +1857,7 @@ class CfnResponsePlanProps:
|
|
|
1857
1857
|
def chat_channel(
|
|
1858
1858
|
self,
|
|
1859
1859
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnResponsePlan.ChatChannelProperty]]:
|
|
1860
|
-
'''The
|
|
1860
|
+
'''The chat channel used for collaboration during an incident.
|
|
1861
1861
|
|
|
1862
1862
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-responseplan.html#cfn-ssmincidents-responseplan-chatchannel
|
|
1863
1863
|
'''
|
|
@@ -353,10 +353,11 @@ class CfnApplication(
|
|
|
353
353
|
ec2_instance_id: typing.Optional[builtins.str] = None,
|
|
354
354
|
sid: typing.Optional[builtins.str] = None,
|
|
355
355
|
) -> None:
|
|
356
|
-
'''
|
|
357
|
-
|
|
358
|
-
:param
|
|
359
|
-
:param
|
|
356
|
+
'''This is information about the component of your SAP application, such as Web Dispatcher.
|
|
357
|
+
|
|
358
|
+
:param component_type: This string is the type of the component. Accepted value is ``WD`` .
|
|
359
|
+
:param ec2_instance_id: This is the Amazon EC2 instance on which your SAP component is running. Accepted values are alphanumeric.
|
|
360
|
+
:param sid: This string is the SAP System ID of the component. Accepted values are alphanumeric.
|
|
360
361
|
|
|
361
362
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html
|
|
362
363
|
:exampleMetadata: fixture=_generated
|
|
@@ -388,7 +389,10 @@ class CfnApplication(
|
|
|
388
389
|
|
|
389
390
|
@builtins.property
|
|
390
391
|
def component_type(self) -> typing.Optional[builtins.str]:
|
|
391
|
-
'''
|
|
392
|
+
'''This string is the type of the component.
|
|
393
|
+
|
|
394
|
+
Accepted value is ``WD`` .
|
|
395
|
+
|
|
392
396
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html#cfn-systemsmanagersap-application-componentinfo-componenttype
|
|
393
397
|
'''
|
|
394
398
|
result = self._values.get("component_type")
|
|
@@ -396,7 +400,10 @@ class CfnApplication(
|
|
|
396
400
|
|
|
397
401
|
@builtins.property
|
|
398
402
|
def ec2_instance_id(self) -> typing.Optional[builtins.str]:
|
|
399
|
-
'''
|
|
403
|
+
'''This is the Amazon EC2 instance on which your SAP component is running.
|
|
404
|
+
|
|
405
|
+
Accepted values are alphanumeric.
|
|
406
|
+
|
|
400
407
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html#cfn-systemsmanagersap-application-componentinfo-ec2instanceid
|
|
401
408
|
'''
|
|
402
409
|
result = self._values.get("ec2_instance_id")
|
|
@@ -404,7 +411,10 @@ class CfnApplication(
|
|
|
404
411
|
|
|
405
412
|
@builtins.property
|
|
406
413
|
def sid(self) -> typing.Optional[builtins.str]:
|
|
407
|
-
'''
|
|
414
|
+
'''This string is the SAP System ID of the component.
|
|
415
|
+
|
|
416
|
+
Accepted values are alphanumeric.
|
|
417
|
+
|
|
408
418
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html#cfn-systemsmanagersap-application-componentinfo-sid
|
|
409
419
|
'''
|
|
410
420
|
result = self._values.get("sid")
|
aws_cdk/aws_transfer/__init__.py
CHANGED
|
@@ -771,6 +771,11 @@ class CfnCertificate(
|
|
|
771
771
|
):
|
|
772
772
|
'''Imports the signing and encryption certificates that you need to create local (AS2) profiles and partner profiles.
|
|
773
773
|
|
|
774
|
+
You can import both the certificate and its chain in the ``Certificate`` parameter.
|
|
775
|
+
.. epigraph::
|
|
776
|
+
|
|
777
|
+
If you use the ``Certificate`` parameter to upload both the certificate and its chain, don't use the ``CertificateChain`` parameter.
|
|
778
|
+
|
|
774
779
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-certificate.html
|
|
775
780
|
:cloudformationResource: AWS::Transfer::Certificate
|
|
776
781
|
:exampleMetadata: fixture=_generated
|
|
@@ -817,10 +822,10 @@ class CfnCertificate(
|
|
|
817
822
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
818
823
|
:param certificate: The file name for the certificate.
|
|
819
824
|
:param usage: Specifies how this certificate is used. It can be used in the following ways:. - ``SIGNING`` : For signing AS2 messages - ``ENCRYPTION`` : For encrypting AS2 messages - ``TLS`` : For securing AS2 communications sent over HTTPS
|
|
820
|
-
:param active_date: An optional date that specifies when the certificate becomes active.
|
|
825
|
+
:param active_date: An optional date that specifies when the certificate becomes active. If you do not specify a value, ``ActiveDate`` takes the same value as ``NotBeforeDate`` , which is specified by the CA.
|
|
821
826
|
:param certificate_chain: The list of certificates that make up the chain for the certificate.
|
|
822
827
|
:param description: The name or description that's used to identity the certificate.
|
|
823
|
-
:param inactive_date: An optional date that specifies when the certificate becomes inactive.
|
|
828
|
+
:param inactive_date: An optional date that specifies when the certificate becomes inactive. If you do not specify a value, ``InactiveDate`` takes the same value as ``NotAfterDate`` , which is specified by the CA.
|
|
824
829
|
:param private_key: The file that contains the private key for the certificate that's being imported.
|
|
825
830
|
:param tags: Key-value pairs that can be used to group and search for certificates.
|
|
826
831
|
'''
|
|
@@ -1090,10 +1095,10 @@ class CfnCertificateProps:
|
|
|
1090
1095
|
|
|
1091
1096
|
:param certificate: The file name for the certificate.
|
|
1092
1097
|
:param usage: Specifies how this certificate is used. It can be used in the following ways:. - ``SIGNING`` : For signing AS2 messages - ``ENCRYPTION`` : For encrypting AS2 messages - ``TLS`` : For securing AS2 communications sent over HTTPS
|
|
1093
|
-
:param active_date: An optional date that specifies when the certificate becomes active.
|
|
1098
|
+
:param active_date: An optional date that specifies when the certificate becomes active. If you do not specify a value, ``ActiveDate`` takes the same value as ``NotBeforeDate`` , which is specified by the CA.
|
|
1094
1099
|
:param certificate_chain: The list of certificates that make up the chain for the certificate.
|
|
1095
1100
|
:param description: The name or description that's used to identity the certificate.
|
|
1096
|
-
:param inactive_date: An optional date that specifies when the certificate becomes inactive.
|
|
1101
|
+
:param inactive_date: An optional date that specifies when the certificate becomes inactive. If you do not specify a value, ``InactiveDate`` takes the same value as ``NotAfterDate`` , which is specified by the CA.
|
|
1097
1102
|
:param private_key: The file that contains the private key for the certificate that's being imported.
|
|
1098
1103
|
:param tags: Key-value pairs that can be used to group and search for certificates.
|
|
1099
1104
|
|
|
@@ -1177,6 +1182,8 @@ class CfnCertificateProps:
|
|
|
1177
1182
|
def active_date(self) -> typing.Optional[builtins.str]:
|
|
1178
1183
|
'''An optional date that specifies when the certificate becomes active.
|
|
1179
1184
|
|
|
1185
|
+
If you do not specify a value, ``ActiveDate`` takes the same value as ``NotBeforeDate`` , which is specified by the CA.
|
|
1186
|
+
|
|
1180
1187
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-certificate.html#cfn-transfer-certificate-activedate
|
|
1181
1188
|
'''
|
|
1182
1189
|
result = self._values.get("active_date")
|
|
@@ -1204,6 +1211,8 @@ class CfnCertificateProps:
|
|
|
1204
1211
|
def inactive_date(self) -> typing.Optional[builtins.str]:
|
|
1205
1212
|
'''An optional date that specifies when the certificate becomes inactive.
|
|
1206
1213
|
|
|
1214
|
+
If you do not specify a value, ``InactiveDate`` takes the same value as ``NotAfterDate`` , which is specified by the CA.
|
|
1215
|
+
|
|
1207
1216
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-certificate.html#cfn-transfer-certificate-inactivedate
|
|
1208
1217
|
'''
|
|
1209
1218
|
result = self._values.get("inactive_date")
|
|
@@ -1526,7 +1535,7 @@ class CfnConnector(
|
|
|
1526
1535
|
:param compression: Specifies whether the AS2 file is compressed.
|
|
1527
1536
|
:param encryption_algorithm: The algorithm that is used to encrypt the file. Note the following: - Do not use the ``DES_EDE3_CBC`` algorithm unless you must support a legacy client that requires it, as it is a weak encryption algorithm. - You can only specify ``NONE`` if the URL for your connector uses HTTPS. Using HTTPS ensures that no traffic is sent in clear text.
|
|
1528
1537
|
:param local_profile_id: A unique identifier for the AS2 local profile.
|
|
1529
|
-
:param mdn_response: Used for outbound requests (from an AWS Transfer Family
|
|
1538
|
+
:param mdn_response: Used for outbound requests (from an AWS Transfer Family connector to a partner AS2 server) to determine whether the partner response for transfers is synchronous or asynchronous. Specify either of the following values: - ``SYNC`` : The system expects a synchronous MDN response, confirming that the file was transferred successfully (or not). - ``NONE`` : Specifies that no MDN response is required.
|
|
1530
1539
|
:param mdn_signing_algorithm: The signing algorithm for the MDN response. .. epigraph:: If set to DEFAULT (or not set at all), the value for ``SigningAlgorithm`` is used.
|
|
1531
1540
|
:param message_subject: Used as the ``Subject`` HTTP header attribute in AS2 messages that are being sent with the connector.
|
|
1532
1541
|
:param partner_profile_id: A unique identifier for the partner profile for the connector.
|
|
@@ -1651,7 +1660,7 @@ class CfnConnector(
|
|
|
1651
1660
|
|
|
1652
1661
|
@builtins.property
|
|
1653
1662
|
def mdn_response(self) -> typing.Optional[builtins.str]:
|
|
1654
|
-
'''Used for outbound requests (from an AWS Transfer Family
|
|
1663
|
+
'''Used for outbound requests (from an AWS Transfer Family connector to a partner AS2 server) to determine whether the partner response for transfers is synchronous or asynchronous.
|
|
1655
1664
|
|
|
1656
1665
|
Specify either of the following values:
|
|
1657
1666
|
|
|
@@ -2394,7 +2403,7 @@ class CfnServer(
|
|
|
2394
2403
|
:param endpoint_type: The type of endpoint that you want your server to use. You can choose to make your server's endpoint publicly accessible (PUBLIC) or host it inside your VPC. With an endpoint that is hosted in a VPC, you can restrict access to your server and resources only within your VPC or choose to make it internet facing by attaching Elastic IP addresses directly to it. .. epigraph:: After May 19, 2021, you won't be able to create a server using ``EndpointType=VPC_ENDPOINT`` in your AWS account if your account hasn't already done so before May 19, 2021. If you have already created servers with ``EndpointType=VPC_ENDPOINT`` in your AWS account on or before May 19, 2021, you will not be affected. After this date, use ``EndpointType`` = ``VPC`` . For more information, see `Discontinuing the use of VPC_ENDPOINT <https://docs.aws.amazon.com//transfer/latest/userguide/create-server-in-vpc.html#deprecate-vpc-endpoint>`_ . It is recommended that you use ``VPC`` as the ``EndpointType`` . With this endpoint type, you have the option to directly associate up to three Elastic IPv4 addresses (BYO IP included) with your server's endpoint and use VPC security groups to restrict traffic by the client's public IP address. This is not possible with ``EndpointType`` set to ``VPC_ENDPOINT`` .
|
|
2395
2404
|
:param identity_provider_details: Required when ``IdentityProviderType`` is set to ``AWS_DIRECTORY_SERVICE`` , ``AWS _LAMBDA`` or ``API_GATEWAY`` . Accepts an array containing all of the information required to use a directory in ``AWS_DIRECTORY_SERVICE`` or invoke a customer-supplied authentication API, including the API Gateway URL. Cannot be specified when ``IdentityProviderType`` is set to ``SERVICE_MANAGED`` .
|
|
2396
2405
|
:param identity_provider_type: The mode of authentication for a server. The default value is ``SERVICE_MANAGED`` , which allows you to store and access user credentials within the AWS Transfer Family service. Use ``AWS_DIRECTORY_SERVICE`` to provide access to Active Directory groups in AWS Directory Service for Microsoft Active Directory or Microsoft Active Directory in your on-premises environment or in AWS using AD Connector. This option also requires you to provide a Directory ID by using the ``IdentityProviderDetails`` parameter. Use the ``API_GATEWAY`` value to integrate with an identity provider of your choosing. The ``API_GATEWAY`` setting requires you to provide an Amazon API Gateway endpoint URL to call for authentication by using the ``IdentityProviderDetails`` parameter. Use the ``AWS_LAMBDA`` value to directly use an AWS Lambda function as your identity provider. If you choose this value, you must specify the ARN for the Lambda function in the ``Function`` parameter for the ``IdentityProviderDetails`` data type.
|
|
2397
|
-
:param logging_role: The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon
|
|
2406
|
+
:param logging_role: The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon EFS events. When set, you can view user activity in your CloudWatch logs.
|
|
2398
2407
|
:param post_authentication_login_banner: Specifies a string to display when users connect to a server. This string is displayed after the user authenticates. .. epigraph:: The SFTP protocol does not support post-authentication display banners.
|
|
2399
2408
|
:param pre_authentication_login_banner: Specifies a string to display when users connect to a server. This string is displayed before the user authenticates. For example, the following banner displays details about using the system: ``This system is for the use of authorized users only. Individuals using this computer system without authority, or in excess of their authority, are subject to having all of their activities on this system monitored and recorded by system personnel.``
|
|
2400
2409
|
:param protocol_details: The protocol settings that are configured for your server. - To indicate passive mode (for FTP and FTPS protocols), use the ``PassiveIp`` parameter. Enter a single dotted-quad IPv4 address, such as the external IP address of a firewall, router, or load balancer. - To ignore the error that is generated when the client attempts to use the ``SETSTAT`` command on a file that you are uploading to an Amazon S3 bucket, use the ``SetStatOption`` parameter. To have the AWS Transfer Family server ignore the ``SETSTAT`` command and upload files without needing to make any changes to your SFTP client, set the value to ``ENABLE_NO_OP`` . If you set the ``SetStatOption`` parameter to ``ENABLE_NO_OP`` , Transfer Family generates a log entry to Amazon CloudWatch Logs, so that you can determine when the client is making a ``SETSTAT`` call. - To determine whether your AWS Transfer Family server resumes recent, negotiated sessions through a unique session ID, use the ``TlsSessionResumptionMode`` parameter. - ``As2Transports`` indicates the transport method for the AS2 messages. Currently, only HTTP is supported. The ``Protocols`` parameter is an array of strings. *Allowed values* : One or more of ``SFTP`` , ``FTPS`` , ``FTP`` , ``AS2``
|
|
@@ -2606,7 +2615,7 @@ class CfnServer(
|
|
|
2606
2615
|
@builtins.property
|
|
2607
2616
|
@jsii.member(jsii_name="loggingRole")
|
|
2608
2617
|
def logging_role(self) -> typing.Optional[builtins.str]:
|
|
2609
|
-
'''The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon
|
|
2618
|
+
'''The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon EFS events.'''
|
|
2610
2619
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "loggingRole"))
|
|
2611
2620
|
|
|
2612
2621
|
@logging_role.setter
|
|
@@ -3468,7 +3477,7 @@ class CfnServerProps:
|
|
|
3468
3477
|
:param endpoint_type: The type of endpoint that you want your server to use. You can choose to make your server's endpoint publicly accessible (PUBLIC) or host it inside your VPC. With an endpoint that is hosted in a VPC, you can restrict access to your server and resources only within your VPC or choose to make it internet facing by attaching Elastic IP addresses directly to it. .. epigraph:: After May 19, 2021, you won't be able to create a server using ``EndpointType=VPC_ENDPOINT`` in your AWS account if your account hasn't already done so before May 19, 2021. If you have already created servers with ``EndpointType=VPC_ENDPOINT`` in your AWS account on or before May 19, 2021, you will not be affected. After this date, use ``EndpointType`` = ``VPC`` . For more information, see `Discontinuing the use of VPC_ENDPOINT <https://docs.aws.amazon.com//transfer/latest/userguide/create-server-in-vpc.html#deprecate-vpc-endpoint>`_ . It is recommended that you use ``VPC`` as the ``EndpointType`` . With this endpoint type, you have the option to directly associate up to three Elastic IPv4 addresses (BYO IP included) with your server's endpoint and use VPC security groups to restrict traffic by the client's public IP address. This is not possible with ``EndpointType`` set to ``VPC_ENDPOINT`` .
|
|
3469
3478
|
:param identity_provider_details: Required when ``IdentityProviderType`` is set to ``AWS_DIRECTORY_SERVICE`` , ``AWS _LAMBDA`` or ``API_GATEWAY`` . Accepts an array containing all of the information required to use a directory in ``AWS_DIRECTORY_SERVICE`` or invoke a customer-supplied authentication API, including the API Gateway URL. Cannot be specified when ``IdentityProviderType`` is set to ``SERVICE_MANAGED`` .
|
|
3470
3479
|
:param identity_provider_type: The mode of authentication for a server. The default value is ``SERVICE_MANAGED`` , which allows you to store and access user credentials within the AWS Transfer Family service. Use ``AWS_DIRECTORY_SERVICE`` to provide access to Active Directory groups in AWS Directory Service for Microsoft Active Directory or Microsoft Active Directory in your on-premises environment or in AWS using AD Connector. This option also requires you to provide a Directory ID by using the ``IdentityProviderDetails`` parameter. Use the ``API_GATEWAY`` value to integrate with an identity provider of your choosing. The ``API_GATEWAY`` setting requires you to provide an Amazon API Gateway endpoint URL to call for authentication by using the ``IdentityProviderDetails`` parameter. Use the ``AWS_LAMBDA`` value to directly use an AWS Lambda function as your identity provider. If you choose this value, you must specify the ARN for the Lambda function in the ``Function`` parameter for the ``IdentityProviderDetails`` data type.
|
|
3471
|
-
:param logging_role: The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon
|
|
3480
|
+
:param logging_role: The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon EFS events. When set, you can view user activity in your CloudWatch logs.
|
|
3472
3481
|
:param post_authentication_login_banner: Specifies a string to display when users connect to a server. This string is displayed after the user authenticates. .. epigraph:: The SFTP protocol does not support post-authentication display banners.
|
|
3473
3482
|
:param pre_authentication_login_banner: Specifies a string to display when users connect to a server. This string is displayed before the user authenticates. For example, the following banner displays details about using the system: ``This system is for the use of authorized users only. Individuals using this computer system without authority, or in excess of their authority, are subject to having all of their activities on this system monitored and recorded by system personnel.``
|
|
3474
3483
|
:param protocol_details: The protocol settings that are configured for your server. - To indicate passive mode (for FTP and FTPS protocols), use the ``PassiveIp`` parameter. Enter a single dotted-quad IPv4 address, such as the external IP address of a firewall, router, or load balancer. - To ignore the error that is generated when the client attempts to use the ``SETSTAT`` command on a file that you are uploading to an Amazon S3 bucket, use the ``SetStatOption`` parameter. To have the AWS Transfer Family server ignore the ``SETSTAT`` command and upload files without needing to make any changes to your SFTP client, set the value to ``ENABLE_NO_OP`` . If you set the ``SetStatOption`` parameter to ``ENABLE_NO_OP`` , Transfer Family generates a log entry to Amazon CloudWatch Logs, so that you can determine when the client is making a ``SETSTAT`` call. - To determine whether your AWS Transfer Family server resumes recent, negotiated sessions through a unique session ID, use the ``TlsSessionResumptionMode`` parameter. - ``As2Transports`` indicates the transport method for the AS2 messages. Currently, only HTTP is supported. The ``Protocols`` parameter is an array of strings. *Allowed values* : One or more of ``SFTP`` , ``FTPS`` , ``FTP`` , ``AS2``
|
|
@@ -3693,7 +3702,7 @@ class CfnServerProps:
|
|
|
3693
3702
|
|
|
3694
3703
|
@builtins.property
|
|
3695
3704
|
def logging_role(self) -> typing.Optional[builtins.str]:
|
|
3696
|
-
'''The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon
|
|
3705
|
+
'''The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon EFS events.
|
|
3697
3706
|
|
|
3698
3707
|
When set, you can view user activity in your CloudWatch logs.
|
|
3699
3708
|
|