aws-cdk-lib 2.184.1__py3-none-any.whl → 2.186.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 +102 -29
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.184.1.jsii.tgz → aws-cdk-lib@2.186.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_apigateway/__init__.py +1 -1
- aws_cdk/aws_apigatewayv2/__init__.py +9 -0
- aws_cdk/aws_appconfig/__init__.py +3 -3
- aws_cdk/aws_applicationsignals/__init__.py +495 -1
- aws_cdk/aws_appsync/__init__.py +65 -11
- aws_cdk/aws_athena/__init__.py +143 -0
- aws_cdk/aws_backup/__init__.py +4 -2
- aws_cdk/aws_batch/__init__.py +9 -0
- aws_cdk/aws_bedrock/__init__.py +645 -199
- aws_cdk/aws_cassandra/__init__.py +3 -5
- aws_cdk/aws_chatbot/__init__.py +41 -0
- aws_cdk/aws_cleanrooms/__init__.py +21 -9
- aws_cdk/aws_cloudformation/__init__.py +1 -5
- aws_cdk/aws_cloudfront/__init__.py +4 -1
- aws_cdk/aws_cloudfront_origins/__init__.py +4 -2
- aws_cdk/aws_codeartifact/__init__.py +20 -33
- aws_cdk/aws_codebuild/__init__.py +10 -3
- aws_cdk/aws_codepipeline/__init__.py +1328 -120
- aws_cdk/aws_cognito/__init__.py +1 -1
- aws_cdk/aws_cognito_identitypool/__init__.py +2303 -0
- aws_cdk/aws_config/__init__.py +1 -1
- aws_cdk/aws_connect/__init__.py +3 -7
- aws_cdk/aws_controltower/__init__.py +18 -26
- aws_cdk/aws_datasync/__init__.py +12 -14
- aws_cdk/aws_datazone/__init__.py +3471 -2
- aws_cdk/aws_ec2/__init__.py +701 -37
- aws_cdk/aws_ecr/__init__.py +84 -2
- aws_cdk/aws_ecs/__init__.py +20 -25
- aws_cdk/aws_eks/__init__.py +2 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +42 -5
- aws_cdk/aws_elasticsearch/__init__.py +1 -1
- aws_cdk/aws_events/__init__.py +37 -14
- aws_cdk/aws_events_targets/__init__.py +5 -5
- aws_cdk/aws_gamelift/__init__.py +165 -165
- aws_cdk/aws_gameliftstreams/__init__.py +199 -59
- aws_cdk/aws_iam/__init__.py +320 -25
- aws_cdk/aws_imagebuilder/__init__.py +15 -2
- aws_cdk/aws_iotfleetwise/__init__.py +15 -6
- aws_cdk/aws_kinesisfirehose/__init__.py +115 -113
- aws_cdk/aws_lambda/__init__.py +7 -1
- aws_cdk/aws_location/__init__.py +24 -7
- aws_cdk/aws_logs/__init__.py +21 -27
- aws_cdk/aws_msk/__init__.py +17 -50
- aws_cdk/aws_networkfirewall/__init__.py +16 -12
- aws_cdk/aws_oam/__init__.py +8 -37
- aws_cdk/aws_opensearchservice/__init__.py +1 -1
- aws_cdk/aws_pcs/__init__.py +33 -22
- aws_cdk/aws_quicksight/__init__.py +6 -69
- aws_cdk/aws_rds/__init__.py +8 -4
- aws_cdk/aws_redshiftserverless/__init__.py +192 -15
- aws_cdk/aws_rum/__init__.py +454 -43
- aws_cdk/aws_s3/__init__.py +4 -6
- aws_cdk/aws_s3_deployment/__init__.py +2 -0
- aws_cdk/aws_sagemaker/__init__.py +524 -0
- aws_cdk/aws_scheduler/__init__.py +3944 -121
- aws_cdk/aws_scheduler_targets/__init__.py +4472 -0
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_sns/__init__.py +12 -12
- aws_cdk/aws_ssmquicksetup/__init__.py +5 -3
- aws_cdk/aws_stepfunctions/__init__.py +17 -15
- aws_cdk/aws_timestream/__init__.py +4 -4
- aws_cdk/aws_wafv2/__init__.py +345 -0
- aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
- aws_cdk/cx_api/__init__.py +53 -0
- aws_cdk/region_info/__init__.py +2 -2
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/RECORD +75 -73
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_config/__init__.py
CHANGED
|
@@ -11570,7 +11570,7 @@ class ResourceType(
|
|
|
11570
11570
|
@jsii.python.classproperty
|
|
11571
11571
|
@jsii.member(jsii_name="KINESIS_FIREHOSE_DELIVERY_STREAM")
|
|
11572
11572
|
def KINESIS_FIREHOSE_DELIVERY_STREAM(cls) -> "ResourceType":
|
|
11573
|
-
'''Amazon
|
|
11573
|
+
'''Amazon Data Firehose DeliveryStream.'''
|
|
11574
11574
|
return typing.cast("ResourceType", jsii.sget(cls, "KINESIS_FIREHOSE_DELIVERY_STREAM"))
|
|
11575
11575
|
|
|
11576
11576
|
@jsii.python.classproperty
|
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -794,9 +794,7 @@ class CfnContactFlow(
|
|
|
794
794
|
@builtins.property
|
|
795
795
|
@jsii.member(jsii_name="attrContactFlowArn")
|
|
796
796
|
def attr_contact_flow_arn(self) -> builtins.str:
|
|
797
|
-
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow.
|
|
798
|
-
|
|
799
|
-
``{ "Ref": "myFlowArn" }``
|
|
797
|
+
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow.
|
|
800
798
|
|
|
801
799
|
:cloudformationAttribute: ContactFlowArn
|
|
802
800
|
'''
|
|
@@ -1008,9 +1006,7 @@ class CfnContactFlowModule(
|
|
|
1008
1006
|
@builtins.property
|
|
1009
1007
|
@jsii.member(jsii_name="attrContactFlowModuleArn")
|
|
1010
1008
|
def attr_contact_flow_module_arn(self) -> builtins.str:
|
|
1011
|
-
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow module.
|
|
1012
|
-
|
|
1013
|
-
``{ "Ref": "myFlowModuleArn" }``
|
|
1009
|
+
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow module.
|
|
1014
1010
|
|
|
1015
1011
|
:cloudformationAttribute: ContactFlowModuleArn
|
|
1016
1012
|
'''
|
|
@@ -1510,7 +1506,7 @@ class CfnContactFlowVersion(
|
|
|
1510
1506
|
@builtins.property
|
|
1511
1507
|
@jsii.member(jsii_name="attrContactFlowVersionArn")
|
|
1512
1508
|
def attr_contact_flow_version_arn(self) -> builtins.str:
|
|
1513
|
-
'''The Amazon Resource Name (ARN) of the
|
|
1509
|
+
'''The Amazon Resource Name (ARN) of the flow version.
|
|
1514
1510
|
|
|
1515
1511
|
:cloudformationAttribute: ContactFlowVersionARN
|
|
1516
1512
|
'''
|
|
@@ -75,7 +75,7 @@ class CfnEnabledBaseline(
|
|
|
75
75
|
metaclass=jsii.JSIIMeta,
|
|
76
76
|
jsii_type="aws-cdk-lib.aws_controltower.CfnEnabledBaseline",
|
|
77
77
|
):
|
|
78
|
-
'''
|
|
78
|
+
'''Definition of AWS::ControlTower::EnabledBaseline Resource Type.
|
|
79
79
|
|
|
80
80
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html
|
|
81
81
|
:cloudformationResource: AWS::ControlTower::EnabledBaseline
|
|
@@ -123,8 +123,8 @@ class CfnEnabledBaseline(
|
|
|
123
123
|
:param baseline_identifier: The specific ``Baseline`` enabled as part of the ``EnabledBaseline`` resource.
|
|
124
124
|
:param baseline_version: The enabled version of the ``Baseline`` .
|
|
125
125
|
:param target_identifier: The target on which to enable the ``Baseline`` .
|
|
126
|
-
:param parameters:
|
|
127
|
-
:param tags:
|
|
126
|
+
:param parameters: Shows the parameters that are applied when enabling this ``Baseline`` .
|
|
127
|
+
:param tags:
|
|
128
128
|
'''
|
|
129
129
|
if __debug__:
|
|
130
130
|
type_hints = typing.get_type_hints(_typecheckingstub__1ea8761029fec1b3c1fb5fb985be9ac741a889e29fe3445cfb5a962436cab528)
|
|
@@ -173,8 +173,7 @@ class CfnEnabledBaseline(
|
|
|
173
173
|
@builtins.property
|
|
174
174
|
@jsii.member(jsii_name="attrEnabledBaselineIdentifier")
|
|
175
175
|
def attr_enabled_baseline_identifier(self) -> builtins.str:
|
|
176
|
-
'''
|
|
177
|
-
|
|
176
|
+
'''
|
|
178
177
|
:cloudformationAttribute: EnabledBaselineIdentifier
|
|
179
178
|
'''
|
|
180
179
|
return typing.cast(builtins.str, jsii.get(self, "attrEnabledBaselineIdentifier"))
|
|
@@ -234,7 +233,7 @@ class CfnEnabledBaseline(
|
|
|
234
233
|
def parameters(
|
|
235
234
|
self,
|
|
236
235
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnabledBaseline.ParameterProperty"]]]]:
|
|
237
|
-
'''
|
|
236
|
+
'''Shows the parameters that are applied when enabling this ``Baseline`` .'''
|
|
238
237
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnabledBaseline.ParameterProperty"]]]], jsii.get(self, "parameters"))
|
|
239
238
|
|
|
240
239
|
@parameters.setter
|
|
@@ -250,7 +249,6 @@ class CfnEnabledBaseline(
|
|
|
250
249
|
@builtins.property
|
|
251
250
|
@jsii.member(jsii_name="tags")
|
|
252
251
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
253
|
-
'''Tags associated with input to ``EnableBaseline`` .'''
|
|
254
252
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
255
253
|
|
|
256
254
|
@tags.setter
|
|
@@ -272,10 +270,9 @@ class CfnEnabledBaseline(
|
|
|
272
270
|
key: typing.Optional[builtins.str] = None,
|
|
273
271
|
value: typing.Any = None,
|
|
274
272
|
) -> None:
|
|
275
|
-
'''
|
|
276
|
-
|
|
277
|
-
:param
|
|
278
|
-
:param value: A low-level ``Document`` object of any type (for example, a Java Object).
|
|
273
|
+
'''
|
|
274
|
+
:param key:
|
|
275
|
+
:param value:
|
|
279
276
|
|
|
280
277
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controltower-enabledbaseline-parameter.html
|
|
281
278
|
:exampleMetadata: fixture=_generated
|
|
@@ -305,8 +302,7 @@ class CfnEnabledBaseline(
|
|
|
305
302
|
|
|
306
303
|
@builtins.property
|
|
307
304
|
def key(self) -> typing.Optional[builtins.str]:
|
|
308
|
-
'''
|
|
309
|
-
|
|
305
|
+
'''
|
|
310
306
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controltower-enabledbaseline-parameter.html#cfn-controltower-enabledbaseline-parameter-key
|
|
311
307
|
'''
|
|
312
308
|
result = self._values.get("key")
|
|
@@ -314,8 +310,7 @@ class CfnEnabledBaseline(
|
|
|
314
310
|
|
|
315
311
|
@builtins.property
|
|
316
312
|
def value(self) -> typing.Any:
|
|
317
|
-
'''
|
|
318
|
-
|
|
313
|
+
'''
|
|
319
314
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controltower-enabledbaseline-parameter.html#cfn-controltower-enabledbaseline-parameter-value
|
|
320
315
|
'''
|
|
321
316
|
result = self._values.get("value")
|
|
@@ -359,8 +354,8 @@ class CfnEnabledBaselineProps:
|
|
|
359
354
|
:param baseline_identifier: The specific ``Baseline`` enabled as part of the ``EnabledBaseline`` resource.
|
|
360
355
|
:param baseline_version: The enabled version of the ``Baseline`` .
|
|
361
356
|
:param target_identifier: The target on which to enable the ``Baseline`` .
|
|
362
|
-
:param parameters:
|
|
363
|
-
:param tags:
|
|
357
|
+
:param parameters: Shows the parameters that are applied when enabling this ``Baseline`` .
|
|
358
|
+
:param tags:
|
|
364
359
|
|
|
365
360
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html
|
|
366
361
|
:exampleMetadata: fixture=_generated
|
|
@@ -440,9 +435,7 @@ class CfnEnabledBaselineProps:
|
|
|
440
435
|
def parameters(
|
|
441
436
|
self,
|
|
442
437
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnEnabledBaseline.ParameterProperty]]]]:
|
|
443
|
-
'''
|
|
444
|
-
|
|
445
|
-
These parameters configure the behavior of the baseline.
|
|
438
|
+
'''Shows the parameters that are applied when enabling this ``Baseline`` .
|
|
446
439
|
|
|
447
440
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-parameters
|
|
448
441
|
'''
|
|
@@ -451,8 +444,7 @@ class CfnEnabledBaselineProps:
|
|
|
451
444
|
|
|
452
445
|
@builtins.property
|
|
453
446
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
454
|
-
'''
|
|
455
|
-
|
|
447
|
+
'''
|
|
456
448
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-tags
|
|
457
449
|
'''
|
|
458
450
|
result = self._values.get("tags")
|
|
@@ -524,7 +516,7 @@ class CfnEnabledControl(
|
|
|
524
516
|
:param control_identifier: The ARN of the control. Only *Strongly recommended* and *Elective* controls are permitted, with the exception of the *Region deny* control. For information on how to find the ``controlIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
525
517
|
:param target_identifier: The ARN of the organizational unit. For information on how to find the ``targetIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
526
518
|
:param parameters: Array of ``EnabledControlParameter`` objects.
|
|
527
|
-
:param tags:
|
|
519
|
+
:param tags: A set of tags to assign to the enabled control.
|
|
528
520
|
'''
|
|
529
521
|
if __debug__:
|
|
530
522
|
type_hints = typing.get_type_hints(_typecheckingstub__1f147c3cf3aed5100105feba92fb41fa040a90e250e566c4f852830a75cfc586)
|
|
@@ -627,7 +619,7 @@ class CfnEnabledControl(
|
|
|
627
619
|
@builtins.property
|
|
628
620
|
@jsii.member(jsii_name="tags")
|
|
629
621
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
630
|
-
'''
|
|
622
|
+
'''A set of tags to assign to the enabled control.'''
|
|
631
623
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
632
624
|
|
|
633
625
|
@tags.setter
|
|
@@ -736,7 +728,7 @@ class CfnEnabledControlProps:
|
|
|
736
728
|
:param control_identifier: The ARN of the control. Only *Strongly recommended* and *Elective* controls are permitted, with the exception of the *Region deny* control. For information on how to find the ``controlIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
737
729
|
:param target_identifier: The ARN of the organizational unit. For information on how to find the ``targetIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
738
730
|
:param parameters: Array of ``EnabledControlParameter`` objects.
|
|
739
|
-
:param tags:
|
|
731
|
+
:param tags: A set of tags to assign to the enabled control.
|
|
740
732
|
|
|
741
733
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html
|
|
742
734
|
:exampleMetadata: fixture=_generated
|
|
@@ -816,7 +808,7 @@ class CfnEnabledControlProps:
|
|
|
816
808
|
|
|
817
809
|
@builtins.property
|
|
818
810
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
819
|
-
'''
|
|
811
|
+
'''A set of tags to assign to the enabled control.
|
|
820
812
|
|
|
821
813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html#cfn-controltower-enabledcontrol-tags
|
|
822
814
|
'''
|
aws_cdk/aws_datasync/__init__.py
CHANGED
|
@@ -4300,7 +4300,7 @@ class CfnLocationNFS(
|
|
|
4300
4300
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4301
4301
|
:param on_prem_config: Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect to your NFS file server. You can specify more than one agent. For more information, see `Using multiple DataSync agents <https://docs.aws.amazon.com/datasync/latest/userguide/do-i-need-datasync-agent.html#multiple-agents>`_ .
|
|
4302
4302
|
:param mount_options: Specifies the options that DataSync can use to mount your NFS file server.
|
|
4303
|
-
:param server_hostname: Specifies the
|
|
4303
|
+
:param server_hostname: Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.
|
|
4304
4304
|
:param subdirectory: Specifies the export path in your NFS file server that you want DataSync to mount. This path (or a subdirectory of the path) is where DataSync transfers data to or from. For information on configuring an export for DataSync, see `Accessing NFS file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs>`_ .
|
|
4305
4305
|
:param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
|
|
4306
4306
|
'''
|
|
@@ -4416,7 +4416,7 @@ class CfnLocationNFS(
|
|
|
4416
4416
|
@builtins.property
|
|
4417
4417
|
@jsii.member(jsii_name="serverHostname")
|
|
4418
4418
|
def server_hostname(self) -> typing.Optional[builtins.str]:
|
|
4419
|
-
'''Specifies the
|
|
4419
|
+
'''Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.'''
|
|
4420
4420
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverHostname"))
|
|
4421
4421
|
|
|
4422
4422
|
@server_hostname.setter
|
|
@@ -4596,7 +4596,7 @@ class CfnLocationNFSProps:
|
|
|
4596
4596
|
|
|
4597
4597
|
:param on_prem_config: Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect to your NFS file server. You can specify more than one agent. For more information, see `Using multiple DataSync agents <https://docs.aws.amazon.com/datasync/latest/userguide/do-i-need-datasync-agent.html#multiple-agents>`_ .
|
|
4598
4598
|
:param mount_options: Specifies the options that DataSync can use to mount your NFS file server.
|
|
4599
|
-
:param server_hostname: Specifies the
|
|
4599
|
+
:param server_hostname: Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.
|
|
4600
4600
|
:param subdirectory: Specifies the export path in your NFS file server that you want DataSync to mount. This path (or a subdirectory of the path) is where DataSync transfers data to or from. For information on configuring an export for DataSync, see `Accessing NFS file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs>`_ .
|
|
4601
4601
|
:param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
|
|
4602
4602
|
|
|
@@ -4672,7 +4672,7 @@ class CfnLocationNFSProps:
|
|
|
4672
4672
|
|
|
4673
4673
|
@builtins.property
|
|
4674
4674
|
def server_hostname(self) -> typing.Optional[builtins.str]:
|
|
4675
|
-
'''Specifies the
|
|
4675
|
+
'''Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.
|
|
4676
4676
|
|
|
4677
4677
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationnfs.html#cfn-datasync-locationnfs-serverhostname
|
|
4678
4678
|
'''
|
|
@@ -4776,7 +4776,7 @@ class CfnLocationObjectStorage(
|
|
|
4776
4776
|
:param bucket_name: Specifies the name of the object storage bucket involved in the transfer.
|
|
4777
4777
|
:param secret_key: Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
|
|
4778
4778
|
:param server_certificate: Specifies a certificate chain for DataSync to authenticate with your object storage system if the system uses a private or self-signed certificate authority (CA). You must specify a single ``.pem`` file with a full certificate chain (for example, ``file:///home/user/.ssh/object_storage_certificates.pem`` ). The certificate chain might include: - The object storage system's certificate - All intermediate certificates (if there are any) - The root certificate of the signing CA You can concatenate your certificates into a ``.pem`` file (which can be up to 32768 bytes before base64 encoding). The following example ``cat`` command creates an ``object_storage_certificates.pem`` file that includes three certificates: ``cat object_server_certificate.pem intermediate_certificate.pem ca_root_certificate.pem > object_storage_certificates.pem`` To use this parameter, configure ``ServerProtocol`` to ``HTTPS`` .
|
|
4779
|
-
:param server_hostname: Specifies the domain name or IP address of the object storage server
|
|
4779
|
+
:param server_hostname: Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.
|
|
4780
4780
|
:param server_port: Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
|
|
4781
4781
|
:param server_protocol: Specifies the protocol that your object storage server uses to communicate.
|
|
4782
4782
|
:param subdirectory: Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
|
|
@@ -4928,7 +4928,7 @@ class CfnLocationObjectStorage(
|
|
|
4928
4928
|
@builtins.property
|
|
4929
4929
|
@jsii.member(jsii_name="serverHostname")
|
|
4930
4930
|
def server_hostname(self) -> typing.Optional[builtins.str]:
|
|
4931
|
-
'''Specifies the domain name or IP address of the object storage server.'''
|
|
4931
|
+
'''Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.'''
|
|
4932
4932
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverHostname"))
|
|
4933
4933
|
|
|
4934
4934
|
@server_hostname.setter
|
|
@@ -5029,7 +5029,7 @@ class CfnLocationObjectStorageProps:
|
|
|
5029
5029
|
:param bucket_name: Specifies the name of the object storage bucket involved in the transfer.
|
|
5030
5030
|
:param secret_key: Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
|
|
5031
5031
|
:param server_certificate: Specifies a certificate chain for DataSync to authenticate with your object storage system if the system uses a private or self-signed certificate authority (CA). You must specify a single ``.pem`` file with a full certificate chain (for example, ``file:///home/user/.ssh/object_storage_certificates.pem`` ). The certificate chain might include: - The object storage system's certificate - All intermediate certificates (if there are any) - The root certificate of the signing CA You can concatenate your certificates into a ``.pem`` file (which can be up to 32768 bytes before base64 encoding). The following example ``cat`` command creates an ``object_storage_certificates.pem`` file that includes three certificates: ``cat object_server_certificate.pem intermediate_certificate.pem ca_root_certificate.pem > object_storage_certificates.pem`` To use this parameter, configure ``ServerProtocol`` to ``HTTPS`` .
|
|
5032
|
-
:param server_hostname: Specifies the domain name or IP address of the object storage server
|
|
5032
|
+
:param server_hostname: Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.
|
|
5033
5033
|
:param server_port: Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
|
|
5034
5034
|
:param server_protocol: Specifies the protocol that your object storage server uses to communicate.
|
|
5035
5035
|
:param subdirectory: Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
|
|
@@ -5158,9 +5158,7 @@ class CfnLocationObjectStorageProps:
|
|
|
5158
5158
|
|
|
5159
5159
|
@builtins.property
|
|
5160
5160
|
def server_hostname(self) -> typing.Optional[builtins.str]:
|
|
5161
|
-
'''Specifies the domain name or IP address of the object storage server.
|
|
5162
|
-
|
|
5163
|
-
A DataSync agent uses this hostname to mount the object storage server in a network.
|
|
5161
|
+
'''Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.
|
|
5164
5162
|
|
|
5165
5163
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html#cfn-datasync-locationobjectstorage-serverhostname
|
|
5166
5164
|
'''
|
|
@@ -5697,7 +5695,7 @@ class CfnLocationSMB(
|
|
|
5697
5695
|
:param kerberos_principal: Specifies a Kerberos prinicpal, which is an identity in your Kerberos realm that has permission to access the files, folders, and file metadata in your SMB file server. A Kerberos principal might look like ``HOST/kerberosuser@MYDOMAIN.ORG`` . Principal names are case sensitive. Your DataSync task execution will fail if the principal that you specify for this parameter doesn’t exactly match the principal that you use to create the keytab file.
|
|
5698
5696
|
:param mount_options: Specifies the version of the SMB protocol that DataSync uses to access your SMB file server.
|
|
5699
5697
|
:param password: Specifies the password of the user who can mount your SMB file server and has permission to access the files and folders involved in your transfer. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` .
|
|
5700
|
-
:param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent
|
|
5698
|
+
:param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to. Remember the following when configuring this parameter: - You can't specify an IP version 6 (IPv6) address. - If you're using Kerberos authentication, you must specify a domain name.
|
|
5701
5699
|
:param subdirectory: Specifies the name of the share exported by your SMB file server where DataSync will read or write data. You can include a subdirectory in the share path (for example, ``/path/to/subdirectory`` ). Make sure that other SMB clients in your network can also mount this path. To copy all data in the subdirectory, DataSync must be able to mount the SMB share and access all of its data. For more information, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
|
|
5702
5700
|
:param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
|
|
5703
5701
|
:param user: Specifies the user that can mount and access the files, folders, and file metadata in your SMB file server. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` . For information about choosing a user with the right level of access for your transfer, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
|
|
@@ -5911,7 +5909,7 @@ class CfnLocationSMB(
|
|
|
5911
5909
|
@builtins.property
|
|
5912
5910
|
@jsii.member(jsii_name="serverHostname")
|
|
5913
5911
|
def server_hostname(self) -> typing.Optional[builtins.str]:
|
|
5914
|
-
'''Specifies the domain name or IP address of the SMB file server that your DataSync agent
|
|
5912
|
+
'''Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to.'''
|
|
5915
5913
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverHostname"))
|
|
5916
5914
|
|
|
5917
5915
|
@server_hostname.setter
|
|
@@ -6077,7 +6075,7 @@ class CfnLocationSMBProps:
|
|
|
6077
6075
|
:param kerberos_principal: Specifies a Kerberos prinicpal, which is an identity in your Kerberos realm that has permission to access the files, folders, and file metadata in your SMB file server. A Kerberos principal might look like ``HOST/kerberosuser@MYDOMAIN.ORG`` . Principal names are case sensitive. Your DataSync task execution will fail if the principal that you specify for this parameter doesn’t exactly match the principal that you use to create the keytab file.
|
|
6078
6076
|
:param mount_options: Specifies the version of the SMB protocol that DataSync uses to access your SMB file server.
|
|
6079
6077
|
:param password: Specifies the password of the user who can mount your SMB file server and has permission to access the files and folders involved in your transfer. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` .
|
|
6080
|
-
:param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent
|
|
6078
|
+
:param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to. Remember the following when configuring this parameter: - You can't specify an IP version 6 (IPv6) address. - If you're using Kerberos authentication, you must specify a domain name.
|
|
6081
6079
|
:param subdirectory: Specifies the name of the share exported by your SMB file server where DataSync will read or write data. You can include a subdirectory in the share path (for example, ``/path/to/subdirectory`` ). Make sure that other SMB clients in your network can also mount this path. To copy all data in the subdirectory, DataSync must be able to mount the SMB share and access all of its data. For more information, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
|
|
6082
6080
|
:param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
|
|
6083
6081
|
:param user: Specifies the user that can mount and access the files, folders, and file metadata in your SMB file server. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` . For information about choosing a user with the right level of access for your transfer, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
|
|
@@ -6269,7 +6267,7 @@ class CfnLocationSMBProps:
|
|
|
6269
6267
|
|
|
6270
6268
|
@builtins.property
|
|
6271
6269
|
def server_hostname(self) -> typing.Optional[builtins.str]:
|
|
6272
|
-
'''Specifies the domain name or IP address of the SMB file server that your DataSync agent
|
|
6270
|
+
'''Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to.
|
|
6273
6271
|
|
|
6274
6272
|
Remember the following when configuring this parameter:
|
|
6275
6273
|
|