aws-cdk-lib 2.196.0__py3-none-any.whl → 2.197.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.

Files changed (30) hide show
  1. aws_cdk/__init__.py +2 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.196.0.jsii.tgz → aws-cdk-lib@2.197.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +90 -1
  5. aws_cdk/aws_apigatewayv2/__init__.py +866 -0
  6. aws_cdk/aws_bedrock/__init__.py +32 -26
  7. aws_cdk/aws_cloudfront/__init__.py +9 -3
  8. aws_cdk/aws_cloudwatch/__init__.py +756 -29
  9. aws_cdk/aws_codebuild/__init__.py +19 -0
  10. aws_cdk/aws_codepipeline/__init__.py +42 -7
  11. aws_cdk/aws_datasync/__init__.py +43 -72
  12. aws_cdk/aws_datazone/__init__.py +615 -2
  13. aws_cdk/aws_deadline/__init__.py +139 -0
  14. aws_cdk/aws_dsql/__init__.py +35 -1
  15. aws_cdk/aws_ec2/__init__.py +81 -3
  16. aws_cdk/aws_ecs/__init__.py +24 -17
  17. aws_cdk/aws_elasticache/__init__.py +5 -5
  18. aws_cdk/aws_gamelift/__init__.py +103 -15
  19. aws_cdk/aws_gameliftstreams/__init__.py +6 -6
  20. aws_cdk/aws_lambda_nodejs/__init__.py +0 -6
  21. aws_cdk/aws_omics/__init__.py +920 -103
  22. aws_cdk/aws_route53resolver/__init__.py +0 -41
  23. aws_cdk/aws_ses/__init__.py +4 -4
  24. aws_cdk/aws_workspaces/__init__.py +39 -0
  25. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/METADATA +1 -1
  26. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/RECORD +30 -30
  27. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/LICENSE +0 -0
  28. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/NOTICE +0 -0
  29. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/WHEEL +0 -0
  30. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/top_level.txt +0 -0
@@ -2201,6 +2201,7 @@ class CfnFleet(
2201
2201
  base_capacity=123,
2202
2202
  compute_configuration=codebuild.CfnFleet.ComputeConfigurationProperty(
2203
2203
  disk=123,
2204
+ instance_type="instanceType",
2204
2205
  machine_type="machineType",
2205
2206
  memory=123,
2206
2207
  v_cpu=123
@@ -2528,6 +2529,7 @@ class CfnFleet(
2528
2529
  jsii_struct_bases=[],
2529
2530
  name_mapping={
2530
2531
  "disk": "disk",
2532
+ "instance_type": "instanceType",
2531
2533
  "machine_type": "machineType",
2532
2534
  "memory": "memory",
2533
2535
  "v_cpu": "vCpu",
@@ -2538,6 +2540,7 @@ class CfnFleet(
2538
2540
  self,
2539
2541
  *,
2540
2542
  disk: typing.Optional[jsii.Number] = None,
2543
+ instance_type: typing.Optional[builtins.str] = None,
2541
2544
  machine_type: typing.Optional[builtins.str] = None,
2542
2545
  memory: typing.Optional[jsii.Number] = None,
2543
2546
  v_cpu: typing.Optional[jsii.Number] = None,
@@ -2547,6 +2550,7 @@ class CfnFleet(
2547
2550
  These attributes only need be specified when your project's or fleet's ``computeType`` is set to ``ATTRIBUTE_BASED_COMPUTE`` or ``CUSTOM_INSTANCE_TYPE`` .
2548
2551
 
2549
2552
  :param disk: The amount of disk space of the instance type included in your fleet.
2553
+ :param instance_type: The EC2 instance type to be launched in your fleet.
2550
2554
  :param machine_type: The machine type of the instance type included in your fleet.
2551
2555
  :param memory: The amount of memory of the instance type included in your fleet.
2552
2556
  :param v_cpu: The number of vCPUs of the instance type included in your fleet.
@@ -2562,6 +2566,7 @@ class CfnFleet(
2562
2566
 
2563
2567
  compute_configuration_property = codebuild.CfnFleet.ComputeConfigurationProperty(
2564
2568
  disk=123,
2569
+ instance_type="instanceType",
2565
2570
  machine_type="machineType",
2566
2571
  memory=123,
2567
2572
  v_cpu=123
@@ -2570,12 +2575,15 @@ class CfnFleet(
2570
2575
  if __debug__:
2571
2576
  type_hints = typing.get_type_hints(_typecheckingstub__83eb701fe90c557bf4af205ee34cfc7a5be2354e8e7cbd789a682e59834fb69b)
2572
2577
  check_type(argname="argument disk", value=disk, expected_type=type_hints["disk"])
2578
+ check_type(argname="argument instance_type", value=instance_type, expected_type=type_hints["instance_type"])
2573
2579
  check_type(argname="argument machine_type", value=machine_type, expected_type=type_hints["machine_type"])
2574
2580
  check_type(argname="argument memory", value=memory, expected_type=type_hints["memory"])
2575
2581
  check_type(argname="argument v_cpu", value=v_cpu, expected_type=type_hints["v_cpu"])
2576
2582
  self._values: typing.Dict[builtins.str, typing.Any] = {}
2577
2583
  if disk is not None:
2578
2584
  self._values["disk"] = disk
2585
+ if instance_type is not None:
2586
+ self._values["instance_type"] = instance_type
2579
2587
  if machine_type is not None:
2580
2588
  self._values["machine_type"] = machine_type
2581
2589
  if memory is not None:
@@ -2592,6 +2600,15 @@ class CfnFleet(
2592
2600
  result = self._values.get("disk")
2593
2601
  return typing.cast(typing.Optional[jsii.Number], result)
2594
2602
 
2603
+ @builtins.property
2604
+ def instance_type(self) -> typing.Optional[builtins.str]:
2605
+ '''The EC2 instance type to be launched in your fleet.
2606
+
2607
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-fleet-computeconfiguration.html#cfn-codebuild-fleet-computeconfiguration-instancetype
2608
+ '''
2609
+ result = self._values.get("instance_type")
2610
+ return typing.cast(typing.Optional[builtins.str], result)
2611
+
2595
2612
  @builtins.property
2596
2613
  def machine_type(self) -> typing.Optional[builtins.str]:
2597
2614
  '''The machine type of the instance type included in your fleet.
@@ -3111,6 +3128,7 @@ class CfnFleetProps:
3111
3128
  base_capacity=123,
3112
3129
  compute_configuration=codebuild.CfnFleet.ComputeConfigurationProperty(
3113
3130
  disk=123,
3131
+ instance_type="instanceType",
3114
3132
  machine_type="machineType",
3115
3133
  memory=123,
3116
3134
  v_cpu=123
@@ -18902,6 +18920,7 @@ def _typecheckingstub__dd8d232a7a18b97fcd2d21d60ea770b5fdd85dd8808e961cb9b071d34
18902
18920
  def _typecheckingstub__83eb701fe90c557bf4af205ee34cfc7a5be2354e8e7cbd789a682e59834fb69b(
18903
18921
  *,
18904
18922
  disk: typing.Optional[jsii.Number] = None,
18923
+ instance_type: typing.Optional[builtins.str] = None,
18905
18924
  machine_type: typing.Optional[builtins.str] = None,
18906
18925
  memory: typing.Optional[jsii.Number] = None,
18907
18926
  v_cpu: typing.Optional[jsii.Number] = None,
@@ -2699,7 +2699,10 @@ class CfnPipeline(
2699
2699
  configuration=configuration,
2700
2700
  environment_variables=[codepipeline.CfnPipeline.EnvironmentVariableProperty(
2701
2701
  name="name",
2702
- value="value"
2702
+ value="value",
2703
+
2704
+ # the properties below are optional
2705
+ type="type"
2703
2706
  )],
2704
2707
  input_artifacts=[codepipeline.CfnPipeline.InputArtifactProperty(
2705
2708
  name="name"
@@ -3252,7 +3255,10 @@ class CfnPipeline(
3252
3255
  configuration=configuration,
3253
3256
  environment_variables=[codepipeline.CfnPipeline.EnvironmentVariableProperty(
3254
3257
  name="name",
3255
- value="value"
3258
+ value="value",
3259
+
3260
+ # the properties below are optional
3261
+ type="type"
3256
3262
  )],
3257
3263
  input_artifacts=[codepipeline.CfnPipeline.InputArtifactProperty(
3258
3264
  name="name"
@@ -4109,14 +4115,21 @@ class CfnPipeline(
4109
4115
  @jsii.data_type(
4110
4116
  jsii_type="aws-cdk-lib.aws_codepipeline.CfnPipeline.EnvironmentVariableProperty",
4111
4117
  jsii_struct_bases=[],
4112
- name_mapping={"name": "name", "value": "value"},
4118
+ name_mapping={"name": "name", "value": "value", "type": "type"},
4113
4119
  )
4114
4120
  class EnvironmentVariableProperty:
4115
- def __init__(self, *, name: builtins.str, value: builtins.str) -> None:
4121
+ def __init__(
4122
+ self,
4123
+ *,
4124
+ name: builtins.str,
4125
+ value: builtins.str,
4126
+ type: typing.Optional[builtins.str] = None,
4127
+ ) -> None:
4116
4128
  '''The environment variables for the action.
4117
4129
 
4118
4130
  :param name: The environment variable name in the key-value pair.
4119
4131
  :param value: The environment variable value in the key-value pair.
4132
+ :param type: The type of the environment variable.
4120
4133
 
4121
4134
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-environmentvariable.html
4122
4135
  :exampleMetadata: fixture=_generated
@@ -4129,17 +4142,23 @@ class CfnPipeline(
4129
4142
 
4130
4143
  environment_variable_property = codepipeline.CfnPipeline.EnvironmentVariableProperty(
4131
4144
  name="name",
4132
- value="value"
4145
+ value="value",
4146
+
4147
+ # the properties below are optional
4148
+ type="type"
4133
4149
  )
4134
4150
  '''
4135
4151
  if __debug__:
4136
4152
  type_hints = typing.get_type_hints(_typecheckingstub__f259d9da088fb308ad8abebb0fb3aca04739c87fd2ed5561a20074f8e2458d5a)
4137
4153
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
4138
4154
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4155
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
4139
4156
  self._values: typing.Dict[builtins.str, typing.Any] = {
4140
4157
  "name": name,
4141
4158
  "value": value,
4142
4159
  }
4160
+ if type is not None:
4161
+ self._values["type"] = type
4143
4162
 
4144
4163
  @builtins.property
4145
4164
  def name(self) -> builtins.str:
@@ -4161,6 +4180,15 @@ class CfnPipeline(
4161
4180
  assert result is not None, "Required property 'value' is missing"
4162
4181
  return typing.cast(builtins.str, result)
4163
4182
 
4183
+ @builtins.property
4184
+ def type(self) -> typing.Optional[builtins.str]:
4185
+ '''The type of the environment variable.
4186
+
4187
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-environmentvariable.html#cfn-codepipeline-pipeline-environmentvariable-type
4188
+ '''
4189
+ result = self._values.get("type")
4190
+ return typing.cast(typing.Optional[builtins.str], result)
4191
+
4164
4192
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
4165
4193
  return isinstance(rhs, self.__class__) and rhs._values == self._values
4166
4194
 
@@ -5479,7 +5507,10 @@ class CfnPipeline(
5479
5507
  configuration=configuration,
5480
5508
  environment_variables=[codepipeline.CfnPipeline.EnvironmentVariableProperty(
5481
5509
  name="name",
5482
- value="value"
5510
+ value="value",
5511
+
5512
+ # the properties below are optional
5513
+ type="type"
5483
5514
  )],
5484
5515
  input_artifacts=[codepipeline.CfnPipeline.InputArtifactProperty(
5485
5516
  name="name"
@@ -5997,7 +6028,10 @@ class CfnPipelineProps:
5997
6028
  configuration=configuration,
5998
6029
  environment_variables=[codepipeline.CfnPipeline.EnvironmentVariableProperty(
5999
6030
  name="name",
6000
- value="value"
6031
+ value="value",
6032
+
6033
+ # the properties below are optional
6034
+ type="type"
6001
6035
  )],
6002
6036
  input_artifacts=[codepipeline.CfnPipeline.InputArtifactProperty(
6003
6037
  name="name"
@@ -12319,6 +12353,7 @@ def _typecheckingstub__f259d9da088fb308ad8abebb0fb3aca04739c87fd2ed5561a20074f8e
12319
12353
  *,
12320
12354
  name: builtins.str,
12321
12355
  value: builtins.str,
12356
+ type: typing.Optional[builtins.str] = None,
12322
12357
  ) -> None:
12323
12358
  """Type checking stubs"""
12324
12359
  pass
@@ -6334,9 +6334,7 @@ class CfnStorageSystem(
6334
6334
  metaclass=jsii.JSIIMeta,
6335
6335
  jsii_type="aws-cdk-lib.aws_datasync.CfnStorageSystem",
6336
6336
  ):
6337
- '''The ``AWS::DataSync::StorageSystem`` resource creates an AWS resource for an on-premises storage system that you want DataSync Discovery to collect information about.
6338
-
6339
- For more information, see `discovering your storage with DataSync Discovery. <https://docs.aws.amazon.com/datasync/latest/userguide/understanding-your-storage.html>`_
6337
+ '''http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html.
6340
6338
 
6341
6339
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html
6342
6340
  :cloudformationResource: AWS::DataSync::StorageSystem
@@ -6388,13 +6386,13 @@ class CfnStorageSystem(
6388
6386
  '''
6389
6387
  :param scope: Scope in which this resource is defined.
6390
6388
  :param id: Construct identifier for this resource (unique in its scope).
6391
- :param agent_arns: Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface. You can only specify one ARN.
6392
- :param server_configuration: Specifies the server name and network port required to connect with the management interface of your on-premises storage system.
6393
- :param system_type: Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about. .. epigraph:: DataSync Discovery currently supports NetApp Fabric-Attached Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later.
6394
- :param cloud_watch_log_group_arn: Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.
6395
- :param name: Specifies a familiar name for your on-premises storage system.
6396
- :param server_credentials: Specifies the user name and password for accessing your on-premises storage system's management interface.
6397
- :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 on-premises storage system.
6389
+ :param agent_arns:
6390
+ :param server_configuration:
6391
+ :param system_type:
6392
+ :param cloud_watch_log_group_arn:
6393
+ :param name:
6394
+ :param server_credentials:
6395
+ :param tags:
6398
6396
  '''
6399
6397
  if __debug__:
6400
6398
  type_hints = typing.get_type_hints(_typecheckingstub__cd03aea3d03c00385e272f326dc093d0575219e3eac09a9f89062f9453a9360f)
@@ -6445,19 +6443,23 @@ class CfnStorageSystem(
6445
6443
  @builtins.property
6446
6444
  @jsii.member(jsii_name="attrConnectivityStatus")
6447
6445
  def attr_connectivity_status(self) -> builtins.str:
6448
- '''Indicates whether your DataSync agent can connect to your on-premises storage system.
6449
-
6446
+ '''
6450
6447
  :cloudformationAttribute: ConnectivityStatus
6451
6448
  '''
6452
6449
  return typing.cast(builtins.str, jsii.get(self, "attrConnectivityStatus"))
6453
6450
 
6451
+ @builtins.property
6452
+ @jsii.member(jsii_name="attrId")
6453
+ def attr_id(self) -> builtins.str:
6454
+ '''
6455
+ :cloudformationAttribute: Id
6456
+ '''
6457
+ return typing.cast(builtins.str, jsii.get(self, "attrId"))
6458
+
6454
6459
  @builtins.property
6455
6460
  @jsii.member(jsii_name="attrSecretsManagerArn")
6456
6461
  def attr_secrets_manager_arn(self) -> builtins.str:
6457
- '''The ARN of the secret that stores your on-premises storage system's credentials.
6458
-
6459
- DataSync Discovery stores these credentials in `AWS Secrets Manager <https://docs.aws.amazon.com/datasync/latest/userguide/discovery-configure-storage.html#discovery-add-storage>`_ .
6460
-
6462
+ '''
6461
6463
  :cloudformationAttribute: SecretsManagerArn
6462
6464
  '''
6463
6465
  return typing.cast(builtins.str, jsii.get(self, "attrSecretsManagerArn"))
@@ -6465,8 +6467,7 @@ class CfnStorageSystem(
6465
6467
  @builtins.property
6466
6468
  @jsii.member(jsii_name="attrStorageSystemArn")
6467
6469
  def attr_storage_system_arn(self) -> builtins.str:
6468
- '''The ARN of the on-premises storage system that you're using with DataSync Discovery.
6469
-
6470
+ '''
6470
6471
  :cloudformationAttribute: StorageSystemArn
6471
6472
  '''
6472
6473
  return typing.cast(builtins.str, jsii.get(self, "attrStorageSystemArn"))
@@ -6485,7 +6486,6 @@ class CfnStorageSystem(
6485
6486
  @builtins.property
6486
6487
  @jsii.member(jsii_name="agentArns")
6487
6488
  def agent_arns(self) -> typing.List[builtins.str]:
6488
- '''Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.'''
6489
6489
  return typing.cast(typing.List[builtins.str], jsii.get(self, "agentArns"))
6490
6490
 
6491
6491
  @agent_arns.setter
@@ -6500,7 +6500,6 @@ class CfnStorageSystem(
6500
6500
  def server_configuration(
6501
6501
  self,
6502
6502
  ) -> typing.Union[_IResolvable_da3f097b, "CfnStorageSystem.ServerConfigurationProperty"]:
6503
- '''Specifies the server name and network port required to connect with the management interface of your on-premises storage system.'''
6504
6503
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnStorageSystem.ServerConfigurationProperty"], jsii.get(self, "serverConfiguration"))
6505
6504
 
6506
6505
  @server_configuration.setter
@@ -6516,7 +6515,6 @@ class CfnStorageSystem(
6516
6515
  @builtins.property
6517
6516
  @jsii.member(jsii_name="systemType")
6518
6517
  def system_type(self) -> builtins.str:
6519
- '''Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about.'''
6520
6518
  return typing.cast(builtins.str, jsii.get(self, "systemType"))
6521
6519
 
6522
6520
  @system_type.setter
@@ -6529,7 +6527,6 @@ class CfnStorageSystem(
6529
6527
  @builtins.property
6530
6528
  @jsii.member(jsii_name="cloudWatchLogGroupArn")
6531
6529
  def cloud_watch_log_group_arn(self) -> typing.Optional[builtins.str]:
6532
- '''Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.'''
6533
6530
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "cloudWatchLogGroupArn"))
6534
6531
 
6535
6532
  @cloud_watch_log_group_arn.setter
@@ -6542,7 +6539,6 @@ class CfnStorageSystem(
6542
6539
  @builtins.property
6543
6540
  @jsii.member(jsii_name="name")
6544
6541
  def name(self) -> typing.Optional[builtins.str]:
6545
- '''Specifies a familiar name for your on-premises storage system.'''
6546
6542
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
6547
6543
 
6548
6544
  @name.setter
@@ -6557,7 +6553,6 @@ class CfnStorageSystem(
6557
6553
  def server_credentials(
6558
6554
  self,
6559
6555
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStorageSystem.ServerCredentialsProperty"]]:
6560
- '''Specifies the user name and password for accessing your on-premises storage system's management interface.'''
6561
6556
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStorageSystem.ServerCredentialsProperty"]], jsii.get(self, "serverCredentials"))
6562
6557
 
6563
6558
  @server_credentials.setter
@@ -6573,7 +6568,6 @@ class CfnStorageSystem(
6573
6568
  @builtins.property
6574
6569
  @jsii.member(jsii_name="tagsRaw")
6575
6570
  def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
6576
- '''Specifies labels that help you categorize, filter, and search for your AWS resources.'''
6577
6571
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
6578
6572
 
6579
6573
  @tags_raw.setter
@@ -6598,10 +6592,9 @@ class CfnStorageSystem(
6598
6592
  server_hostname: builtins.str,
6599
6593
  server_port: typing.Optional[jsii.Number] = None,
6600
6594
  ) -> None:
6601
- '''The network settings that DataSync Discovery uses to connect with your on-premises storage system's management interface.
6602
-
6603
- :param server_hostname: The domain name or IP address of your storage system's management interface.
6604
- :param server_port: The network port for accessing the storage system's management interface.
6595
+ '''
6596
+ :param server_hostname:
6597
+ :param server_port:
6605
6598
 
6606
6599
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-serverconfiguration.html
6607
6600
  :exampleMetadata: fixture=_generated
@@ -6631,8 +6624,7 @@ class CfnStorageSystem(
6631
6624
 
6632
6625
  @builtins.property
6633
6626
  def server_hostname(self) -> builtins.str:
6634
- '''The domain name or IP address of your storage system's management interface.
6635
-
6627
+ '''
6636
6628
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-serverconfiguration.html#cfn-datasync-storagesystem-serverconfiguration-serverhostname
6637
6629
  '''
6638
6630
  result = self._values.get("server_hostname")
@@ -6641,8 +6633,7 @@ class CfnStorageSystem(
6641
6633
 
6642
6634
  @builtins.property
6643
6635
  def server_port(self) -> typing.Optional[jsii.Number]:
6644
- '''The network port for accessing the storage system's management interface.
6645
-
6636
+ '''
6646
6637
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-serverconfiguration.html#cfn-datasync-storagesystem-serverconfiguration-serverport
6647
6638
  '''
6648
6639
  result = self._values.get("server_port")
@@ -6666,12 +6657,9 @@ class CfnStorageSystem(
6666
6657
  )
6667
6658
  class ServerCredentialsProperty:
6668
6659
  def __init__(self, *, password: builtins.str, username: builtins.str) -> None:
6669
- '''The credentials that provide DataSync Discovery read access to your on-premises storage system's management interface.
6670
-
6671
- DataSync Discovery stores these credentials in `AWS Secrets Manager <https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html>`_ . For more information, see `Accessing your on-premises storage system <https://docs.aws.amazon.com/datasync/latest/userguide/discovery-configure-storage.html>`_ .
6672
-
6673
- :param password: Specifies the password for your storage system's management interface.
6674
- :param username: Specifies the user name for your storage system's management interface.
6660
+ '''
6661
+ :param password:
6662
+ :param username:
6675
6663
 
6676
6664
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-servercredentials.html
6677
6665
  :exampleMetadata: fixture=_generated
@@ -6698,8 +6686,7 @@ class CfnStorageSystem(
6698
6686
 
6699
6687
  @builtins.property
6700
6688
  def password(self) -> builtins.str:
6701
- '''Specifies the password for your storage system's management interface.
6702
-
6689
+ '''
6703
6690
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-servercredentials.html#cfn-datasync-storagesystem-servercredentials-password
6704
6691
  '''
6705
6692
  result = self._values.get("password")
@@ -6708,8 +6695,7 @@ class CfnStorageSystem(
6708
6695
 
6709
6696
  @builtins.property
6710
6697
  def username(self) -> builtins.str:
6711
- '''Specifies the user name for your storage system's management interface.
6712
-
6698
+ '''
6713
6699
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-servercredentials.html#cfn-datasync-storagesystem-servercredentials-username
6714
6700
  '''
6715
6701
  result = self._values.get("username")
@@ -6755,13 +6741,13 @@ class CfnStorageSystemProps:
6755
6741
  ) -> None:
6756
6742
  '''Properties for defining a ``CfnStorageSystem``.
6757
6743
 
6758
- :param agent_arns: Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface. You can only specify one ARN.
6759
- :param server_configuration: Specifies the server name and network port required to connect with the management interface of your on-premises storage system.
6760
- :param system_type: Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about. .. epigraph:: DataSync Discovery currently supports NetApp Fabric-Attached Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later.
6761
- :param cloud_watch_log_group_arn: Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.
6762
- :param name: Specifies a familiar name for your on-premises storage system.
6763
- :param server_credentials: Specifies the user name and password for accessing your on-premises storage system's management interface.
6764
- :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 on-premises storage system.
6744
+ :param agent_arns:
6745
+ :param server_configuration:
6746
+ :param system_type:
6747
+ :param cloud_watch_log_group_arn:
6748
+ :param name:
6749
+ :param server_credentials:
6750
+ :param tags:
6765
6751
 
6766
6752
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html
6767
6753
  :exampleMetadata: fixture=_generated
@@ -6820,10 +6806,7 @@ class CfnStorageSystemProps:
6820
6806
 
6821
6807
  @builtins.property
6822
6808
  def agent_arns(self) -> typing.List[builtins.str]:
6823
- '''Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.
6824
-
6825
- You can only specify one ARN.
6826
-
6809
+ '''
6827
6810
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#cfn-datasync-storagesystem-agentarns
6828
6811
  '''
6829
6812
  result = self._values.get("agent_arns")
@@ -6834,8 +6817,7 @@ class CfnStorageSystemProps:
6834
6817
  def server_configuration(
6835
6818
  self,
6836
6819
  ) -> typing.Union[_IResolvable_da3f097b, CfnStorageSystem.ServerConfigurationProperty]:
6837
- '''Specifies the server name and network port required to connect with the management interface of your on-premises storage system.
6838
-
6820
+ '''
6839
6821
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#cfn-datasync-storagesystem-serverconfiguration
6840
6822
  '''
6841
6823
  result = self._values.get("server_configuration")
@@ -6844,12 +6826,7 @@ class CfnStorageSystemProps:
6844
6826
 
6845
6827
  @builtins.property
6846
6828
  def system_type(self) -> builtins.str:
6847
- '''Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about.
6848
-
6849
- .. epigraph::
6850
-
6851
- DataSync Discovery currently supports NetApp Fabric-Attached Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later.
6852
-
6829
+ '''
6853
6830
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#cfn-datasync-storagesystem-systemtype
6854
6831
  '''
6855
6832
  result = self._values.get("system_type")
@@ -6858,8 +6835,7 @@ class CfnStorageSystemProps:
6858
6835
 
6859
6836
  @builtins.property
6860
6837
  def cloud_watch_log_group_arn(self) -> typing.Optional[builtins.str]:
6861
- '''Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.
6862
-
6838
+ '''
6863
6839
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#cfn-datasync-storagesystem-cloudwatchloggrouparn
6864
6840
  '''
6865
6841
  result = self._values.get("cloud_watch_log_group_arn")
@@ -6867,8 +6843,7 @@ class CfnStorageSystemProps:
6867
6843
 
6868
6844
  @builtins.property
6869
6845
  def name(self) -> typing.Optional[builtins.str]:
6870
- '''Specifies a familiar name for your on-premises storage system.
6871
-
6846
+ '''
6872
6847
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#cfn-datasync-storagesystem-name
6873
6848
  '''
6874
6849
  result = self._values.get("name")
@@ -6878,8 +6853,7 @@ class CfnStorageSystemProps:
6878
6853
  def server_credentials(
6879
6854
  self,
6880
6855
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnStorageSystem.ServerCredentialsProperty]]:
6881
- '''Specifies the user name and password for accessing your on-premises storage system's management interface.
6882
-
6856
+ '''
6883
6857
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#cfn-datasync-storagesystem-servercredentials
6884
6858
  '''
6885
6859
  result = self._values.get("server_credentials")
@@ -6887,10 +6861,7 @@ class CfnStorageSystemProps:
6887
6861
 
6888
6862
  @builtins.property
6889
6863
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
6890
- '''Specifies labels that help you categorize, filter, and search for your AWS resources.
6891
-
6892
- We recommend creating at least a name tag for your on-premises storage system.
6893
-
6864
+ '''
6894
6865
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#cfn-datasync-storagesystem-tags
6895
6866
  '''
6896
6867
  result = self._values.get("tags")