aws-cdk-lib 2.218.0__py3-none-any.whl → 2.219.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 +19 -19
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.219.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +98 -87
- aws_cdk/aws_apigateway/__init__.py +39 -0
- aws_cdk/aws_bcmdataexports/__init__.py +9 -0
- aws_cdk/aws_bedrock/__init__.py +356 -1
- aws_cdk/aws_bedrockagentcore/__init__.py +297 -157
- aws_cdk/aws_codebuild/__init__.py +339 -62
- aws_cdk/aws_connect/__init__.py +9 -9
- aws_cdk/aws_cur/__init__.py +5 -3
- aws_cdk/aws_datasync/__init__.py +44 -22
- aws_cdk/aws_datazone/__init__.py +35 -33
- aws_cdk/aws_directoryservice/__init__.py +0 -29
- aws_cdk/aws_dms/__init__.py +3 -5
- aws_cdk/aws_ec2/__init__.py +2622 -22
- aws_cdk/aws_ecs/__init__.py +2681 -79
- aws_cdk/aws_entityresolution/__init__.py +18 -0
- aws_cdk/aws_greengrassv2/__init__.py +29 -0
- aws_cdk/aws_msk/__init__.py +4 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -2
- aws_cdk/aws_networkmanager/__init__.py +29 -29
- aws_cdk/aws_opensearchservice/__init__.py +58 -0
- aws_cdk/aws_opsworkscm/__init__.py +0 -29
- aws_cdk/aws_quicksight/__init__.py +38 -0
- aws_cdk/aws_rds/__init__.py +33 -14
- aws_cdk/aws_route53/__init__.py +8 -2
- aws_cdk/aws_servicecatalog/__init__.py +78 -86
- aws_cdk/aws_smsvoice/__init__.py +319 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/RECORD +35 -35
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -2684,7 +2684,7 @@ class CfnRoutingProfileProps:
|
|
|
2684
2684
|
:param media_concurrencies: The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
|
|
2685
2685
|
:param name: The name of the routing profile.
|
|
2686
2686
|
:param agent_availability_timer: Whether agents with this routing profile will have their routing order calculated based on *time since their last inbound contact* or *longest idle time* .
|
|
2687
|
-
:param manual_assignment_queue_configs:
|
|
2687
|
+
:param manual_assignment_queue_configs: Contains information about the queue and channel for manual assignment behaviour can be enabled.
|
|
2688
2688
|
:param queue_configs: The inbound queues associated with the routing profile. If no queue is added, the agent can make only outbound calls.
|
|
2689
2689
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
|
2690
2690
|
|
|
@@ -2826,7 +2826,7 @@ class CfnRoutingProfileProps:
|
|
|
2826
2826
|
def manual_assignment_queue_configs(
|
|
2827
2827
|
self,
|
|
2828
2828
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]]:
|
|
2829
|
-
'''
|
|
2829
|
+
'''Contains information about the queue and channel for manual assignment behaviour can be enabled.
|
|
2830
2830
|
|
|
2831
2831
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-routingprofile.html#cfn-connect-routingprofile-manualassignmentqueueconfigs
|
|
2832
2832
|
'''
|
|
@@ -14021,7 +14021,7 @@ class CfnRoutingProfile(
|
|
|
14021
14021
|
:param media_concurrencies: The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
|
|
14022
14022
|
:param name: The name of the routing profile.
|
|
14023
14023
|
:param agent_availability_timer: Whether agents with this routing profile will have their routing order calculated based on *time since their last inbound contact* or *longest idle time* .
|
|
14024
|
-
:param manual_assignment_queue_configs:
|
|
14024
|
+
:param manual_assignment_queue_configs: Contains information about the queue and channel for manual assignment behaviour can be enabled.
|
|
14025
14025
|
:param queue_configs: The inbound queues associated with the routing profile. If no queue is added, the agent can make only outbound calls.
|
|
14026
14026
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
|
14027
14027
|
'''
|
|
@@ -14187,7 +14187,7 @@ class CfnRoutingProfile(
|
|
|
14187
14187
|
def manual_assignment_queue_configs(
|
|
14188
14188
|
self,
|
|
14189
14189
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]]:
|
|
14190
|
-
'''
|
|
14190
|
+
'''Contains information about the queue and channel for manual assignment behaviour can be enabled.'''
|
|
14191
14191
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]], jsii.get(self, "manualAssignmentQueueConfigs"))
|
|
14192
14192
|
|
|
14193
14193
|
@manual_assignment_queue_configs.setter
|
|
@@ -14398,9 +14398,9 @@ class CfnRoutingProfile(
|
|
|
14398
14398
|
*,
|
|
14399
14399
|
queue_reference: typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.RoutingProfileQueueReferenceProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
14400
14400
|
) -> None:
|
|
14401
|
-
'''Contains information about the manual assignment
|
|
14401
|
+
'''Contains information about the queue and channel for manual assignment behaviour can be enabled.
|
|
14402
14402
|
|
|
14403
|
-
:param queue_reference: Contains
|
|
14403
|
+
:param queue_reference: Contains information about a queue resource.
|
|
14404
14404
|
|
|
14405
14405
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-routingprofilemanualassignmentqueueconfig.html
|
|
14406
14406
|
:exampleMetadata: fixture=_generated
|
|
@@ -14429,7 +14429,7 @@ class CfnRoutingProfile(
|
|
|
14429
14429
|
def queue_reference(
|
|
14430
14430
|
self,
|
|
14431
14431
|
) -> typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileQueueReferenceProperty"]:
|
|
14432
|
-
'''Contains
|
|
14432
|
+
'''Contains information about a queue resource.
|
|
14433
14433
|
|
|
14434
14434
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-routingprofilemanualassignmentqueueconfig.html#cfn-connect-routingprofile-routingprofilemanualassignmentqueueconfig-queuereference
|
|
14435
14435
|
'''
|
|
@@ -18125,7 +18125,7 @@ class CfnUser(
|
|
|
18125
18125
|
:param after_contact_work_time_limit: The After Call Work (ACW) timeout setting, in seconds. This parameter has a minimum value of 0 and a maximum value of 2,000,000 seconds (24 days). Enter 0 if you don't want to allocate a specific amount of ACW time. It essentially means an indefinite amount of time. When the conversation ends, ACW starts; the agent must choose Close contact to end ACW. .. epigraph:: When returned by a ``SearchUsers`` call, ``AfterContactWorkTimeLimit`` is returned in milliseconds.
|
|
18126
18126
|
:param auto_accept: The Auto accept setting.
|
|
18127
18127
|
:param desk_phone_number: The phone number for the user's desk phone.
|
|
18128
|
-
:param persistent_connection: The
|
|
18128
|
+
:param persistent_connection: The persistent connection setting for the user.
|
|
18129
18129
|
|
|
18130
18130
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-userphoneconfig.html
|
|
18131
18131
|
:exampleMetadata: fixture=_generated
|
|
@@ -18213,7 +18213,7 @@ class CfnUser(
|
|
|
18213
18213
|
def persistent_connection(
|
|
18214
18214
|
self,
|
|
18215
18215
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
18216
|
-
'''The
|
|
18216
|
+
'''The persistent connection setting for the user.
|
|
18217
18217
|
|
|
18218
18218
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-userphoneconfig.html#cfn-connect-user-userphoneconfig-persistentconnection
|
|
18219
18219
|
'''
|
aws_cdk/aws_cur/__init__.py
CHANGED
|
@@ -120,7 +120,7 @@ class CfnReportDefinitionProps:
|
|
|
120
120
|
:param additional_artifacts: A list of manifests that you want AWS to create for this report.
|
|
121
121
|
:param additional_schema_elements: A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs.
|
|
122
122
|
:param billing_view_arn: The Amazon Resource Name (ARN) of the billing view. You can get this value by using the billing view service public APIs.
|
|
123
|
-
:param tags:
|
|
123
|
+
:param tags: The tags to be assigned to the report definition resource.
|
|
124
124
|
|
|
125
125
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html
|
|
126
126
|
:exampleMetadata: fixture=_generated
|
|
@@ -316,7 +316,8 @@ class CfnReportDefinitionProps:
|
|
|
316
316
|
|
|
317
317
|
@builtins.property
|
|
318
318
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
319
|
-
'''
|
|
319
|
+
'''The tags to be assigned to the report definition resource.
|
|
320
|
+
|
|
320
321
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html#cfn-cur-reportdefinition-tags
|
|
321
322
|
'''
|
|
322
323
|
result = self._values.get("tags")
|
|
@@ -499,7 +500,7 @@ class CfnReportDefinition(
|
|
|
499
500
|
:param additional_artifacts: A list of manifests that you want AWS to create for this report.
|
|
500
501
|
:param additional_schema_elements: A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs.
|
|
501
502
|
:param billing_view_arn: The Amazon Resource Name (ARN) of the billing view. You can get this value by using the billing view service public APIs.
|
|
502
|
-
:param tags:
|
|
503
|
+
:param tags: The tags to be assigned to the report definition resource.
|
|
503
504
|
'''
|
|
504
505
|
if __debug__:
|
|
505
506
|
type_hints = typing.get_type_hints(_typecheckingstub__fa6a90098f39859b607fa8b8453bf94b62703cdf41682ff1f90c565abdedbb57)
|
|
@@ -761,6 +762,7 @@ class CfnReportDefinition(
|
|
|
761
762
|
@builtins.property
|
|
762
763
|
@jsii.member(jsii_name="tags")
|
|
763
764
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
765
|
+
'''The tags to be assigned to the report definition resource.'''
|
|
764
766
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
765
767
|
|
|
766
768
|
@tags.setter
|
aws_cdk/aws_datasync/__init__.py
CHANGED
|
@@ -2223,8 +2223,8 @@ class CfnLocationSMBProps:
|
|
|
2223
2223
|
|
|
2224
2224
|
:param agent_arns: Specifies the DataSync agent (or agents) that can connect to your SMB file server. You specify an agent by using its Amazon Resource Name (ARN).
|
|
2225
2225
|
:param authentication_type: The authentication mode used to determine identity of user.
|
|
2226
|
-
:param cmk_secret_config: Specifies configuration information for a DataSync-managed secret, such as
|
|
2227
|
-
:param custom_secret_config: Specifies configuration information for a customer-managed secret
|
|
2226
|
+
:param cmk_secret_config: Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key . .. epigraph:: You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
2227
|
+
:param custom_secret_config: Specifies configuration information for a customer-managed Secrets Manager secret where a storage location authentication token or secret key is stored in plain text. This configuration includes the secret ARN, and the ARN for an IAM role that provides access to the secret. .. epigraph:: You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
2228
2228
|
:param dns_ip_addresses: Specifies the IPv4 addresses for the DNS servers that your SMB file server belongs to. This parameter applies only if AuthenticationType is set to KERBEROS. If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right SMB file server.
|
|
2229
2229
|
:param domain: Specifies the Windows domain name that your SMB file server belongs to. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` . If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right file server.
|
|
2230
2230
|
:param kerberos_keytab: The Base64 string representation of the Keytab file. Specifies your Kerberos key table (keytab) file, which includes mappings between your service principal name (SPN) and encryption keys. To avoid task execution errors, make sure that the SPN in the keytab file matches exactly what you specify for KerberosPrincipal and in your krb5.conf file.
|
|
@@ -2351,7 +2351,11 @@ class CfnLocationSMBProps:
|
|
|
2351
2351
|
def cmk_secret_config(
|
|
2352
2352
|
self,
|
|
2353
2353
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLocationSMB.CmkSecretConfigProperty"]]:
|
|
2354
|
-
'''Specifies configuration information for a DataSync-managed secret, such as
|
|
2354
|
+
'''Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key .
|
|
2355
|
+
|
|
2356
|
+
.. epigraph::
|
|
2357
|
+
|
|
2358
|
+
You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
2355
2359
|
|
|
2356
2360
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html#cfn-datasync-locationsmb-cmksecretconfig
|
|
2357
2361
|
'''
|
|
@@ -2362,7 +2366,12 @@ class CfnLocationSMBProps:
|
|
|
2362
2366
|
def custom_secret_config(
|
|
2363
2367
|
self,
|
|
2364
2368
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLocationSMB.CustomSecretConfigProperty"]]:
|
|
2365
|
-
'''Specifies configuration information for a customer-managed
|
|
2369
|
+
'''Specifies configuration information for a customer-managed Secrets Manager secret where a storage location authentication token or secret key is stored in plain text.
|
|
2370
|
+
|
|
2371
|
+
This configuration includes the secret ARN, and the ARN for an IAM role that provides access to the secret.
|
|
2372
|
+
.. epigraph::
|
|
2373
|
+
|
|
2374
|
+
You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
2366
2375
|
|
|
2367
2376
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html#cfn-datasync-locationsmb-customsecretconfig
|
|
2368
2377
|
'''
|
|
@@ -8287,8 +8296,8 @@ class CfnLocationSMB(
|
|
|
8287
8296
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
8288
8297
|
:param agent_arns: Specifies the DataSync agent (or agents) that can connect to your SMB file server. You specify an agent by using its Amazon Resource Name (ARN).
|
|
8289
8298
|
:param authentication_type: The authentication mode used to determine identity of user.
|
|
8290
|
-
:param cmk_secret_config: Specifies configuration information for a DataSync-managed secret, such as
|
|
8291
|
-
:param custom_secret_config: Specifies configuration information for a customer-managed secret
|
|
8299
|
+
:param cmk_secret_config: Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key . .. epigraph:: You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
8300
|
+
:param custom_secret_config: Specifies configuration information for a customer-managed Secrets Manager secret where a storage location authentication token or secret key is stored in plain text. This configuration includes the secret ARN, and the ARN for an IAM role that provides access to the secret. .. epigraph:: You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
8292
8301
|
:param dns_ip_addresses: Specifies the IPv4 addresses for the DNS servers that your SMB file server belongs to. This parameter applies only if AuthenticationType is set to KERBEROS. If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right SMB file server.
|
|
8293
8302
|
:param domain: Specifies the Windows domain name that your SMB file server belongs to. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` . If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right file server.
|
|
8294
8303
|
:param kerberos_keytab: The Base64 string representation of the Keytab file. Specifies your Kerberos key table (keytab) file, which includes mappings between your service principal name (SPN) and encryption keys. To avoid task execution errors, make sure that the SPN in the keytab file matches exactly what you specify for KerberosPrincipal and in your krb5.conf file.
|
|
@@ -8358,7 +8367,9 @@ class CfnLocationSMB(
|
|
|
8358
8367
|
@builtins.property
|
|
8359
8368
|
@jsii.member(jsii_name="attrCmkSecretConfigSecretArn")
|
|
8360
8369
|
def attr_cmk_secret_config_secret_arn(self) -> builtins.str:
|
|
8361
|
-
'''Specifies the ARN for
|
|
8370
|
+
'''Specifies the ARN for the DataSync-managed AWS Secrets Manager secret that that is used to access a specific storage location.
|
|
8371
|
+
|
|
8372
|
+
This property is generated by DataSync and is read-only. DataSync encrypts this secret with the KMS key that you specify for ``KmsKeyArn`` .
|
|
8362
8373
|
|
|
8363
8374
|
:cloudformationAttribute: CmkSecretConfig.SecretArn
|
|
8364
8375
|
'''
|
|
@@ -8441,7 +8452,7 @@ class CfnLocationSMB(
|
|
|
8441
8452
|
def cmk_secret_config(
|
|
8442
8453
|
self,
|
|
8443
8454
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLocationSMB.CmkSecretConfigProperty"]]:
|
|
8444
|
-
'''Specifies configuration information for a DataSync-managed secret, such as
|
|
8455
|
+
'''Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key .'''
|
|
8445
8456
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLocationSMB.CmkSecretConfigProperty"]], jsii.get(self, "cmkSecretConfig"))
|
|
8446
8457
|
|
|
8447
8458
|
@cmk_secret_config.setter
|
|
@@ -8459,7 +8470,7 @@ class CfnLocationSMB(
|
|
|
8459
8470
|
def custom_secret_config(
|
|
8460
8471
|
self,
|
|
8461
8472
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLocationSMB.CustomSecretConfigProperty"]]:
|
|
8462
|
-
'''Specifies configuration information for a customer-managed
|
|
8473
|
+
'''Specifies configuration information for a customer-managed Secrets Manager secret where a storage location authentication token or secret key is stored in plain text.'''
|
|
8463
8474
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLocationSMB.CustomSecretConfigProperty"]], jsii.get(self, "customSecretConfig"))
|
|
8464
8475
|
|
|
8465
8476
|
@custom_secret_config.setter
|
|
@@ -8635,10 +8646,14 @@ class CfnLocationSMB(
|
|
|
8635
8646
|
kms_key_arn: typing.Optional[builtins.str] = None,
|
|
8636
8647
|
secret_arn: typing.Optional[builtins.str] = None,
|
|
8637
8648
|
) -> None:
|
|
8638
|
-
'''Specifies configuration information for a DataSync-managed secret, such as
|
|
8649
|
+
'''Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key .
|
|
8650
|
+
|
|
8651
|
+
.. epigraph::
|
|
8652
|
+
|
|
8653
|
+
You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
8639
8654
|
|
|
8640
|
-
:param kms_key_arn: Specifies the ARN for the customer-managed AWS KMS key
|
|
8641
|
-
:param secret_arn: Specifies the ARN for
|
|
8655
|
+
:param kms_key_arn: Specifies the ARN for the customer-managed AWS KMS key that DataSync uses to encrypt the DataSync-managed secret stored for ``SecretArn`` . DataSync provides this key to AWS Secrets Manager .
|
|
8656
|
+
:param secret_arn: Specifies the ARN for the DataSync-managed AWS Secrets Manager secret that that is used to access a specific storage location. This property is generated by DataSync and is read-only. DataSync encrypts this secret with the KMS key that you specify for ``KmsKeyArn`` .
|
|
8642
8657
|
|
|
8643
8658
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-cmksecretconfig.html
|
|
8644
8659
|
:exampleMetadata: fixture=_generated
|
|
@@ -8666,9 +8681,9 @@ class CfnLocationSMB(
|
|
|
8666
8681
|
|
|
8667
8682
|
@builtins.property
|
|
8668
8683
|
def kms_key_arn(self) -> typing.Optional[builtins.str]:
|
|
8669
|
-
'''Specifies the ARN for the customer-managed AWS KMS key
|
|
8684
|
+
'''Specifies the ARN for the customer-managed AWS KMS key that DataSync uses to encrypt the DataSync-managed secret stored for ``SecretArn`` .
|
|
8670
8685
|
|
|
8671
|
-
DataSync provides this key to AWS Secrets Manager.
|
|
8686
|
+
DataSync provides this key to AWS Secrets Manager .
|
|
8672
8687
|
|
|
8673
8688
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-cmksecretconfig.html#cfn-datasync-locationsmb-cmksecretconfig-kmskeyarn
|
|
8674
8689
|
'''
|
|
@@ -8677,7 +8692,9 @@ class CfnLocationSMB(
|
|
|
8677
8692
|
|
|
8678
8693
|
@builtins.property
|
|
8679
8694
|
def secret_arn(self) -> typing.Optional[builtins.str]:
|
|
8680
|
-
'''Specifies the ARN for
|
|
8695
|
+
'''Specifies the ARN for the DataSync-managed AWS Secrets Manager secret that that is used to access a specific storage location.
|
|
8696
|
+
|
|
8697
|
+
This property is generated by DataSync and is read-only. DataSync encrypts this secret with the KMS key that you specify for ``KmsKeyArn`` .
|
|
8681
8698
|
|
|
8682
8699
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-cmksecretconfig.html#cfn-datasync-locationsmb-cmksecretconfig-secretarn
|
|
8683
8700
|
'''
|
|
@@ -8710,10 +8727,15 @@ class CfnLocationSMB(
|
|
|
8710
8727
|
secret_access_role_arn: builtins.str,
|
|
8711
8728
|
secret_arn: builtins.str,
|
|
8712
8729
|
) -> None:
|
|
8713
|
-
'''Specifies configuration information for a customer-managed
|
|
8730
|
+
'''Specifies configuration information for a customer-managed Secrets Manager secret where a storage location authentication token or secret key is stored in plain text.
|
|
8714
8731
|
|
|
8715
|
-
|
|
8716
|
-
|
|
8732
|
+
This configuration includes the secret ARN, and the ARN for an IAM role that provides access to the secret.
|
|
8733
|
+
.. epigraph::
|
|
8734
|
+
|
|
8735
|
+
You can use either ``CmkSecretConfig`` or ``CustomSecretConfig`` to provide credentials for a ``CreateLocation`` request. Do not provide both parameters for the same request.
|
|
8736
|
+
|
|
8737
|
+
:param secret_access_role_arn: Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for ``SecretArn`` .
|
|
8738
|
+
:param secret_arn: Specifies the ARN for an AWS Secrets Manager secret.
|
|
8717
8739
|
|
|
8718
8740
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-customsecretconfig.html
|
|
8719
8741
|
:exampleMetadata: fixture=_generated
|
|
@@ -8740,7 +8762,7 @@ class CfnLocationSMB(
|
|
|
8740
8762
|
|
|
8741
8763
|
@builtins.property
|
|
8742
8764
|
def secret_access_role_arn(self) -> builtins.str:
|
|
8743
|
-
'''Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
8765
|
+
'''Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for ``SecretArn`` .
|
|
8744
8766
|
|
|
8745
8767
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-customsecretconfig.html#cfn-datasync-locationsmb-customsecretconfig-secretaccessrolearn
|
|
8746
8768
|
'''
|
|
@@ -8750,7 +8772,7 @@ class CfnLocationSMB(
|
|
|
8750
8772
|
|
|
8751
8773
|
@builtins.property
|
|
8752
8774
|
def secret_arn(self) -> builtins.str:
|
|
8753
|
-
'''Specifies the ARN for
|
|
8775
|
+
'''Specifies the ARN for an AWS Secrets Manager secret.
|
|
8754
8776
|
|
|
8755
8777
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-customsecretconfig.html#cfn-datasync-locationsmb-customsecretconfig-secretarn
|
|
8756
8778
|
'''
|
|
@@ -8776,9 +8798,9 @@ class CfnLocationSMB(
|
|
|
8776
8798
|
)
|
|
8777
8799
|
class ManagedSecretConfigProperty:
|
|
8778
8800
|
def __init__(self, *, secret_arn: builtins.str) -> None:
|
|
8779
|
-
'''Specifies configuration information for a DataSync-managed secret, such as
|
|
8801
|
+
'''Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location.
|
|
8780
8802
|
|
|
8781
|
-
DataSync uses the default AWS-managed KMS key to encrypt this secret in AWS Secrets Manager.
|
|
8803
|
+
DataSync uses the default AWS -managed KMS key to encrypt this secret in AWS Secrets Manager .
|
|
8782
8804
|
|
|
8783
8805
|
:param secret_arn: Specifies the ARN for an AWS Secrets Manager secret.
|
|
8784
8806
|
|
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -1709,12 +1709,12 @@ class CfnFormTypeProps:
|
|
|
1709
1709
|
) -> None:
|
|
1710
1710
|
'''Properties for defining a ``CfnFormType``.
|
|
1711
1711
|
|
|
1712
|
-
:param domain_identifier: The
|
|
1713
|
-
:param model:
|
|
1714
|
-
:param name: The name of
|
|
1715
|
-
:param owning_project_identifier: The
|
|
1716
|
-
:param description: The description of
|
|
1717
|
-
:param status: The status of
|
|
1712
|
+
:param domain_identifier: The identifier of the Amazon DataZone domain in which the form type exists.
|
|
1713
|
+
:param model: The model of the form type.
|
|
1714
|
+
:param name: The name of the form type.
|
|
1715
|
+
:param owning_project_identifier: The identifier of the project that owns the form type.
|
|
1716
|
+
:param description: The description of the metadata form type.
|
|
1717
|
+
:param status: The status of the form type.
|
|
1718
1718
|
|
|
1719
1719
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html
|
|
1720
1720
|
:exampleMetadata: fixture=_generated
|
|
@@ -1759,7 +1759,7 @@ class CfnFormTypeProps:
|
|
|
1759
1759
|
|
|
1760
1760
|
@builtins.property
|
|
1761
1761
|
def domain_identifier(self) -> builtins.str:
|
|
1762
|
-
'''The
|
|
1762
|
+
'''The identifier of the Amazon DataZone domain in which the form type exists.
|
|
1763
1763
|
|
|
1764
1764
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-domainidentifier
|
|
1765
1765
|
'''
|
|
@@ -1769,7 +1769,7 @@ class CfnFormTypeProps:
|
|
|
1769
1769
|
|
|
1770
1770
|
@builtins.property
|
|
1771
1771
|
def model(self) -> typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"]:
|
|
1772
|
-
'''
|
|
1772
|
+
'''The model of the form type.
|
|
1773
1773
|
|
|
1774
1774
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-model
|
|
1775
1775
|
'''
|
|
@@ -1779,7 +1779,7 @@ class CfnFormTypeProps:
|
|
|
1779
1779
|
|
|
1780
1780
|
@builtins.property
|
|
1781
1781
|
def name(self) -> builtins.str:
|
|
1782
|
-
'''The name of
|
|
1782
|
+
'''The name of the form type.
|
|
1783
1783
|
|
|
1784
1784
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-name
|
|
1785
1785
|
'''
|
|
@@ -1789,7 +1789,7 @@ class CfnFormTypeProps:
|
|
|
1789
1789
|
|
|
1790
1790
|
@builtins.property
|
|
1791
1791
|
def owning_project_identifier(self) -> builtins.str:
|
|
1792
|
-
'''The
|
|
1792
|
+
'''The identifier of the project that owns the form type.
|
|
1793
1793
|
|
|
1794
1794
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-owningprojectidentifier
|
|
1795
1795
|
'''
|
|
@@ -1799,7 +1799,7 @@ class CfnFormTypeProps:
|
|
|
1799
1799
|
|
|
1800
1800
|
@builtins.property
|
|
1801
1801
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1802
|
-
'''The description of
|
|
1802
|
+
'''The description of the metadata form type.
|
|
1803
1803
|
|
|
1804
1804
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-description
|
|
1805
1805
|
'''
|
|
@@ -1808,7 +1808,7 @@ class CfnFormTypeProps:
|
|
|
1808
1808
|
|
|
1809
1809
|
@builtins.property
|
|
1810
1810
|
def status(self) -> typing.Optional[builtins.str]:
|
|
1811
|
-
'''The status of
|
|
1811
|
+
'''The status of the form type.
|
|
1812
1812
|
|
|
1813
1813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-status
|
|
1814
1814
|
'''
|
|
@@ -11744,7 +11744,7 @@ class CfnFormType(
|
|
|
11744
11744
|
metaclass=jsii.JSIIMeta,
|
|
11745
11745
|
jsii_type="aws-cdk-lib.aws_datazone.CfnFormType",
|
|
11746
11746
|
):
|
|
11747
|
-
'''
|
|
11747
|
+
'''The details of the metadata form type.
|
|
11748
11748
|
|
|
11749
11749
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html
|
|
11750
11750
|
:cloudformationResource: AWS::DataZone::FormType
|
|
@@ -11785,12 +11785,12 @@ class CfnFormType(
|
|
|
11785
11785
|
'''
|
|
11786
11786
|
:param scope: Scope in which this resource is defined.
|
|
11787
11787
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
11788
|
-
:param domain_identifier: The
|
|
11789
|
-
:param model:
|
|
11790
|
-
:param name: The name of
|
|
11791
|
-
:param owning_project_identifier: The
|
|
11792
|
-
:param description: The description of
|
|
11793
|
-
:param status: The status of
|
|
11788
|
+
:param domain_identifier: The identifier of the Amazon DataZone domain in which the form type exists.
|
|
11789
|
+
:param model: The model of the form type.
|
|
11790
|
+
:param name: The name of the form type.
|
|
11791
|
+
:param owning_project_identifier: The identifier of the project that owns the form type.
|
|
11792
|
+
:param description: The description of the metadata form type.
|
|
11793
|
+
:param status: The status of the form type.
|
|
11794
11794
|
'''
|
|
11795
11795
|
if __debug__:
|
|
11796
11796
|
type_hints = typing.get_type_hints(_typecheckingstub__f81071a1a99e5415d6626de96c93bf3bae9973b224056b0dd081b7dea58b9c42)
|
|
@@ -11840,7 +11840,7 @@ class CfnFormType(
|
|
|
11840
11840
|
@builtins.property
|
|
11841
11841
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
11842
11842
|
def attr_created_at(self) -> builtins.str:
|
|
11843
|
-
'''The timestamp of when
|
|
11843
|
+
'''The timestamp of when the metadata form type was created.
|
|
11844
11844
|
|
|
11845
11845
|
:cloudformationAttribute: CreatedAt
|
|
11846
11846
|
'''
|
|
@@ -11849,7 +11849,7 @@ class CfnFormType(
|
|
|
11849
11849
|
@builtins.property
|
|
11850
11850
|
@jsii.member(jsii_name="attrCreatedBy")
|
|
11851
11851
|
def attr_created_by(self) -> builtins.str:
|
|
11852
|
-
'''The user who created
|
|
11852
|
+
'''The Amazon DataZone user who created teh metadata form type.
|
|
11853
11853
|
|
|
11854
11854
|
:cloudformationAttribute: CreatedBy
|
|
11855
11855
|
'''
|
|
@@ -11858,7 +11858,7 @@ class CfnFormType(
|
|
|
11858
11858
|
@builtins.property
|
|
11859
11859
|
@jsii.member(jsii_name="attrDomainId")
|
|
11860
11860
|
def attr_domain_id(self) -> builtins.str:
|
|
11861
|
-
'''The
|
|
11861
|
+
'''The identifier of the Amazon DataZone domain in which the form type exists.
|
|
11862
11862
|
|
|
11863
11863
|
:cloudformationAttribute: DomainId
|
|
11864
11864
|
'''
|
|
@@ -11867,7 +11867,7 @@ class CfnFormType(
|
|
|
11867
11867
|
@builtins.property
|
|
11868
11868
|
@jsii.member(jsii_name="attrFormTypeIdentifier")
|
|
11869
11869
|
def attr_form_type_identifier(self) -> builtins.str:
|
|
11870
|
-
'''The ID of
|
|
11870
|
+
'''The ID of the metadata form type.
|
|
11871
11871
|
|
|
11872
11872
|
:cloudformationAttribute: FormTypeIdentifier
|
|
11873
11873
|
'''
|
|
@@ -11876,7 +11876,7 @@ class CfnFormType(
|
|
|
11876
11876
|
@builtins.property
|
|
11877
11877
|
@jsii.member(jsii_name="attrOwningProjectId")
|
|
11878
11878
|
def attr_owning_project_id(self) -> builtins.str:
|
|
11879
|
-
'''The
|
|
11879
|
+
'''The identifier of the project that owns the form type.
|
|
11880
11880
|
|
|
11881
11881
|
:cloudformationAttribute: OwningProjectId
|
|
11882
11882
|
'''
|
|
@@ -11885,7 +11885,7 @@ class CfnFormType(
|
|
|
11885
11885
|
@builtins.property
|
|
11886
11886
|
@jsii.member(jsii_name="attrRevision")
|
|
11887
11887
|
def attr_revision(self) -> builtins.str:
|
|
11888
|
-
'''The revision of
|
|
11888
|
+
'''The revision of the form type.
|
|
11889
11889
|
|
|
11890
11890
|
:cloudformationAttribute: Revision
|
|
11891
11891
|
'''
|
|
@@ -11905,7 +11905,7 @@ class CfnFormType(
|
|
|
11905
11905
|
@builtins.property
|
|
11906
11906
|
@jsii.member(jsii_name="domainIdentifier")
|
|
11907
11907
|
def domain_identifier(self) -> builtins.str:
|
|
11908
|
-
'''The
|
|
11908
|
+
'''The identifier of the Amazon DataZone domain in which the form type exists.'''
|
|
11909
11909
|
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
11910
11910
|
|
|
11911
11911
|
@domain_identifier.setter
|
|
@@ -11918,7 +11918,7 @@ class CfnFormType(
|
|
|
11918
11918
|
@builtins.property
|
|
11919
11919
|
@jsii.member(jsii_name="model")
|
|
11920
11920
|
def model(self) -> typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"]:
|
|
11921
|
-
'''
|
|
11921
|
+
'''The model of the form type.'''
|
|
11922
11922
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"], jsii.get(self, "model"))
|
|
11923
11923
|
|
|
11924
11924
|
@model.setter
|
|
@@ -11934,7 +11934,7 @@ class CfnFormType(
|
|
|
11934
11934
|
@builtins.property
|
|
11935
11935
|
@jsii.member(jsii_name="name")
|
|
11936
11936
|
def name(self) -> builtins.str:
|
|
11937
|
-
'''The name of
|
|
11937
|
+
'''The name of the form type.'''
|
|
11938
11938
|
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
11939
11939
|
|
|
11940
11940
|
@name.setter
|
|
@@ -11947,7 +11947,7 @@ class CfnFormType(
|
|
|
11947
11947
|
@builtins.property
|
|
11948
11948
|
@jsii.member(jsii_name="owningProjectIdentifier")
|
|
11949
11949
|
def owning_project_identifier(self) -> builtins.str:
|
|
11950
|
-
'''The
|
|
11950
|
+
'''The identifier of the project that owns the form type.'''
|
|
11951
11951
|
return typing.cast(builtins.str, jsii.get(self, "owningProjectIdentifier"))
|
|
11952
11952
|
|
|
11953
11953
|
@owning_project_identifier.setter
|
|
@@ -11960,7 +11960,7 @@ class CfnFormType(
|
|
|
11960
11960
|
@builtins.property
|
|
11961
11961
|
@jsii.member(jsii_name="description")
|
|
11962
11962
|
def description(self) -> typing.Optional[builtins.str]:
|
|
11963
|
-
'''The description of
|
|
11963
|
+
'''The description of the metadata form type.'''
|
|
11964
11964
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
11965
11965
|
|
|
11966
11966
|
@description.setter
|
|
@@ -11973,7 +11973,7 @@ class CfnFormType(
|
|
|
11973
11973
|
@builtins.property
|
|
11974
11974
|
@jsii.member(jsii_name="status")
|
|
11975
11975
|
def status(self) -> typing.Optional[builtins.str]:
|
|
11976
|
-
'''The status of
|
|
11976
|
+
'''The status of the form type.'''
|
|
11977
11977
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
|
|
11978
11978
|
|
|
11979
11979
|
@status.setter
|
|
@@ -12294,7 +12294,8 @@ class CfnOwner(
|
|
|
12294
12294
|
@builtins.property
|
|
12295
12295
|
@jsii.member(jsii_name="attrOwnerIdentifier")
|
|
12296
12296
|
def attr_owner_identifier(self) -> builtins.str:
|
|
12297
|
-
'''
|
|
12297
|
+
'''The ID of the entity to which you want to add an owner.
|
|
12298
|
+
|
|
12298
12299
|
:cloudformationAttribute: OwnerIdentifier
|
|
12299
12300
|
'''
|
|
12300
12301
|
return typing.cast(builtins.str, jsii.get(self, "attrOwnerIdentifier"))
|
|
@@ -12302,7 +12303,8 @@ class CfnOwner(
|
|
|
12302
12303
|
@builtins.property
|
|
12303
12304
|
@jsii.member(jsii_name="attrOwnerType")
|
|
12304
12305
|
def attr_owner_type(self) -> builtins.str:
|
|
12305
|
-
'''
|
|
12306
|
+
'''The owner that you want to add to the entity.
|
|
12307
|
+
|
|
12306
12308
|
:cloudformationAttribute: OwnerType
|
|
12307
12309
|
'''
|
|
12308
12310
|
return typing.cast(builtins.str, jsii.get(self, "attrOwnerType"))
|
|
@@ -1026,27 +1026,6 @@ class CfnSimpleAD(
|
|
|
1026
1026
|
|
|
1027
1027
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
1028
1028
|
|
|
1029
|
-
@jsii.member(jsii_name="fromDirectoryId")
|
|
1030
|
-
@builtins.classmethod
|
|
1031
|
-
def from_directory_id(
|
|
1032
|
-
cls,
|
|
1033
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
1034
|
-
id: builtins.str,
|
|
1035
|
-
directory_id: builtins.str,
|
|
1036
|
-
) -> ISimpleADRef:
|
|
1037
|
-
'''Creates a new ISimpleADRef from a directoryId.
|
|
1038
|
-
|
|
1039
|
-
:param scope: -
|
|
1040
|
-
:param id: -
|
|
1041
|
-
:param directory_id: -
|
|
1042
|
-
'''
|
|
1043
|
-
if __debug__:
|
|
1044
|
-
type_hints = typing.get_type_hints(_typecheckingstub__4edb8188cf1a787819f9e08e002165b6e7e58550d088f80151ce91f3ee2ad4f0)
|
|
1045
|
-
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1046
|
-
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
1047
|
-
check_type(argname="argument directory_id", value=directory_id, expected_type=type_hints["directory_id"])
|
|
1048
|
-
return typing.cast(ISimpleADRef, jsii.sinvoke(cls, "fromDirectoryId", [scope, id, directory_id]))
|
|
1049
|
-
|
|
1050
1029
|
@jsii.member(jsii_name="inspect")
|
|
1051
1030
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
1052
1031
|
'''Examines the CloudFormation resource and discloses attributes.
|
|
@@ -1467,14 +1446,6 @@ def _typecheckingstub__40820ee1ed03f2cd4befa65e6404c1024999677e0624ca5450f4b1f92
|
|
|
1467
1446
|
"""Type checking stubs"""
|
|
1468
1447
|
pass
|
|
1469
1448
|
|
|
1470
|
-
def _typecheckingstub__4edb8188cf1a787819f9e08e002165b6e7e58550d088f80151ce91f3ee2ad4f0(
|
|
1471
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
1472
|
-
id: builtins.str,
|
|
1473
|
-
directory_id: builtins.str,
|
|
1474
|
-
) -> None:
|
|
1475
|
-
"""Type checking stubs"""
|
|
1476
|
-
pass
|
|
1477
|
-
|
|
1478
1449
|
def _typecheckingstub__adbd82c9a36437463cde56b3a4ad4d5c5c16f2073416fd9e1873351e5eb928b2(
|
|
1479
1450
|
inspector: _TreeInspector_488e0dd5,
|
|
1480
1451
|
) -> None:
|
aws_cdk/aws_dms/__init__.py
CHANGED
|
@@ -1768,7 +1768,7 @@ class CfnInstanceProfileProps:
|
|
|
1768
1768
|
:param description: A description of the instance profile. Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.
|
|
1769
1769
|
:param instance_profile_identifier: The identifier of the instance profile. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
|
|
1770
1770
|
:param instance_profile_name: The user-friendly name for the instance profile.
|
|
1771
|
-
:param kms_key_arn: The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the ``KmsKeyArn`` parameter, then AWS DMS uses
|
|
1771
|
+
:param kms_key_arn: The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the ``KmsKeyArn`` parameter, then AWS DMS uses an AWS owned encryption key to encrypt your resources.
|
|
1772
1772
|
:param network_type: Specifies the network type for the instance profile. A value of ``IPV4`` represents an instance profile with IPv4 network type and only supports IPv4 addressing. A value of ``IPV6`` represents an instance profile with IPv6 network type and only supports IPv6 addressing. A value of ``DUAL`` represents an instance profile with dual network type that supports IPv4 and IPv6 addressing.
|
|
1773
1773
|
:param publicly_accessible: Specifies the accessibility options for the instance profile. A value of ``true`` represents an instance profile with a public IP address. A value of ``false`` represents an instance profile with a private IP address. The default value is ``true`` . Default: - false
|
|
1774
1774
|
:param subnet_group_identifier: The identifier of the subnet group that is associated with the instance profile.
|
|
@@ -1878,9 +1878,7 @@ class CfnInstanceProfileProps:
|
|
|
1878
1878
|
def kms_key_arn(self) -> typing.Optional[builtins.str]:
|
|
1879
1879
|
'''The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile.
|
|
1880
1880
|
|
|
1881
|
-
If you don't specify a value for the ``KmsKeyArn`` parameter, then AWS DMS uses
|
|
1882
|
-
|
|
1883
|
-
AWS KMS creates the default encryption key for your AWS account . Your AWS account has a different default encryption key for each AWS Region .
|
|
1881
|
+
If you don't specify a value for the ``KmsKeyArn`` parameter, then AWS DMS uses an AWS owned encryption key to encrypt your resources.
|
|
1884
1882
|
|
|
1885
1883
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html#cfn-dms-instanceprofile-kmskeyarn
|
|
1886
1884
|
'''
|
|
@@ -13222,7 +13220,7 @@ class CfnInstanceProfile(
|
|
|
13222
13220
|
:param description: A description of the instance profile. Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.
|
|
13223
13221
|
:param instance_profile_identifier: The identifier of the instance profile. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
|
|
13224
13222
|
:param instance_profile_name: The user-friendly name for the instance profile.
|
|
13225
|
-
:param kms_key_arn: The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the ``KmsKeyArn`` parameter, then AWS DMS uses
|
|
13223
|
+
:param kms_key_arn: The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the ``KmsKeyArn`` parameter, then AWS DMS uses an AWS owned encryption key to encrypt your resources.
|
|
13226
13224
|
:param network_type: Specifies the network type for the instance profile. A value of ``IPV4`` represents an instance profile with IPv4 network type and only supports IPv4 addressing. A value of ``IPV6`` represents an instance profile with IPv6 network type and only supports IPv6 addressing. A value of ``DUAL`` represents an instance profile with dual network type that supports IPv4 and IPv6 addressing.
|
|
13227
13225
|
:param publicly_accessible: Specifies the accessibility options for the instance profile. A value of ``true`` represents an instance profile with a public IP address. A value of ``false`` represents an instance profile with a private IP address. The default value is ``true`` . Default: - false
|
|
13228
13226
|
:param subnet_group_identifier: The identifier of the subnet group that is associated with the instance profile.
|