aws-cdk-lib 2.218.0__py3-none-any.whl → 2.220.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 +31 -36
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.220.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +98 -87
- aws_cdk/aws_apigateway/__init__.py +39 -0
- aws_cdk/aws_applicationsignals/__init__.py +450 -2
- aws_cdk/aws_arcregionswitch/__init__.py +8 -0
- aws_cdk/aws_backup/__init__.py +29 -0
- aws_cdk/aws_batch/__init__.py +109 -7
- aws_cdk/aws_bcmdataexports/__init__.py +9 -0
- aws_cdk/aws_bedrock/__init__.py +384 -1
- aws_cdk/aws_bedrockagentcore/__init__.py +7862 -1568
- aws_cdk/aws_cloudfront/experimental/__init__.py +4 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +87 -6
- aws_cdk/aws_cloudwatch/__init__.py +5 -5
- aws_cdk/aws_codebuild/__init__.py +339 -62
- aws_cdk/aws_cognito/__init__.py +6 -4
- 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_dax/__init__.py +12 -3
- aws_cdk/aws_dms/__init__.py +3 -5
- aws_cdk/aws_ec2/__init__.py +2721 -30
- aws_cdk/aws_ecs/__init__.py +2900 -90
- aws_cdk/aws_eks/__init__.py +114 -9
- aws_cdk/aws_entityresolution/__init__.py +18 -0
- aws_cdk/aws_fsx/__init__.py +4 -4
- aws_cdk/aws_greengrassv2/__init__.py +29 -0
- aws_cdk/aws_imagebuilder/__init__.py +397 -0
- aws_cdk/aws_iotsitewise/__init__.py +136 -80
- aws_cdk/aws_kinesis/__init__.py +95 -4
- aws_cdk/aws_lambda/__init__.py +43 -0
- aws_cdk/aws_lightsail/__init__.py +584 -0
- aws_cdk/aws_logs/__init__.py +57 -0
- aws_cdk/aws_lookoutmetrics/__init__.py +14 -2
- aws_cdk/aws_m2/__init__.py +59 -13
- aws_cdk/aws_medialive/__init__.py +108 -0
- aws_cdk/aws_msk/__init__.py +4 -2
- aws_cdk/aws_mwaa/__init__.py +5 -5
- aws_cdk/aws_neptune/__init__.py +133 -70
- aws_cdk/aws_networkfirewall/__init__.py +6 -2
- aws_cdk/aws_networkmanager/__init__.py +29 -0
- aws_cdk/aws_observabilityadmin/__init__.py +1227 -83
- aws_cdk/aws_omics/__init__.py +7 -1
- aws_cdk/aws_opensearchservice/__init__.py +64 -0
- aws_cdk/aws_opsworkscm/__init__.py +0 -29
- aws_cdk/aws_pcs/__init__.py +224 -33
- aws_cdk/aws_pinpoint/__init__.py +58 -0
- aws_cdk/aws_quicksight/__init__.py +118 -0
- aws_cdk/aws_rds/__init__.py +62 -37
- aws_cdk/aws_refactorspaces/__init__.py +18 -6
- aws_cdk/aws_route53/__init__.py +138 -8
- aws_cdk/aws_s3/__init__.py +29 -2
- aws_cdk/aws_s3objectlambda/__init__.py +44 -12
- aws_cdk/aws_servicecatalog/__init__.py +103 -106
- aws_cdk/aws_smsvoice/__init__.py +319 -0
- aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
- aws_cdk/aws_synthetics/__init__.py +21 -1
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/RECORD +65 -65
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_cognito/__init__.py
CHANGED
|
@@ -5114,7 +5114,7 @@ class CfnUserPoolUserProps:
|
|
|
5114
5114
|
'''Properties for defining a ``CfnUserPoolUser``.
|
|
5115
5115
|
|
|
5116
5116
|
:param user_pool_id: The ID of the user pool where you want to create a user.
|
|
5117
|
-
:param client_metadata: A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers. You create custom workflows by assigning AWS Lambda functions to user pool triggers. When
|
|
5117
|
+
:param client_metadata: A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers. You create custom workflows by assigning AWS Lambda functions to user pool triggers. When Amazon Cognito invokes any of these functions, it passes a JSON payload, which the function receives as input. This payload contains a ``clientMetadata`` attribute that provides the data that you assigned to the ClientMetadata parameter in your request. In your function code, you can process the ``clientMetadata`` value to enhance your workflow for your specific needs. To review the Lambda trigger types that Amazon Cognito invokes at runtime with API requests, see `Connecting API actions to Lambda triggers <https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-working-with-lambda-triggers.html#lambda-triggers-by-event>`_ in the *Amazon Cognito Developer Guide* . .. epigraph:: When you use the ``ClientMetadata`` parameter, note that Amazon Cognito won't do the following: - Store the ``ClientMetadata`` value. This data is available only to AWS Lambda triggers that are assigned to a user pool to support custom workflows. If your user pool configuration doesn't include triggers, the ``ClientMetadata`` parameter serves no purpose. - Validate the ``ClientMetadata`` value. - Encrypt the ``ClientMetadata`` value. Don't send sensitive information in this parameter.
|
|
5118
5118
|
:param desired_delivery_mediums: Specify ``EMAIL`` if email will be used to send the welcome message. Specify ``SMS`` if the phone number will be used. The default value is ``SMS`` . You can specify more than one value.
|
|
5119
5119
|
:param force_alias_creation: This parameter is used only if the ``phone_number_verified`` or ``email_verified`` attribute is set to ``True`` . Otherwise, it is ignored. If this parameter is set to ``True`` and the phone number or email address specified in the ``UserAttributes`` parameter already exists as an alias with a different user, this request migrates the alias from the previous user to the newly-created user. The previous user will no longer be able to log in using that alias. If this parameter is set to ``False`` , the API throws an ``AliasExistsException`` error if the alias already exists. The default value is ``False`` .
|
|
5120
5120
|
:param message_action: Set to ``RESEND`` to resend the invitation message to a user that already exists, and to reset the temporary-password duration with a new temporary password. Set to ``SUPPRESS`` to suppress sending the message. You can specify only one value.
|
|
@@ -5196,9 +5196,11 @@ class CfnUserPoolUserProps:
|
|
|
5196
5196
|
) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
|
|
5197
5197
|
'''A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.
|
|
5198
5198
|
|
|
5199
|
-
You create custom workflows by assigning AWS Lambda functions to user pool triggers.
|
|
5199
|
+
You create custom workflows by assigning AWS Lambda functions to user pool triggers.
|
|
5200
5200
|
|
|
5201
|
-
|
|
5201
|
+
When Amazon Cognito invokes any of these functions, it passes a JSON payload, which the function receives as input. This payload contains a ``clientMetadata`` attribute that provides the data that you assigned to the ClientMetadata parameter in your request. In your function code, you can process the ``clientMetadata`` value to enhance your workflow for your specific needs.
|
|
5202
|
+
|
|
5203
|
+
To review the Lambda trigger types that Amazon Cognito invokes at runtime with API requests, see `Connecting API actions to Lambda triggers <https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-working-with-lambda-triggers.html#lambda-triggers-by-event>`_ in the *Amazon Cognito Developer Guide* .
|
|
5202
5204
|
.. epigraph::
|
|
5203
5205
|
|
|
5204
5206
|
When you use the ``ClientMetadata`` parameter, note that Amazon Cognito won't do the following:
|
|
@@ -24285,7 +24287,7 @@ class CfnUserPoolUser(
|
|
|
24285
24287
|
:param scope: Scope in which this resource is defined.
|
|
24286
24288
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
24287
24289
|
:param user_pool_id: The ID of the user pool where you want to create a user.
|
|
24288
|
-
:param client_metadata: A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers. You create custom workflows by assigning AWS Lambda functions to user pool triggers. When
|
|
24290
|
+
:param client_metadata: A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers. You create custom workflows by assigning AWS Lambda functions to user pool triggers. When Amazon Cognito invokes any of these functions, it passes a JSON payload, which the function receives as input. This payload contains a ``clientMetadata`` attribute that provides the data that you assigned to the ClientMetadata parameter in your request. In your function code, you can process the ``clientMetadata`` value to enhance your workflow for your specific needs. To review the Lambda trigger types that Amazon Cognito invokes at runtime with API requests, see `Connecting API actions to Lambda triggers <https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-working-with-lambda-triggers.html#lambda-triggers-by-event>`_ in the *Amazon Cognito Developer Guide* . .. epigraph:: When you use the ``ClientMetadata`` parameter, note that Amazon Cognito won't do the following: - Store the ``ClientMetadata`` value. This data is available only to AWS Lambda triggers that are assigned to a user pool to support custom workflows. If your user pool configuration doesn't include triggers, the ``ClientMetadata`` parameter serves no purpose. - Validate the ``ClientMetadata`` value. - Encrypt the ``ClientMetadata`` value. Don't send sensitive information in this parameter.
|
|
24289
24291
|
:param desired_delivery_mediums: Specify ``EMAIL`` if email will be used to send the welcome message. Specify ``SMS`` if the phone number will be used. The default value is ``SMS`` . You can specify more than one value.
|
|
24290
24292
|
:param force_alias_creation: This parameter is used only if the ``phone_number_verified`` or ``email_verified`` attribute is set to ``True`` . Otherwise, it is ignored. If this parameter is set to ``True`` and the phone number or email address specified in the ``UserAttributes`` parameter already exists as an alias with a different user, this request migrates the alias from the previous user to the newly-created user. The previous user will no longer be able to log in using that alias. If this parameter is set to ``False`` , the API throws an ``AliasExistsException`` error if the alias already exists. The default value is ``False`` .
|
|
24291
24293
|
:param message_action: Set to ``RESEND`` to resend the invitation message to a user that already exists, and to reset the temporary-password duration with a new temporary password. Set to ``SUPPRESS`` to suppress sending the message. You can specify only one value.
|
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"))
|
aws_cdk/aws_dax/__init__.py
CHANGED
|
@@ -118,7 +118,7 @@ class CfnClusterProps:
|
|
|
118
118
|
:param cluster_endpoint_encryption_type: The encryption type of the cluster's endpoint. Available values are:. - ``NONE`` - The cluster's endpoint will be unencrypted. - ``TLS`` - The cluster's endpoint will be encrypted with Transport Layer Security, and will provide an x509 certificate for authentication. The default value is ``NONE`` .
|
|
119
119
|
:param cluster_name: The name of the DAX cluster.
|
|
120
120
|
:param description: The description of the cluster.
|
|
121
|
-
:param network_type:
|
|
121
|
+
:param network_type: The IP address type of the cluster. Values are:. - ``ipv4`` - IPv4 addresses only - ``ipv6`` - IPv6 addresses only - ``dual_stack`` - Both IPv4 and IPv6 addresses
|
|
122
122
|
:param notification_topic_arn: The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications will be sent. .. epigraph:: The Amazon SNS topic owner must be same as the DAX cluster owner.
|
|
123
123
|
:param parameter_group_name: The parameter group to be associated with the DAX cluster.
|
|
124
124
|
:param preferred_maintenance_window: A range of time when maintenance of DAX cluster software will be performed. For example: ``sun:01:00-sun:09:00`` . Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.
|
|
@@ -291,7 +291,12 @@ class CfnClusterProps:
|
|
|
291
291
|
|
|
292
292
|
@builtins.property
|
|
293
293
|
def network_type(self) -> typing.Optional[builtins.str]:
|
|
294
|
-
'''
|
|
294
|
+
'''The IP address type of the cluster. Values are:.
|
|
295
|
+
|
|
296
|
+
- ``ipv4`` - IPv4 addresses only
|
|
297
|
+
- ``ipv6`` - IPv6 addresses only
|
|
298
|
+
- ``dual_stack`` - Both IPv4 and IPv6 addresses
|
|
299
|
+
|
|
295
300
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-networktype
|
|
296
301
|
'''
|
|
297
302
|
result = self._values.get("network_type")
|
|
@@ -932,7 +937,7 @@ class CfnCluster(
|
|
|
932
937
|
:param cluster_endpoint_encryption_type: The encryption type of the cluster's endpoint. Available values are:. - ``NONE`` - The cluster's endpoint will be unencrypted. - ``TLS`` - The cluster's endpoint will be encrypted with Transport Layer Security, and will provide an x509 certificate for authentication. The default value is ``NONE`` .
|
|
933
938
|
:param cluster_name: The name of the DAX cluster.
|
|
934
939
|
:param description: The description of the cluster.
|
|
935
|
-
:param network_type:
|
|
940
|
+
:param network_type: The IP address type of the cluster. Values are:. - ``ipv4`` - IPv4 addresses only - ``ipv6`` - IPv6 addresses only - ``dual_stack`` - Both IPv4 and IPv6 addresses
|
|
936
941
|
:param notification_topic_arn: The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications will be sent. .. epigraph:: The Amazon SNS topic owner must be same as the DAX cluster owner.
|
|
937
942
|
:param parameter_group_name: The parameter group to be associated with the DAX cluster.
|
|
938
943
|
:param preferred_maintenance_window: A range of time when maintenance of DAX cluster software will be performed. For example: ``sun:01:00-sun:09:00`` . Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.
|
|
@@ -1162,6 +1167,10 @@ class CfnCluster(
|
|
|
1162
1167
|
@builtins.property
|
|
1163
1168
|
@jsii.member(jsii_name="networkType")
|
|
1164
1169
|
def network_type(self) -> typing.Optional[builtins.str]:
|
|
1170
|
+
'''The IP address type of the cluster.
|
|
1171
|
+
|
|
1172
|
+
Values are:.
|
|
1173
|
+
'''
|
|
1165
1174
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "networkType"))
|
|
1166
1175
|
|
|
1167
1176
|
@network_type.setter
|