aws-cdk-lib 2.210.0__py3-none-any.whl → 2.211.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 +6 -11
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.210.0.jsii.tgz → aws-cdk-lib@2.211.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +2 -1
- aws_cdk/aws_appconfig/__init__.py +9 -0
- aws_cdk/aws_arcregionswitch/__init__.py +4962 -0
- aws_cdk/aws_athena/__init__.py +23 -19
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_batch/__init__.py +721 -51
- aws_cdk/aws_cassandra/__init__.py +28 -1
- aws_cdk/aws_cloudfront/__init__.py +20 -8
- aws_cdk/aws_cognito/__init__.py +9 -2
- aws_cdk/aws_datazone/__init__.py +118 -77
- aws_cdk/aws_dax/__init__.py +39 -0
- aws_cdk/aws_deadline/__init__.py +155 -7
- aws_cdk/aws_docdb/__init__.py +20 -11
- aws_cdk/aws_dynamodb/__init__.py +160 -20
- aws_cdk/aws_ec2/__init__.py +978 -256
- aws_cdk/aws_ecr/__init__.py +274 -0
- aws_cdk/aws_ecs/__init__.py +1642 -140
- aws_cdk/aws_eks/__init__.py +51 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +30 -16
- aws_cdk/aws_entityresolution/__init__.py +240 -45
- aws_cdk/aws_evs/__init__.py +20 -45
- aws_cdk/aws_iot/__init__.py +387 -0
- aws_cdk/aws_iotsitewise/__init__.py +1247 -139
- aws_cdk/aws_ivs/__init__.py +443 -33
- aws_cdk/aws_kinesisfirehose/__init__.py +2 -0
- aws_cdk/aws_lambda/__init__.py +3 -3
- aws_cdk/aws_lightsail/__init__.py +590 -0
- aws_cdk/aws_logs/__init__.py +97 -3
- aws_cdk/aws_medialive/__init__.py +270 -7
- aws_cdk/aws_mediapackagev2/__init__.py +204 -6
- aws_cdk/aws_neptune/__init__.py +41 -2
- aws_cdk/aws_networkfirewall/__init__.py +490 -134
- aws_cdk/aws_observabilityadmin/__init__.py +1468 -0
- aws_cdk/aws_opensearchserverless/__init__.py +2 -2
- aws_cdk/aws_opsworks/__init__.py +125 -125
- aws_cdk/aws_opsworkscm/__init__.py +1 -53
- aws_cdk/aws_pcs/__init__.py +36 -0
- aws_cdk/aws_qbusiness/__init__.py +3 -3
- aws_cdk/aws_quicksight/__init__.py +107 -0
- aws_cdk/aws_rds/__init__.py +274 -0
- aws_cdk/aws_s3/__init__.py +56 -1
- aws_cdk/aws_s3express/__init__.py +52 -1
- aws_cdk/aws_sagemaker/__init__.py +4033 -218
- aws_cdk/aws_ses/__init__.py +172 -9
- aws_cdk/aws_ssm/__init__.py +8 -4
- aws_cdk/aws_verifiedpermissions/__init__.py +23 -2
- aws_cdk/aws_wisdom/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +949 -157
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/METADATA +8 -8
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/RECORD +57 -55
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -7235,9 +7235,10 @@ class CfnEnvironmentBlueprintConfiguration(
|
|
|
7235
7235
|
location_registration_exclude_s3_locations: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7236
7236
|
location_registration_role: typing.Optional[builtins.str] = None,
|
|
7237
7237
|
) -> None:
|
|
7238
|
-
'''
|
|
7239
|
-
|
|
7240
|
-
:param
|
|
7238
|
+
'''The Lake Formation configuration of the Data Lake blueprint.
|
|
7239
|
+
|
|
7240
|
+
:param location_registration_exclude_s3_locations: Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.
|
|
7241
|
+
:param location_registration_role: The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode.
|
|
7241
7242
|
|
|
7242
7243
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html
|
|
7243
7244
|
:exampleMetadata: fixture=_generated
|
|
@@ -7267,7 +7268,8 @@ class CfnEnvironmentBlueprintConfiguration(
|
|
|
7267
7268
|
def location_registration_exclude_s3_locations(
|
|
7268
7269
|
self,
|
|
7269
7270
|
) -> typing.Optional[typing.List[builtins.str]]:
|
|
7270
|
-
'''
|
|
7271
|
+
'''Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.
|
|
7272
|
+
|
|
7271
7273
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html#cfn-datazone-environmentblueprintconfiguration-lakeformationconfiguration-locationregistrationexcludes3locations
|
|
7272
7274
|
'''
|
|
7273
7275
|
result = self._values.get("location_registration_exclude_s3_locations")
|
|
@@ -7275,7 +7277,8 @@ class CfnEnvironmentBlueprintConfiguration(
|
|
|
7275
7277
|
|
|
7276
7278
|
@builtins.property
|
|
7277
7279
|
def location_registration_role(self) -> typing.Optional[builtins.str]:
|
|
7278
|
-
'''
|
|
7280
|
+
'''The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode.
|
|
7281
|
+
|
|
7279
7282
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html#cfn-datazone-environmentblueprintconfiguration-lakeformationconfiguration-locationregistrationrole
|
|
7280
7283
|
'''
|
|
7281
7284
|
result = self._values.get("location_registration_role")
|
|
@@ -7303,8 +7306,9 @@ class CfnEnvironmentBlueprintConfiguration(
|
|
|
7303
7306
|
*,
|
|
7304
7307
|
lake_formation_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
7305
7308
|
) -> None:
|
|
7306
|
-
'''
|
|
7307
|
-
|
|
7309
|
+
'''The provisioning configuration of the blueprint.
|
|
7310
|
+
|
|
7311
|
+
:param lake_formation_configuration: The Lake Formation configuration of the Data Lake blueprint.
|
|
7308
7312
|
|
|
7309
7313
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-provisioningconfiguration.html
|
|
7310
7314
|
:exampleMetadata: fixture=_generated
|
|
@@ -7333,7 +7337,8 @@ class CfnEnvironmentBlueprintConfiguration(
|
|
|
7333
7337
|
def lake_formation_configuration(
|
|
7334
7338
|
self,
|
|
7335
7339
|
) -> typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty"]:
|
|
7336
|
-
'''
|
|
7340
|
+
'''The Lake Formation configuration of the Data Lake blueprint.
|
|
7341
|
+
|
|
7337
7342
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-provisioningconfiguration.html#cfn-datazone-environmentblueprintconfiguration-provisioningconfiguration-lakeformationconfiguration
|
|
7338
7343
|
'''
|
|
7339
7344
|
result = self._values.get("lake_formation_configuration")
|
|
@@ -9133,8 +9138,8 @@ class CfnProject(
|
|
|
9133
9138
|
:param description: The description of a project.
|
|
9134
9139
|
:param domain_unit_id: The ID of the domain unit. This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
|
|
9135
9140
|
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
|
|
9136
|
-
:param project_profile_id: The project profile
|
|
9137
|
-
:param project_profile_version: The project profile version to which the project should be updated. You can only specify the following string for this parameter: latest.
|
|
9141
|
+
:param project_profile_id: The ID of the project profile.
|
|
9142
|
+
:param project_profile_version: The project profile version to which the project should be updated. You can only specify the following string for this parameter: ``latest`` .
|
|
9138
9143
|
:param user_parameters: The user parameters of the project.
|
|
9139
9144
|
'''
|
|
9140
9145
|
if __debug__:
|
|
@@ -9311,7 +9316,7 @@ class CfnProject(
|
|
|
9311
9316
|
@builtins.property
|
|
9312
9317
|
@jsii.member(jsii_name="projectProfileId")
|
|
9313
9318
|
def project_profile_id(self) -> typing.Optional[builtins.str]:
|
|
9314
|
-
'''The project profile
|
|
9319
|
+
'''The ID of the project profile.'''
|
|
9315
9320
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "projectProfileId"))
|
|
9316
9321
|
|
|
9317
9322
|
@project_profile_id.setter
|
|
@@ -9369,10 +9374,11 @@ class CfnProject(
|
|
|
9369
9374
|
environment_id: typing.Optional[builtins.str] = None,
|
|
9370
9375
|
environment_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProject.EnvironmentParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
9371
9376
|
) -> None:
|
|
9372
|
-
'''
|
|
9373
|
-
|
|
9374
|
-
:param
|
|
9375
|
-
:param
|
|
9377
|
+
'''The environment configuration user parameters.
|
|
9378
|
+
|
|
9379
|
+
:param environment_configuration_name: The environment configuration name.
|
|
9380
|
+
:param environment_id: The ID of the environment.
|
|
9381
|
+
:param environment_parameters: The environment parameters.
|
|
9376
9382
|
|
|
9377
9383
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html
|
|
9378
9384
|
:exampleMetadata: fixture=_generated
|
|
@@ -9407,7 +9413,8 @@ class CfnProject(
|
|
|
9407
9413
|
|
|
9408
9414
|
@builtins.property
|
|
9409
9415
|
def environment_configuration_name(self) -> typing.Optional[builtins.str]:
|
|
9410
|
-
'''
|
|
9416
|
+
'''The environment configuration name.
|
|
9417
|
+
|
|
9411
9418
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentconfigurationname
|
|
9412
9419
|
'''
|
|
9413
9420
|
result = self._values.get("environment_configuration_name")
|
|
@@ -9415,7 +9422,8 @@ class CfnProject(
|
|
|
9415
9422
|
|
|
9416
9423
|
@builtins.property
|
|
9417
9424
|
def environment_id(self) -> typing.Optional[builtins.str]:
|
|
9418
|
-
'''
|
|
9425
|
+
'''The ID of the environment.
|
|
9426
|
+
|
|
9419
9427
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentid
|
|
9420
9428
|
'''
|
|
9421
9429
|
result = self._values.get("environment_id")
|
|
@@ -9425,7 +9433,8 @@ class CfnProject(
|
|
|
9425
9433
|
def environment_parameters(
|
|
9426
9434
|
self,
|
|
9427
9435
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.EnvironmentParameterProperty"]]]]:
|
|
9428
|
-
'''
|
|
9436
|
+
'''The environment parameters.
|
|
9437
|
+
|
|
9429
9438
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentparameters
|
|
9430
9439
|
'''
|
|
9431
9440
|
result = self._values.get("environment_parameters")
|
|
@@ -9454,9 +9463,10 @@ class CfnProject(
|
|
|
9454
9463
|
name: typing.Optional[builtins.str] = None,
|
|
9455
9464
|
value: typing.Optional[builtins.str] = None,
|
|
9456
9465
|
) -> None:
|
|
9457
|
-
'''
|
|
9458
|
-
|
|
9459
|
-
:param
|
|
9466
|
+
'''The parameter details of an evironment profile.
|
|
9467
|
+
|
|
9468
|
+
:param name: The name of an environment profile parameter.
|
|
9469
|
+
:param value: The value of an environment profile parameter.
|
|
9460
9470
|
|
|
9461
9471
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html
|
|
9462
9472
|
:exampleMetadata: fixture=_generated
|
|
@@ -9484,7 +9494,8 @@ class CfnProject(
|
|
|
9484
9494
|
|
|
9485
9495
|
@builtins.property
|
|
9486
9496
|
def name(self) -> typing.Optional[builtins.str]:
|
|
9487
|
-
'''
|
|
9497
|
+
'''The name of an environment profile parameter.
|
|
9498
|
+
|
|
9488
9499
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html#cfn-datazone-project-environmentparameter-name
|
|
9489
9500
|
'''
|
|
9490
9501
|
result = self._values.get("name")
|
|
@@ -9492,7 +9503,8 @@ class CfnProject(
|
|
|
9492
9503
|
|
|
9493
9504
|
@builtins.property
|
|
9494
9505
|
def value(self) -> typing.Optional[builtins.str]:
|
|
9495
|
-
'''
|
|
9506
|
+
'''The value of an environment profile parameter.
|
|
9507
|
+
|
|
9496
9508
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html#cfn-datazone-project-environmentparameter-value
|
|
9497
9509
|
'''
|
|
9498
9510
|
result = self._values.get("value")
|
|
@@ -9858,7 +9870,7 @@ class CfnProjectProfile(
|
|
|
9858
9870
|
metaclass=jsii.JSIIMeta,
|
|
9859
9871
|
jsii_type="aws-cdk-lib.aws_datazone.CfnProjectProfile",
|
|
9860
9872
|
):
|
|
9861
|
-
'''
|
|
9873
|
+
'''The summary of a project profile.
|
|
9862
9874
|
|
|
9863
9875
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html
|
|
9864
9876
|
:cloudformationResource: AWS::DataZone::ProjectProfile
|
|
@@ -9927,9 +9939,9 @@ class CfnProjectProfile(
|
|
|
9927
9939
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
9928
9940
|
:param name: The name of a project profile.
|
|
9929
9941
|
:param description: The description of the project profile.
|
|
9930
|
-
:param domain_identifier:
|
|
9931
|
-
:param domain_unit_identifier:
|
|
9932
|
-
:param environment_configurations:
|
|
9942
|
+
:param domain_identifier: A domain ID of the project profile.
|
|
9943
|
+
:param domain_unit_identifier: A domain unit ID of the project profile.
|
|
9944
|
+
:param environment_configurations: Environment configurations of a project profile.
|
|
9933
9945
|
:param status: The status of a project profile.
|
|
9934
9946
|
'''
|
|
9935
9947
|
if __debug__:
|
|
@@ -10025,7 +10037,8 @@ class CfnProjectProfile(
|
|
|
10025
10037
|
@builtins.property
|
|
10026
10038
|
@jsii.member(jsii_name="attrIdentifier")
|
|
10027
10039
|
def attr_identifier(self) -> builtins.str:
|
|
10028
|
-
'''
|
|
10040
|
+
'''Project profile ID.
|
|
10041
|
+
|
|
10029
10042
|
:cloudformationAttribute: Identifier
|
|
10030
10043
|
'''
|
|
10031
10044
|
return typing.cast(builtins.str, jsii.get(self, "attrIdentifier"))
|
|
@@ -10073,6 +10086,7 @@ class CfnProjectProfile(
|
|
|
10073
10086
|
@builtins.property
|
|
10074
10087
|
@jsii.member(jsii_name="domainIdentifier")
|
|
10075
10088
|
def domain_identifier(self) -> typing.Optional[builtins.str]:
|
|
10089
|
+
'''A domain ID of the project profile.'''
|
|
10076
10090
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "domainIdentifier"))
|
|
10077
10091
|
|
|
10078
10092
|
@domain_identifier.setter
|
|
@@ -10085,6 +10099,7 @@ class CfnProjectProfile(
|
|
|
10085
10099
|
@builtins.property
|
|
10086
10100
|
@jsii.member(jsii_name="domainUnitIdentifier")
|
|
10087
10101
|
def domain_unit_identifier(self) -> typing.Optional[builtins.str]:
|
|
10102
|
+
'''A domain unit ID of the project profile.'''
|
|
10088
10103
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "domainUnitIdentifier"))
|
|
10089
10104
|
|
|
10090
10105
|
@domain_unit_identifier.setter
|
|
@@ -10099,6 +10114,7 @@ class CfnProjectProfile(
|
|
|
10099
10114
|
def environment_configurations(
|
|
10100
10115
|
self,
|
|
10101
10116
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.EnvironmentConfigurationProperty"]]]]:
|
|
10117
|
+
'''Environment configurations of a project profile.'''
|
|
10102
10118
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.EnvironmentConfigurationProperty"]]]], jsii.get(self, "environmentConfigurations"))
|
|
10103
10119
|
|
|
10104
10120
|
@environment_configurations.setter
|
|
@@ -10131,8 +10147,9 @@ class CfnProjectProfile(
|
|
|
10131
10147
|
)
|
|
10132
10148
|
class AwsAccountProperty:
|
|
10133
10149
|
def __init__(self, *, aws_account_id: builtins.str) -> None:
|
|
10134
|
-
'''
|
|
10135
|
-
|
|
10150
|
+
'''The AWS account of the environment.
|
|
10151
|
+
|
|
10152
|
+
:param aws_account_id: The account ID of a project.
|
|
10136
10153
|
|
|
10137
10154
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html
|
|
10138
10155
|
:exampleMetadata: fixture=_generated
|
|
@@ -10156,7 +10173,8 @@ class CfnProjectProfile(
|
|
|
10156
10173
|
|
|
10157
10174
|
@builtins.property
|
|
10158
10175
|
def aws_account_id(self) -> builtins.str:
|
|
10159
|
-
'''
|
|
10176
|
+
'''The account ID of a project.
|
|
10177
|
+
|
|
10160
10178
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html#cfn-datazone-projectprofile-awsaccount-awsaccountid
|
|
10161
10179
|
'''
|
|
10162
10180
|
result = self._values.get("aws_account_id")
|
|
@@ -10187,10 +10205,11 @@ class CfnProjectProfile(
|
|
|
10187
10205
|
name: typing.Optional[builtins.str] = None,
|
|
10188
10206
|
value: typing.Optional[builtins.str] = None,
|
|
10189
10207
|
) -> None:
|
|
10190
|
-
'''
|
|
10191
|
-
|
|
10192
|
-
:param
|
|
10193
|
-
:param
|
|
10208
|
+
'''The environment configuration parameter.
|
|
10209
|
+
|
|
10210
|
+
:param is_editable: Specifies whether the environment parameter is editable.
|
|
10211
|
+
:param name: The name of the environment configuration parameter.
|
|
10212
|
+
:param value: The value of the environment configuration parameter.
|
|
10194
10213
|
|
|
10195
10214
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html
|
|
10196
10215
|
:exampleMetadata: fixture=_generated
|
|
@@ -10224,7 +10243,8 @@ class CfnProjectProfile(
|
|
|
10224
10243
|
def is_editable(
|
|
10225
10244
|
self,
|
|
10226
10245
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
10227
|
-
'''
|
|
10246
|
+
'''Specifies whether the environment parameter is editable.
|
|
10247
|
+
|
|
10228
10248
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-iseditable
|
|
10229
10249
|
'''
|
|
10230
10250
|
result = self._values.get("is_editable")
|
|
@@ -10232,7 +10252,8 @@ class CfnProjectProfile(
|
|
|
10232
10252
|
|
|
10233
10253
|
@builtins.property
|
|
10234
10254
|
def name(self) -> typing.Optional[builtins.str]:
|
|
10235
|
-
'''
|
|
10255
|
+
'''The name of the environment configuration parameter.
|
|
10256
|
+
|
|
10236
10257
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-name
|
|
10237
10258
|
'''
|
|
10238
10259
|
result = self._values.get("name")
|
|
@@ -10240,7 +10261,8 @@ class CfnProjectProfile(
|
|
|
10240
10261
|
|
|
10241
10262
|
@builtins.property
|
|
10242
10263
|
def value(self) -> typing.Optional[builtins.str]:
|
|
10243
|
-
'''
|
|
10264
|
+
'''The value of the environment configuration parameter.
|
|
10265
|
+
|
|
10244
10266
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-value
|
|
10245
10267
|
'''
|
|
10246
10268
|
result = self._values.get("value")
|
|
@@ -10274,10 +10296,11 @@ class CfnProjectProfile(
|
|
|
10274
10296
|
resolved_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProjectProfile.EnvironmentConfigurationParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10275
10297
|
ssm_path: typing.Optional[builtins.str] = None,
|
|
10276
10298
|
) -> None:
|
|
10277
|
-
'''
|
|
10278
|
-
|
|
10279
|
-
:param
|
|
10280
|
-
:param
|
|
10299
|
+
'''The details of the environment configuration parameter.
|
|
10300
|
+
|
|
10301
|
+
:param parameter_overrides: The parameter overrides.
|
|
10302
|
+
:param resolved_parameters: The resolved environment configuration parameters.
|
|
10303
|
+
:param ssm_path: Ssm path environment configuration parameters.
|
|
10281
10304
|
|
|
10282
10305
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html
|
|
10283
10306
|
:exampleMetadata: fixture=_generated
|
|
@@ -10319,7 +10342,8 @@ class CfnProjectProfile(
|
|
|
10319
10342
|
def parameter_overrides(
|
|
10320
10343
|
self,
|
|
10321
10344
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.EnvironmentConfigurationParameterProperty"]]]]:
|
|
10322
|
-
'''
|
|
10345
|
+
'''The parameter overrides.
|
|
10346
|
+
|
|
10323
10347
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-parameteroverrides
|
|
10324
10348
|
'''
|
|
10325
10349
|
result = self._values.get("parameter_overrides")
|
|
@@ -10329,7 +10353,8 @@ class CfnProjectProfile(
|
|
|
10329
10353
|
def resolved_parameters(
|
|
10330
10354
|
self,
|
|
10331
10355
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.EnvironmentConfigurationParameterProperty"]]]]:
|
|
10332
|
-
'''
|
|
10356
|
+
'''The resolved environment configuration parameters.
|
|
10357
|
+
|
|
10333
10358
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-resolvedparameters
|
|
10334
10359
|
'''
|
|
10335
10360
|
result = self._values.get("resolved_parameters")
|
|
@@ -10337,7 +10362,8 @@ class CfnProjectProfile(
|
|
|
10337
10362
|
|
|
10338
10363
|
@builtins.property
|
|
10339
10364
|
def ssm_path(self) -> typing.Optional[builtins.str]:
|
|
10340
|
-
'''
|
|
10365
|
+
'''Ssm path environment configuration parameters.
|
|
10366
|
+
|
|
10341
10367
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-ssmpath
|
|
10342
10368
|
'''
|
|
10343
10369
|
result = self._values.get("ssm_path")
|
|
@@ -10383,16 +10409,17 @@ class CfnProjectProfile(
|
|
|
10383
10409
|
description: typing.Optional[builtins.str] = None,
|
|
10384
10410
|
id: typing.Optional[builtins.str] = None,
|
|
10385
10411
|
) -> None:
|
|
10386
|
-
'''
|
|
10387
|
-
|
|
10388
|
-
:param
|
|
10389
|
-
:param
|
|
10390
|
-
:param
|
|
10391
|
-
:param
|
|
10392
|
-
:param
|
|
10393
|
-
:param
|
|
10394
|
-
:param
|
|
10395
|
-
:param
|
|
10412
|
+
'''The configuration of an environment.
|
|
10413
|
+
|
|
10414
|
+
:param aws_region: The AWS Region of the environment.
|
|
10415
|
+
:param environment_blueprint_id: The environment blueprint ID.
|
|
10416
|
+
:param name: The environment name.
|
|
10417
|
+
:param aws_account: The AWS account of the environment.
|
|
10418
|
+
:param configuration_parameters: The configuration parameters of the environment.
|
|
10419
|
+
:param deployment_mode: The deployment mode of the environment.
|
|
10420
|
+
:param deployment_order: The deployment order of the environment.
|
|
10421
|
+
:param description: The environment description.
|
|
10422
|
+
:param id: The environment ID.
|
|
10396
10423
|
|
|
10397
10424
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html
|
|
10398
10425
|
:exampleMetadata: fixture=_generated
|
|
@@ -10466,7 +10493,8 @@ class CfnProjectProfile(
|
|
|
10466
10493
|
def aws_region(
|
|
10467
10494
|
self,
|
|
10468
10495
|
) -> typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.RegionProperty"]:
|
|
10469
|
-
'''
|
|
10496
|
+
'''The AWS Region of the environment.
|
|
10497
|
+
|
|
10470
10498
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-awsregion
|
|
10471
10499
|
'''
|
|
10472
10500
|
result = self._values.get("aws_region")
|
|
@@ -10475,7 +10503,8 @@ class CfnProjectProfile(
|
|
|
10475
10503
|
|
|
10476
10504
|
@builtins.property
|
|
10477
10505
|
def environment_blueprint_id(self) -> builtins.str:
|
|
10478
|
-
'''
|
|
10506
|
+
'''The environment blueprint ID.
|
|
10507
|
+
|
|
10479
10508
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-environmentblueprintid
|
|
10480
10509
|
'''
|
|
10481
10510
|
result = self._values.get("environment_blueprint_id")
|
|
@@ -10484,7 +10513,8 @@ class CfnProjectProfile(
|
|
|
10484
10513
|
|
|
10485
10514
|
@builtins.property
|
|
10486
10515
|
def name(self) -> builtins.str:
|
|
10487
|
-
'''
|
|
10516
|
+
'''The environment name.
|
|
10517
|
+
|
|
10488
10518
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-name
|
|
10489
10519
|
'''
|
|
10490
10520
|
result = self._values.get("name")
|
|
@@ -10495,7 +10525,8 @@ class CfnProjectProfile(
|
|
|
10495
10525
|
def aws_account(
|
|
10496
10526
|
self,
|
|
10497
10527
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.AwsAccountProperty"]]:
|
|
10498
|
-
'''
|
|
10528
|
+
'''The AWS account of the environment.
|
|
10529
|
+
|
|
10499
10530
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-awsaccount
|
|
10500
10531
|
'''
|
|
10501
10532
|
result = self._values.get("aws_account")
|
|
@@ -10505,7 +10536,8 @@ class CfnProjectProfile(
|
|
|
10505
10536
|
def configuration_parameters(
|
|
10506
10537
|
self,
|
|
10507
10538
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.EnvironmentConfigurationParametersDetailsProperty"]]:
|
|
10508
|
-
'''
|
|
10539
|
+
'''The configuration parameters of the environment.
|
|
10540
|
+
|
|
10509
10541
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-configurationparameters
|
|
10510
10542
|
'''
|
|
10511
10543
|
result = self._values.get("configuration_parameters")
|
|
@@ -10513,7 +10545,8 @@ class CfnProjectProfile(
|
|
|
10513
10545
|
|
|
10514
10546
|
@builtins.property
|
|
10515
10547
|
def deployment_mode(self) -> typing.Optional[builtins.str]:
|
|
10516
|
-
'''
|
|
10548
|
+
'''The deployment mode of the environment.
|
|
10549
|
+
|
|
10517
10550
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-deploymentmode
|
|
10518
10551
|
'''
|
|
10519
10552
|
result = self._values.get("deployment_mode")
|
|
@@ -10521,7 +10554,8 @@ class CfnProjectProfile(
|
|
|
10521
10554
|
|
|
10522
10555
|
@builtins.property
|
|
10523
10556
|
def deployment_order(self) -> typing.Optional[jsii.Number]:
|
|
10524
|
-
'''
|
|
10557
|
+
'''The deployment order of the environment.
|
|
10558
|
+
|
|
10525
10559
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-deploymentorder
|
|
10526
10560
|
'''
|
|
10527
10561
|
result = self._values.get("deployment_order")
|
|
@@ -10529,7 +10563,8 @@ class CfnProjectProfile(
|
|
|
10529
10563
|
|
|
10530
10564
|
@builtins.property
|
|
10531
10565
|
def description(self) -> typing.Optional[builtins.str]:
|
|
10532
|
-
'''
|
|
10566
|
+
'''The environment description.
|
|
10567
|
+
|
|
10533
10568
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-description
|
|
10534
10569
|
'''
|
|
10535
10570
|
result = self._values.get("description")
|
|
@@ -10537,7 +10572,8 @@ class CfnProjectProfile(
|
|
|
10537
10572
|
|
|
10538
10573
|
@builtins.property
|
|
10539
10574
|
def id(self) -> typing.Optional[builtins.str]:
|
|
10540
|
-
'''
|
|
10575
|
+
'''The environment ID.
|
|
10576
|
+
|
|
10541
10577
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-id
|
|
10542
10578
|
'''
|
|
10543
10579
|
result = self._values.get("id")
|
|
@@ -10561,8 +10597,9 @@ class CfnProjectProfile(
|
|
|
10561
10597
|
)
|
|
10562
10598
|
class RegionProperty:
|
|
10563
10599
|
def __init__(self, *, region_name: builtins.str) -> None:
|
|
10564
|
-
'''
|
|
10565
|
-
|
|
10600
|
+
'''The AWS Region.
|
|
10601
|
+
|
|
10602
|
+
:param region_name: The AWS Region name.
|
|
10566
10603
|
|
|
10567
10604
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-region.html
|
|
10568
10605
|
:exampleMetadata: fixture=_generated
|
|
@@ -10586,7 +10623,8 @@ class CfnProjectProfile(
|
|
|
10586
10623
|
|
|
10587
10624
|
@builtins.property
|
|
10588
10625
|
def region_name(self) -> builtins.str:
|
|
10589
|
-
'''
|
|
10626
|
+
'''The AWS Region name.
|
|
10627
|
+
|
|
10590
10628
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-region.html#cfn-datazone-projectprofile-region-regionname
|
|
10591
10629
|
'''
|
|
10592
10630
|
result = self._values.get("region_name")
|
|
@@ -10632,9 +10670,9 @@ class CfnProjectProfileProps:
|
|
|
10632
10670
|
|
|
10633
10671
|
:param name: The name of a project profile.
|
|
10634
10672
|
:param description: The description of the project profile.
|
|
10635
|
-
:param domain_identifier:
|
|
10636
|
-
:param domain_unit_identifier:
|
|
10637
|
-
:param environment_configurations:
|
|
10673
|
+
:param domain_identifier: A domain ID of the project profile.
|
|
10674
|
+
:param domain_unit_identifier: A domain unit ID of the project profile.
|
|
10675
|
+
:param environment_configurations: Environment configurations of a project profile.
|
|
10638
10676
|
:param status: The status of a project profile.
|
|
10639
10677
|
|
|
10640
10678
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html
|
|
@@ -10728,7 +10766,8 @@ class CfnProjectProfileProps:
|
|
|
10728
10766
|
|
|
10729
10767
|
@builtins.property
|
|
10730
10768
|
def domain_identifier(self) -> typing.Optional[builtins.str]:
|
|
10731
|
-
'''
|
|
10769
|
+
'''A domain ID of the project profile.
|
|
10770
|
+
|
|
10732
10771
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainidentifier
|
|
10733
10772
|
'''
|
|
10734
10773
|
result = self._values.get("domain_identifier")
|
|
@@ -10736,7 +10775,8 @@ class CfnProjectProfileProps:
|
|
|
10736
10775
|
|
|
10737
10776
|
@builtins.property
|
|
10738
10777
|
def domain_unit_identifier(self) -> typing.Optional[builtins.str]:
|
|
10739
|
-
'''
|
|
10778
|
+
'''A domain unit ID of the project profile.
|
|
10779
|
+
|
|
10740
10780
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainunitidentifier
|
|
10741
10781
|
'''
|
|
10742
10782
|
result = self._values.get("domain_unit_identifier")
|
|
@@ -10746,7 +10786,8 @@ class CfnProjectProfileProps:
|
|
|
10746
10786
|
def environment_configurations(
|
|
10747
10787
|
self,
|
|
10748
10788
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProjectProfile.EnvironmentConfigurationProperty]]]]:
|
|
10749
|
-
'''
|
|
10789
|
+
'''Environment configurations of a project profile.
|
|
10790
|
+
|
|
10750
10791
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-environmentconfigurations
|
|
10751
10792
|
'''
|
|
10752
10793
|
result = self._values.get("environment_configurations")
|
|
@@ -10807,8 +10848,8 @@ class CfnProjectProps:
|
|
|
10807
10848
|
:param description: The description of a project.
|
|
10808
10849
|
:param domain_unit_id: The ID of the domain unit. This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
|
|
10809
10850
|
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
|
|
10810
|
-
:param project_profile_id: The project profile
|
|
10811
|
-
:param project_profile_version: The project profile version to which the project should be updated. You can only specify the following string for this parameter: latest.
|
|
10851
|
+
:param project_profile_id: The ID of the project profile.
|
|
10852
|
+
:param project_profile_version: The project profile version to which the project should be updated. You can only specify the following string for this parameter: ``latest`` .
|
|
10812
10853
|
:param user_parameters: The user parameters of the project.
|
|
10813
10854
|
|
|
10814
10855
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html
|
|
@@ -10918,7 +10959,7 @@ class CfnProjectProps:
|
|
|
10918
10959
|
|
|
10919
10960
|
@builtins.property
|
|
10920
10961
|
def project_profile_id(self) -> typing.Optional[builtins.str]:
|
|
10921
|
-
'''The project profile
|
|
10962
|
+
'''The ID of the project profile.
|
|
10922
10963
|
|
|
10923
10964
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileid
|
|
10924
10965
|
'''
|
|
@@ -10929,7 +10970,7 @@ class CfnProjectProps:
|
|
|
10929
10970
|
def project_profile_version(self) -> typing.Optional[builtins.str]:
|
|
10930
10971
|
'''The project profile version to which the project should be updated.
|
|
10931
10972
|
|
|
10932
|
-
You can only specify the following string for this parameter: latest.
|
|
10973
|
+
You can only specify the following string for this parameter: ``latest`` .
|
|
10933
10974
|
|
|
10934
10975
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileversion
|
|
10935
10976
|
'''
|