aws-cdk-lib 2.158.0__py3-none-any.whl → 2.159.1__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 +36 -19
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.158.0.jsii.tgz → aws-cdk-lib@2.159.1.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +22 -8
- aws_cdk/aws_apigatewayv2/__init__.py +30 -0
- aws_cdk/aws_appconfig/__init__.py +3 -3
- aws_cdk/aws_applicationinsights/__init__.py +544 -4
- aws_cdk/aws_applicationsignals/__init__.py +170 -142
- aws_cdk/aws_athena/__init__.py +15 -15
- aws_cdk/aws_auditmanager/__init__.py +5 -5
- aws_cdk/aws_bedrock/__init__.py +7 -7
- aws_cdk/aws_codebuild/__init__.py +39 -18
- aws_cdk/aws_codeconnections/__init__.py +1 -1
- aws_cdk/aws_cognito/__init__.py +390 -203
- aws_cdk/aws_connect/__init__.py +1679 -152
- aws_cdk/aws_datazone/__init__.py +665 -40
- aws_cdk/aws_docdb/__init__.py +6 -1
- aws_cdk/aws_dynamodb/__init__.py +5 -5
- aws_cdk/aws_ec2/__init__.py +121 -36
- aws_cdk/aws_ecr/__init__.py +14 -6
- aws_cdk/aws_ecs/__init__.py +20 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +167 -20
- aws_cdk/aws_emr/__init__.py +8 -8
- aws_cdk/aws_events/__init__.py +19 -17
- aws_cdk/aws_events_targets/__init__.py +165 -85
- aws_cdk/aws_fms/__init__.py +59 -0
- aws_cdk/aws_fsx/__init__.py +3 -3
- aws_cdk/aws_gamelift/__init__.py +40 -52
- aws_cdk/aws_globalaccelerator/__init__.py +22 -29
- aws_cdk/aws_iam/__init__.py +22 -20
- aws_cdk/aws_iotfleetwise/__init__.py +419 -0
- aws_cdk/aws_iotsitewise/__init__.py +90 -1
- aws_cdk/aws_iotwireless/__init__.py +205 -0
- aws_cdk/aws_lambda/__init__.py +129 -16
- aws_cdk/aws_lex/__init__.py +15 -1
- aws_cdk/aws_logs/__init__.py +1 -1
- aws_cdk/aws_mediaconnect/__init__.py +111 -0
- aws_cdk/aws_medialive/__init__.py +7988 -3262
- aws_cdk/aws_msk/__init__.py +287 -479
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_pcaconnectorscep/__init__.py +69 -30
- aws_cdk/aws_pipes/__init__.py +49 -0
- aws_cdk/aws_qbusiness/__init__.py +11 -14
- aws_cdk/aws_quicksight/__init__.py +638 -99
- aws_cdk/aws_rds/__init__.py +38 -27
- aws_cdk/aws_s3/__init__.py +215 -33
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_sagemaker/__init__.py +872 -58
- aws_cdk/aws_secretsmanager/__init__.py +22 -8
- aws_cdk/aws_securityhub/__init__.py +261 -19
- aws_cdk/aws_securitylake/__init__.py +327 -7
- aws_cdk/aws_servicediscovery/__init__.py +5 -5
- aws_cdk/aws_sns/__init__.py +0 -8
- aws_cdk/aws_ssm/__init__.py +20 -12
- aws_cdk/aws_stepfunctions_tasks/__init__.py +36 -0
- aws_cdk/cx_api/__init__.py +19 -0
- {aws_cdk_lib-2.158.0.dist-info → aws_cdk_lib-2.159.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.158.0.dist-info → aws_cdk_lib-2.159.1.dist-info}/RECORD +62 -62
- {aws_cdk_lib-2.158.0.dist-info → aws_cdk_lib-2.159.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.158.0.dist-info → aws_cdk_lib-2.159.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.158.0.dist-info → aws_cdk_lib-2.159.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.158.0.dist-info → aws_cdk_lib-2.159.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -2329,12 +2329,15 @@ class CfnEnvironment(
|
|
|
2329
2329
|
|
|
2330
2330
|
cfn_environment = datazone.CfnEnvironment(self, "MyCfnEnvironment",
|
|
2331
2331
|
domain_identifier="domainIdentifier",
|
|
2332
|
-
environment_profile_identifier="environmentProfileIdentifier",
|
|
2333
2332
|
name="name",
|
|
2334
2333
|
project_identifier="projectIdentifier",
|
|
2335
2334
|
|
|
2336
2335
|
# the properties below are optional
|
|
2337
2336
|
description="description",
|
|
2337
|
+
environment_account_identifier="environmentAccountIdentifier",
|
|
2338
|
+
environment_account_region="environmentAccountRegion",
|
|
2339
|
+
environment_profile_identifier="environmentProfileIdentifier",
|
|
2340
|
+
environment_role_arn="environmentRoleArn",
|
|
2338
2341
|
glossary_terms=["glossaryTerms"],
|
|
2339
2342
|
user_parameters=[datazone.CfnEnvironment.EnvironmentParameterProperty(
|
|
2340
2343
|
name="name",
|
|
@@ -2349,10 +2352,13 @@ class CfnEnvironment(
|
|
|
2349
2352
|
id: builtins.str,
|
|
2350
2353
|
*,
|
|
2351
2354
|
domain_identifier: builtins.str,
|
|
2352
|
-
environment_profile_identifier: builtins.str,
|
|
2353
2355
|
name: builtins.str,
|
|
2354
2356
|
project_identifier: builtins.str,
|
|
2355
2357
|
description: typing.Optional[builtins.str] = None,
|
|
2358
|
+
environment_account_identifier: typing.Optional[builtins.str] = None,
|
|
2359
|
+
environment_account_region: typing.Optional[builtins.str] = None,
|
|
2360
|
+
environment_profile_identifier: typing.Optional[builtins.str] = None,
|
|
2361
|
+
environment_role_arn: typing.Optional[builtins.str] = None,
|
|
2356
2362
|
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2357
2363
|
user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironment.EnvironmentParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2358
2364
|
) -> None:
|
|
@@ -2360,10 +2366,13 @@ class CfnEnvironment(
|
|
|
2360
2366
|
:param scope: Scope in which this resource is defined.
|
|
2361
2367
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2362
2368
|
:param domain_identifier: The identifier of the Amazon DataZone domain in which the environment is created.
|
|
2363
|
-
:param environment_profile_identifier: The identifier of the environment profile that is used to create this Amazon DataZone environment.
|
|
2364
2369
|
:param name: The name of the Amazon DataZone environment.
|
|
2365
2370
|
:param project_identifier: The identifier of the Amazon DataZone project in which this environment is created.
|
|
2366
2371
|
:param description: The description of the environment.
|
|
2372
|
+
:param environment_account_identifier: The identifier of the AWS account in which an environment exists.
|
|
2373
|
+
:param environment_account_region: The AWS Region in which an environment exists.
|
|
2374
|
+
:param environment_profile_identifier: The identifier of the environment profile that is used to create this Amazon DataZone environment.
|
|
2375
|
+
:param environment_role_arn: The ARN of the environment role.
|
|
2367
2376
|
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone environment.
|
|
2368
2377
|
:param user_parameters: The user parameters of this Amazon DataZone environment.
|
|
2369
2378
|
'''
|
|
@@ -2373,10 +2382,13 @@ class CfnEnvironment(
|
|
|
2373
2382
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
2374
2383
|
props = CfnEnvironmentProps(
|
|
2375
2384
|
domain_identifier=domain_identifier,
|
|
2376
|
-
environment_profile_identifier=environment_profile_identifier,
|
|
2377
2385
|
name=name,
|
|
2378
2386
|
project_identifier=project_identifier,
|
|
2379
2387
|
description=description,
|
|
2388
|
+
environment_account_identifier=environment_account_identifier,
|
|
2389
|
+
environment_account_region=environment_account_region,
|
|
2390
|
+
environment_profile_identifier=environment_profile_identifier,
|
|
2391
|
+
environment_role_arn=environment_role_arn,
|
|
2380
2392
|
glossary_terms=glossary_terms,
|
|
2381
2393
|
user_parameters=user_parameters,
|
|
2382
2394
|
)
|
|
@@ -2539,19 +2551,6 @@ class CfnEnvironment(
|
|
|
2539
2551
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2540
2552
|
jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2541
2553
|
|
|
2542
|
-
@builtins.property
|
|
2543
|
-
@jsii.member(jsii_name="environmentProfileIdentifier")
|
|
2544
|
-
def environment_profile_identifier(self) -> builtins.str:
|
|
2545
|
-
'''The identifier of the environment profile that is used to create this Amazon DataZone environment.'''
|
|
2546
|
-
return typing.cast(builtins.str, jsii.get(self, "environmentProfileIdentifier"))
|
|
2547
|
-
|
|
2548
|
-
@environment_profile_identifier.setter
|
|
2549
|
-
def environment_profile_identifier(self, value: builtins.str) -> None:
|
|
2550
|
-
if __debug__:
|
|
2551
|
-
type_hints = typing.get_type_hints(_typecheckingstub__123d0e6b3ed252019ec79f09a380206e446d8155ba73fc8e7518fbd3dbac8c2c)
|
|
2552
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2553
|
-
jsii.set(self, "environmentProfileIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2554
|
-
|
|
2555
2554
|
@builtins.property
|
|
2556
2555
|
@jsii.member(jsii_name="name")
|
|
2557
2556
|
def name(self) -> builtins.str:
|
|
@@ -2591,6 +2590,64 @@ class CfnEnvironment(
|
|
|
2591
2590
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2592
2591
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
2593
2592
|
|
|
2593
|
+
@builtins.property
|
|
2594
|
+
@jsii.member(jsii_name="environmentAccountIdentifier")
|
|
2595
|
+
def environment_account_identifier(self) -> typing.Optional[builtins.str]:
|
|
2596
|
+
'''The identifier of the AWS account in which an environment exists.'''
|
|
2597
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentAccountIdentifier"))
|
|
2598
|
+
|
|
2599
|
+
@environment_account_identifier.setter
|
|
2600
|
+
def environment_account_identifier(
|
|
2601
|
+
self,
|
|
2602
|
+
value: typing.Optional[builtins.str],
|
|
2603
|
+
) -> None:
|
|
2604
|
+
if __debug__:
|
|
2605
|
+
type_hints = typing.get_type_hints(_typecheckingstub__43f5514f896b52007434785f6106a995073e27bf964e663b740911090d537bf3)
|
|
2606
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2607
|
+
jsii.set(self, "environmentAccountIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2608
|
+
|
|
2609
|
+
@builtins.property
|
|
2610
|
+
@jsii.member(jsii_name="environmentAccountRegion")
|
|
2611
|
+
def environment_account_region(self) -> typing.Optional[builtins.str]:
|
|
2612
|
+
'''The AWS Region in which an environment exists.'''
|
|
2613
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentAccountRegion"))
|
|
2614
|
+
|
|
2615
|
+
@environment_account_region.setter
|
|
2616
|
+
def environment_account_region(self, value: typing.Optional[builtins.str]) -> None:
|
|
2617
|
+
if __debug__:
|
|
2618
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4c559df95e35a94ccf1ae460803faf8ff00fc715c3ad0b7cfafb1b92c2258564)
|
|
2619
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2620
|
+
jsii.set(self, "environmentAccountRegion", value) # pyright: ignore[reportArgumentType]
|
|
2621
|
+
|
|
2622
|
+
@builtins.property
|
|
2623
|
+
@jsii.member(jsii_name="environmentProfileIdentifier")
|
|
2624
|
+
def environment_profile_identifier(self) -> typing.Optional[builtins.str]:
|
|
2625
|
+
'''The identifier of the environment profile that is used to create this Amazon DataZone environment.'''
|
|
2626
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentProfileIdentifier"))
|
|
2627
|
+
|
|
2628
|
+
@environment_profile_identifier.setter
|
|
2629
|
+
def environment_profile_identifier(
|
|
2630
|
+
self,
|
|
2631
|
+
value: typing.Optional[builtins.str],
|
|
2632
|
+
) -> None:
|
|
2633
|
+
if __debug__:
|
|
2634
|
+
type_hints = typing.get_type_hints(_typecheckingstub__123d0e6b3ed252019ec79f09a380206e446d8155ba73fc8e7518fbd3dbac8c2c)
|
|
2635
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2636
|
+
jsii.set(self, "environmentProfileIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2637
|
+
|
|
2638
|
+
@builtins.property
|
|
2639
|
+
@jsii.member(jsii_name="environmentRoleArn")
|
|
2640
|
+
def environment_role_arn(self) -> typing.Optional[builtins.str]:
|
|
2641
|
+
'''The ARN of the environment role.'''
|
|
2642
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentRoleArn"))
|
|
2643
|
+
|
|
2644
|
+
@environment_role_arn.setter
|
|
2645
|
+
def environment_role_arn(self, value: typing.Optional[builtins.str]) -> None:
|
|
2646
|
+
if __debug__:
|
|
2647
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8b4153aa4bfc638db19251feaaf147e1376f5797ff9dd67109f2a7bf538d8a17)
|
|
2648
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2649
|
+
jsii.set(self, "environmentRoleArn", value) # pyright: ignore[reportArgumentType]
|
|
2650
|
+
|
|
2594
2651
|
@builtins.property
|
|
2595
2652
|
@jsii.member(jsii_name="glossaryTerms")
|
|
2596
2653
|
def glossary_terms(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -2693,6 +2750,419 @@ class CfnEnvironment(
|
|
|
2693
2750
|
)
|
|
2694
2751
|
|
|
2695
2752
|
|
|
2753
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
2754
|
+
class CfnEnvironmentActions(
|
|
2755
|
+
_CfnResource_9df397a6,
|
|
2756
|
+
metaclass=jsii.JSIIMeta,
|
|
2757
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnEnvironmentActions",
|
|
2758
|
+
):
|
|
2759
|
+
'''The details about the specified action configured for an environment.
|
|
2760
|
+
|
|
2761
|
+
For example, the details of the specified console links for an analytics tool that is available in this environment.
|
|
2762
|
+
|
|
2763
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html
|
|
2764
|
+
:cloudformationResource: AWS::DataZone::EnvironmentActions
|
|
2765
|
+
:exampleMetadata: fixture=_generated
|
|
2766
|
+
|
|
2767
|
+
Example::
|
|
2768
|
+
|
|
2769
|
+
# The code below shows an example of how to instantiate this type.
|
|
2770
|
+
# The values are placeholders you should change.
|
|
2771
|
+
from aws_cdk import aws_datazone as datazone
|
|
2772
|
+
|
|
2773
|
+
cfn_environment_actions = datazone.CfnEnvironmentActions(self, "MyCfnEnvironmentActions",
|
|
2774
|
+
name="name",
|
|
2775
|
+
|
|
2776
|
+
# the properties below are optional
|
|
2777
|
+
description="description",
|
|
2778
|
+
domain_identifier="domainIdentifier",
|
|
2779
|
+
environment_identifier="environmentIdentifier",
|
|
2780
|
+
identifier="identifier",
|
|
2781
|
+
parameters=datazone.CfnEnvironmentActions.AwsConsoleLinkParametersProperty(
|
|
2782
|
+
uri="uri"
|
|
2783
|
+
)
|
|
2784
|
+
)
|
|
2785
|
+
'''
|
|
2786
|
+
|
|
2787
|
+
def __init__(
|
|
2788
|
+
self,
|
|
2789
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
2790
|
+
id: builtins.str,
|
|
2791
|
+
*,
|
|
2792
|
+
name: builtins.str,
|
|
2793
|
+
description: typing.Optional[builtins.str] = None,
|
|
2794
|
+
domain_identifier: typing.Optional[builtins.str] = None,
|
|
2795
|
+
environment_identifier: typing.Optional[builtins.str] = None,
|
|
2796
|
+
identifier: typing.Optional[builtins.str] = None,
|
|
2797
|
+
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironmentActions.AwsConsoleLinkParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2798
|
+
) -> None:
|
|
2799
|
+
'''
|
|
2800
|
+
:param scope: Scope in which this resource is defined.
|
|
2801
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
2802
|
+
:param name: The name of the environment action.
|
|
2803
|
+
:param description: The description of the Amazon DataZone environment action.
|
|
2804
|
+
:param domain_identifier: The Amazon DataZone domain ID of the environment action.
|
|
2805
|
+
:param environment_identifier: The environment ID of the environment action.
|
|
2806
|
+
:param identifier: The ID of the environment action.
|
|
2807
|
+
:param parameters: The parameters of the console link specified as part of the environment action.
|
|
2808
|
+
'''
|
|
2809
|
+
if __debug__:
|
|
2810
|
+
type_hints = typing.get_type_hints(_typecheckingstub__23d8a73d028f6e855c2cc806cf34d881ee774001b5faf55329f1186898cd5d1c)
|
|
2811
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
2812
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
2813
|
+
props = CfnEnvironmentActionsProps(
|
|
2814
|
+
name=name,
|
|
2815
|
+
description=description,
|
|
2816
|
+
domain_identifier=domain_identifier,
|
|
2817
|
+
environment_identifier=environment_identifier,
|
|
2818
|
+
identifier=identifier,
|
|
2819
|
+
parameters=parameters,
|
|
2820
|
+
)
|
|
2821
|
+
|
|
2822
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
2823
|
+
|
|
2824
|
+
@jsii.member(jsii_name="inspect")
|
|
2825
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
2826
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
2827
|
+
|
|
2828
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
2829
|
+
'''
|
|
2830
|
+
if __debug__:
|
|
2831
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5619cfe3b3ca5963d029c87191973ca35ac3bb01102c8e807502ada262fedcc7)
|
|
2832
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
2833
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
2834
|
+
|
|
2835
|
+
@jsii.member(jsii_name="renderProperties")
|
|
2836
|
+
def _render_properties(
|
|
2837
|
+
self,
|
|
2838
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
2839
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
2840
|
+
'''
|
|
2841
|
+
:param props: -
|
|
2842
|
+
'''
|
|
2843
|
+
if __debug__:
|
|
2844
|
+
type_hints = typing.get_type_hints(_typecheckingstub__be72805e85c16a3d6d6a9862f3a07226b330cf4b3b110b5775de9db3c6d64dd2)
|
|
2845
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
2846
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
2847
|
+
|
|
2848
|
+
@jsii.python.classproperty
|
|
2849
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
2850
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
2851
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
2852
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
2853
|
+
|
|
2854
|
+
@builtins.property
|
|
2855
|
+
@jsii.member(jsii_name="attrDomainId")
|
|
2856
|
+
def attr_domain_id(self) -> builtins.str:
|
|
2857
|
+
'''The Amazon DataZone domain ID of the environment action.
|
|
2858
|
+
|
|
2859
|
+
:cloudformationAttribute: DomainId
|
|
2860
|
+
'''
|
|
2861
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
|
|
2862
|
+
|
|
2863
|
+
@builtins.property
|
|
2864
|
+
@jsii.member(jsii_name="attrEnvironmentId")
|
|
2865
|
+
def attr_environment_id(self) -> builtins.str:
|
|
2866
|
+
'''The environment ID of the environment action.
|
|
2867
|
+
|
|
2868
|
+
:cloudformationAttribute: EnvironmentId
|
|
2869
|
+
'''
|
|
2870
|
+
return typing.cast(builtins.str, jsii.get(self, "attrEnvironmentId"))
|
|
2871
|
+
|
|
2872
|
+
@builtins.property
|
|
2873
|
+
@jsii.member(jsii_name="attrId")
|
|
2874
|
+
def attr_id(self) -> builtins.str:
|
|
2875
|
+
'''The ID of the environment action.
|
|
2876
|
+
|
|
2877
|
+
:cloudformationAttribute: Id
|
|
2878
|
+
'''
|
|
2879
|
+
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
2880
|
+
|
|
2881
|
+
@builtins.property
|
|
2882
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
2883
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
2884
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
2885
|
+
|
|
2886
|
+
@builtins.property
|
|
2887
|
+
@jsii.member(jsii_name="name")
|
|
2888
|
+
def name(self) -> builtins.str:
|
|
2889
|
+
'''The name of the environment action.'''
|
|
2890
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
2891
|
+
|
|
2892
|
+
@name.setter
|
|
2893
|
+
def name(self, value: builtins.str) -> None:
|
|
2894
|
+
if __debug__:
|
|
2895
|
+
type_hints = typing.get_type_hints(_typecheckingstub__af36c191170daaf1b24eec04f527e30281e32ee3f3f75aaacbd67e64aca1b10b)
|
|
2896
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2897
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
2898
|
+
|
|
2899
|
+
@builtins.property
|
|
2900
|
+
@jsii.member(jsii_name="description")
|
|
2901
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
2902
|
+
'''The description of the Amazon DataZone environment action.'''
|
|
2903
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
2904
|
+
|
|
2905
|
+
@description.setter
|
|
2906
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
2907
|
+
if __debug__:
|
|
2908
|
+
type_hints = typing.get_type_hints(_typecheckingstub__55c22815170a2513147f4e74885cc8ca51917b6ec8c0644bc9c6d05b0fa2f41d)
|
|
2909
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2910
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
2911
|
+
|
|
2912
|
+
@builtins.property
|
|
2913
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
2914
|
+
def domain_identifier(self) -> typing.Optional[builtins.str]:
|
|
2915
|
+
'''The Amazon DataZone domain ID of the environment action.'''
|
|
2916
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "domainIdentifier"))
|
|
2917
|
+
|
|
2918
|
+
@domain_identifier.setter
|
|
2919
|
+
def domain_identifier(self, value: typing.Optional[builtins.str]) -> None:
|
|
2920
|
+
if __debug__:
|
|
2921
|
+
type_hints = typing.get_type_hints(_typecheckingstub__aa29021d0052df07430696eb45141a3ff12c83aa11f3fe5291138364d64bfe49)
|
|
2922
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2923
|
+
jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2924
|
+
|
|
2925
|
+
@builtins.property
|
|
2926
|
+
@jsii.member(jsii_name="environmentIdentifier")
|
|
2927
|
+
def environment_identifier(self) -> typing.Optional[builtins.str]:
|
|
2928
|
+
'''The environment ID of the environment action.'''
|
|
2929
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentIdentifier"))
|
|
2930
|
+
|
|
2931
|
+
@environment_identifier.setter
|
|
2932
|
+
def environment_identifier(self, value: typing.Optional[builtins.str]) -> None:
|
|
2933
|
+
if __debug__:
|
|
2934
|
+
type_hints = typing.get_type_hints(_typecheckingstub__224d8bbf6ba3a5a13d6893687689bb34a69380029d8d4fe281607965ccb59065)
|
|
2935
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2936
|
+
jsii.set(self, "environmentIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2937
|
+
|
|
2938
|
+
@builtins.property
|
|
2939
|
+
@jsii.member(jsii_name="identifier")
|
|
2940
|
+
def identifier(self) -> typing.Optional[builtins.str]:
|
|
2941
|
+
'''The ID of the environment action.'''
|
|
2942
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "identifier"))
|
|
2943
|
+
|
|
2944
|
+
@identifier.setter
|
|
2945
|
+
def identifier(self, value: typing.Optional[builtins.str]) -> None:
|
|
2946
|
+
if __debug__:
|
|
2947
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4b0cf584a76af6d608e499b80f7ae532dcfdbe54a0d8d961ad67e4b52052f530)
|
|
2948
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2949
|
+
jsii.set(self, "identifier", value) # pyright: ignore[reportArgumentType]
|
|
2950
|
+
|
|
2951
|
+
@builtins.property
|
|
2952
|
+
@jsii.member(jsii_name="parameters")
|
|
2953
|
+
def parameters(
|
|
2954
|
+
self,
|
|
2955
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentActions.AwsConsoleLinkParametersProperty"]]:
|
|
2956
|
+
'''The parameters of the console link specified as part of the environment action.'''
|
|
2957
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentActions.AwsConsoleLinkParametersProperty"]], jsii.get(self, "parameters"))
|
|
2958
|
+
|
|
2959
|
+
@parameters.setter
|
|
2960
|
+
def parameters(
|
|
2961
|
+
self,
|
|
2962
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentActions.AwsConsoleLinkParametersProperty"]],
|
|
2963
|
+
) -> None:
|
|
2964
|
+
if __debug__:
|
|
2965
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9d7a1e83f2300dd2bce221749201b3aef3859d465ce9d2e72bb7161776120da2)
|
|
2966
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2967
|
+
jsii.set(self, "parameters", value) # pyright: ignore[reportArgumentType]
|
|
2968
|
+
|
|
2969
|
+
@jsii.data_type(
|
|
2970
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnEnvironmentActions.AwsConsoleLinkParametersProperty",
|
|
2971
|
+
jsii_struct_bases=[],
|
|
2972
|
+
name_mapping={"uri": "uri"},
|
|
2973
|
+
)
|
|
2974
|
+
class AwsConsoleLinkParametersProperty:
|
|
2975
|
+
def __init__(self, *, uri: typing.Optional[builtins.str] = None) -> None:
|
|
2976
|
+
'''The parameters of the console link specified as part of the environment action.
|
|
2977
|
+
|
|
2978
|
+
:param uri: The URI of the console link specified as part of the environment action.
|
|
2979
|
+
|
|
2980
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentactions-awsconsolelinkparameters.html
|
|
2981
|
+
:exampleMetadata: fixture=_generated
|
|
2982
|
+
|
|
2983
|
+
Example::
|
|
2984
|
+
|
|
2985
|
+
# The code below shows an example of how to instantiate this type.
|
|
2986
|
+
# The values are placeholders you should change.
|
|
2987
|
+
from aws_cdk import aws_datazone as datazone
|
|
2988
|
+
|
|
2989
|
+
aws_console_link_parameters_property = datazone.CfnEnvironmentActions.AwsConsoleLinkParametersProperty(
|
|
2990
|
+
uri="uri"
|
|
2991
|
+
)
|
|
2992
|
+
'''
|
|
2993
|
+
if __debug__:
|
|
2994
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a66aef49f4cbb5c05c7c82600d65a4b555f3e4321747102f3fc890d8498bac56)
|
|
2995
|
+
check_type(argname="argument uri", value=uri, expected_type=type_hints["uri"])
|
|
2996
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2997
|
+
if uri is not None:
|
|
2998
|
+
self._values["uri"] = uri
|
|
2999
|
+
|
|
3000
|
+
@builtins.property
|
|
3001
|
+
def uri(self) -> typing.Optional[builtins.str]:
|
|
3002
|
+
'''The URI of the console link specified as part of the environment action.
|
|
3003
|
+
|
|
3004
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentactions-awsconsolelinkparameters.html#cfn-datazone-environmentactions-awsconsolelinkparameters-uri
|
|
3005
|
+
'''
|
|
3006
|
+
result = self._values.get("uri")
|
|
3007
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3008
|
+
|
|
3009
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3010
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3011
|
+
|
|
3012
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3013
|
+
return not (rhs == self)
|
|
3014
|
+
|
|
3015
|
+
def __repr__(self) -> str:
|
|
3016
|
+
return "AwsConsoleLinkParametersProperty(%s)" % ", ".join(
|
|
3017
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3018
|
+
)
|
|
3019
|
+
|
|
3020
|
+
|
|
3021
|
+
@jsii.data_type(
|
|
3022
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnEnvironmentActionsProps",
|
|
3023
|
+
jsii_struct_bases=[],
|
|
3024
|
+
name_mapping={
|
|
3025
|
+
"name": "name",
|
|
3026
|
+
"description": "description",
|
|
3027
|
+
"domain_identifier": "domainIdentifier",
|
|
3028
|
+
"environment_identifier": "environmentIdentifier",
|
|
3029
|
+
"identifier": "identifier",
|
|
3030
|
+
"parameters": "parameters",
|
|
3031
|
+
},
|
|
3032
|
+
)
|
|
3033
|
+
class CfnEnvironmentActionsProps:
|
|
3034
|
+
def __init__(
|
|
3035
|
+
self,
|
|
3036
|
+
*,
|
|
3037
|
+
name: builtins.str,
|
|
3038
|
+
description: typing.Optional[builtins.str] = None,
|
|
3039
|
+
domain_identifier: typing.Optional[builtins.str] = None,
|
|
3040
|
+
environment_identifier: typing.Optional[builtins.str] = None,
|
|
3041
|
+
identifier: typing.Optional[builtins.str] = None,
|
|
3042
|
+
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentActions.AwsConsoleLinkParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3043
|
+
) -> None:
|
|
3044
|
+
'''Properties for defining a ``CfnEnvironmentActions``.
|
|
3045
|
+
|
|
3046
|
+
:param name: The name of the environment action.
|
|
3047
|
+
:param description: The description of the Amazon DataZone environment action.
|
|
3048
|
+
:param domain_identifier: The Amazon DataZone domain ID of the environment action.
|
|
3049
|
+
:param environment_identifier: The environment ID of the environment action.
|
|
3050
|
+
:param identifier: The ID of the environment action.
|
|
3051
|
+
:param parameters: The parameters of the console link specified as part of the environment action.
|
|
3052
|
+
|
|
3053
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html
|
|
3054
|
+
:exampleMetadata: fixture=_generated
|
|
3055
|
+
|
|
3056
|
+
Example::
|
|
3057
|
+
|
|
3058
|
+
# The code below shows an example of how to instantiate this type.
|
|
3059
|
+
# The values are placeholders you should change.
|
|
3060
|
+
from aws_cdk import aws_datazone as datazone
|
|
3061
|
+
|
|
3062
|
+
cfn_environment_actions_props = datazone.CfnEnvironmentActionsProps(
|
|
3063
|
+
name="name",
|
|
3064
|
+
|
|
3065
|
+
# the properties below are optional
|
|
3066
|
+
description="description",
|
|
3067
|
+
domain_identifier="domainIdentifier",
|
|
3068
|
+
environment_identifier="environmentIdentifier",
|
|
3069
|
+
identifier="identifier",
|
|
3070
|
+
parameters=datazone.CfnEnvironmentActions.AwsConsoleLinkParametersProperty(
|
|
3071
|
+
uri="uri"
|
|
3072
|
+
)
|
|
3073
|
+
)
|
|
3074
|
+
'''
|
|
3075
|
+
if __debug__:
|
|
3076
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3c38a51ef4e52ffbf8312da8137617dd0e35055ad7636f23de55e829eae23750)
|
|
3077
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
3078
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3079
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
3080
|
+
check_type(argname="argument environment_identifier", value=environment_identifier, expected_type=type_hints["environment_identifier"])
|
|
3081
|
+
check_type(argname="argument identifier", value=identifier, expected_type=type_hints["identifier"])
|
|
3082
|
+
check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
|
|
3083
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3084
|
+
"name": name,
|
|
3085
|
+
}
|
|
3086
|
+
if description is not None:
|
|
3087
|
+
self._values["description"] = description
|
|
3088
|
+
if domain_identifier is not None:
|
|
3089
|
+
self._values["domain_identifier"] = domain_identifier
|
|
3090
|
+
if environment_identifier is not None:
|
|
3091
|
+
self._values["environment_identifier"] = environment_identifier
|
|
3092
|
+
if identifier is not None:
|
|
3093
|
+
self._values["identifier"] = identifier
|
|
3094
|
+
if parameters is not None:
|
|
3095
|
+
self._values["parameters"] = parameters
|
|
3096
|
+
|
|
3097
|
+
@builtins.property
|
|
3098
|
+
def name(self) -> builtins.str:
|
|
3099
|
+
'''The name of the environment action.
|
|
3100
|
+
|
|
3101
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#cfn-datazone-environmentactions-name
|
|
3102
|
+
'''
|
|
3103
|
+
result = self._values.get("name")
|
|
3104
|
+
assert result is not None, "Required property 'name' is missing"
|
|
3105
|
+
return typing.cast(builtins.str, result)
|
|
3106
|
+
|
|
3107
|
+
@builtins.property
|
|
3108
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
3109
|
+
'''The description of the Amazon DataZone environment action.
|
|
3110
|
+
|
|
3111
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#cfn-datazone-environmentactions-description
|
|
3112
|
+
'''
|
|
3113
|
+
result = self._values.get("description")
|
|
3114
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3115
|
+
|
|
3116
|
+
@builtins.property
|
|
3117
|
+
def domain_identifier(self) -> typing.Optional[builtins.str]:
|
|
3118
|
+
'''The Amazon DataZone domain ID of the environment action.
|
|
3119
|
+
|
|
3120
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#cfn-datazone-environmentactions-domainidentifier
|
|
3121
|
+
'''
|
|
3122
|
+
result = self._values.get("domain_identifier")
|
|
3123
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3124
|
+
|
|
3125
|
+
@builtins.property
|
|
3126
|
+
def environment_identifier(self) -> typing.Optional[builtins.str]:
|
|
3127
|
+
'''The environment ID of the environment action.
|
|
3128
|
+
|
|
3129
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#cfn-datazone-environmentactions-environmentidentifier
|
|
3130
|
+
'''
|
|
3131
|
+
result = self._values.get("environment_identifier")
|
|
3132
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3133
|
+
|
|
3134
|
+
@builtins.property
|
|
3135
|
+
def identifier(self) -> typing.Optional[builtins.str]:
|
|
3136
|
+
'''The ID of the environment action.
|
|
3137
|
+
|
|
3138
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#cfn-datazone-environmentactions-identifier
|
|
3139
|
+
'''
|
|
3140
|
+
result = self._values.get("identifier")
|
|
3141
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3142
|
+
|
|
3143
|
+
@builtins.property
|
|
3144
|
+
def parameters(
|
|
3145
|
+
self,
|
|
3146
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnEnvironmentActions.AwsConsoleLinkParametersProperty]]:
|
|
3147
|
+
'''The parameters of the console link specified as part of the environment action.
|
|
3148
|
+
|
|
3149
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#cfn-datazone-environmentactions-parameters
|
|
3150
|
+
'''
|
|
3151
|
+
result = self._values.get("parameters")
|
|
3152
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnEnvironmentActions.AwsConsoleLinkParametersProperty]], result)
|
|
3153
|
+
|
|
3154
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3155
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3156
|
+
|
|
3157
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3158
|
+
return not (rhs == self)
|
|
3159
|
+
|
|
3160
|
+
def __repr__(self) -> str:
|
|
3161
|
+
return "CfnEnvironmentActionsProps(%s)" % ", ".join(
|
|
3162
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3163
|
+
)
|
|
3164
|
+
|
|
3165
|
+
|
|
2696
3166
|
@jsii.implements(_IInspectable_c2943556)
|
|
2697
3167
|
class CfnEnvironmentBlueprintConfiguration(
|
|
2698
3168
|
_CfnResource_9df397a6,
|
|
@@ -3685,10 +4155,13 @@ class CfnEnvironmentProfileProps:
|
|
|
3685
4155
|
jsii_struct_bases=[],
|
|
3686
4156
|
name_mapping={
|
|
3687
4157
|
"domain_identifier": "domainIdentifier",
|
|
3688
|
-
"environment_profile_identifier": "environmentProfileIdentifier",
|
|
3689
4158
|
"name": "name",
|
|
3690
4159
|
"project_identifier": "projectIdentifier",
|
|
3691
4160
|
"description": "description",
|
|
4161
|
+
"environment_account_identifier": "environmentAccountIdentifier",
|
|
4162
|
+
"environment_account_region": "environmentAccountRegion",
|
|
4163
|
+
"environment_profile_identifier": "environmentProfileIdentifier",
|
|
4164
|
+
"environment_role_arn": "environmentRoleArn",
|
|
3692
4165
|
"glossary_terms": "glossaryTerms",
|
|
3693
4166
|
"user_parameters": "userParameters",
|
|
3694
4167
|
},
|
|
@@ -3698,20 +4171,26 @@ class CfnEnvironmentProps:
|
|
|
3698
4171
|
self,
|
|
3699
4172
|
*,
|
|
3700
4173
|
domain_identifier: builtins.str,
|
|
3701
|
-
environment_profile_identifier: builtins.str,
|
|
3702
4174
|
name: builtins.str,
|
|
3703
4175
|
project_identifier: builtins.str,
|
|
3704
4176
|
description: typing.Optional[builtins.str] = None,
|
|
4177
|
+
environment_account_identifier: typing.Optional[builtins.str] = None,
|
|
4178
|
+
environment_account_region: typing.Optional[builtins.str] = None,
|
|
4179
|
+
environment_profile_identifier: typing.Optional[builtins.str] = None,
|
|
4180
|
+
environment_role_arn: typing.Optional[builtins.str] = None,
|
|
3705
4181
|
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3706
4182
|
user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironment.EnvironmentParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3707
4183
|
) -> None:
|
|
3708
4184
|
'''Properties for defining a ``CfnEnvironment``.
|
|
3709
4185
|
|
|
3710
4186
|
:param domain_identifier: The identifier of the Amazon DataZone domain in which the environment is created.
|
|
3711
|
-
:param environment_profile_identifier: The identifier of the environment profile that is used to create this Amazon DataZone environment.
|
|
3712
4187
|
:param name: The name of the Amazon DataZone environment.
|
|
3713
4188
|
:param project_identifier: The identifier of the Amazon DataZone project in which this environment is created.
|
|
3714
4189
|
:param description: The description of the environment.
|
|
4190
|
+
:param environment_account_identifier: The identifier of the AWS account in which an environment exists.
|
|
4191
|
+
:param environment_account_region: The AWS Region in which an environment exists.
|
|
4192
|
+
:param environment_profile_identifier: The identifier of the environment profile that is used to create this Amazon DataZone environment.
|
|
4193
|
+
:param environment_role_arn: The ARN of the environment role.
|
|
3715
4194
|
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone environment.
|
|
3716
4195
|
:param user_parameters: The user parameters of this Amazon DataZone environment.
|
|
3717
4196
|
|
|
@@ -3726,12 +4205,15 @@ class CfnEnvironmentProps:
|
|
|
3726
4205
|
|
|
3727
4206
|
cfn_environment_props = datazone.CfnEnvironmentProps(
|
|
3728
4207
|
domain_identifier="domainIdentifier",
|
|
3729
|
-
environment_profile_identifier="environmentProfileIdentifier",
|
|
3730
4208
|
name="name",
|
|
3731
4209
|
project_identifier="projectIdentifier",
|
|
3732
4210
|
|
|
3733
4211
|
# the properties below are optional
|
|
3734
4212
|
description="description",
|
|
4213
|
+
environment_account_identifier="environmentAccountIdentifier",
|
|
4214
|
+
environment_account_region="environmentAccountRegion",
|
|
4215
|
+
environment_profile_identifier="environmentProfileIdentifier",
|
|
4216
|
+
environment_role_arn="environmentRoleArn",
|
|
3735
4217
|
glossary_terms=["glossaryTerms"],
|
|
3736
4218
|
user_parameters=[datazone.CfnEnvironment.EnvironmentParameterProperty(
|
|
3737
4219
|
name="name",
|
|
@@ -3742,20 +4224,30 @@ class CfnEnvironmentProps:
|
|
|
3742
4224
|
if __debug__:
|
|
3743
4225
|
type_hints = typing.get_type_hints(_typecheckingstub__52cb17aae6cf0b0cbeef010a71f7f53573517f0a8e973b5881ae34c1691d672b)
|
|
3744
4226
|
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
3745
|
-
check_type(argname="argument environment_profile_identifier", value=environment_profile_identifier, expected_type=type_hints["environment_profile_identifier"])
|
|
3746
4227
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
3747
4228
|
check_type(argname="argument project_identifier", value=project_identifier, expected_type=type_hints["project_identifier"])
|
|
3748
4229
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
4230
|
+
check_type(argname="argument environment_account_identifier", value=environment_account_identifier, expected_type=type_hints["environment_account_identifier"])
|
|
4231
|
+
check_type(argname="argument environment_account_region", value=environment_account_region, expected_type=type_hints["environment_account_region"])
|
|
4232
|
+
check_type(argname="argument environment_profile_identifier", value=environment_profile_identifier, expected_type=type_hints["environment_profile_identifier"])
|
|
4233
|
+
check_type(argname="argument environment_role_arn", value=environment_role_arn, expected_type=type_hints["environment_role_arn"])
|
|
3749
4234
|
check_type(argname="argument glossary_terms", value=glossary_terms, expected_type=type_hints["glossary_terms"])
|
|
3750
4235
|
check_type(argname="argument user_parameters", value=user_parameters, expected_type=type_hints["user_parameters"])
|
|
3751
4236
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3752
4237
|
"domain_identifier": domain_identifier,
|
|
3753
|
-
"environment_profile_identifier": environment_profile_identifier,
|
|
3754
4238
|
"name": name,
|
|
3755
4239
|
"project_identifier": project_identifier,
|
|
3756
4240
|
}
|
|
3757
4241
|
if description is not None:
|
|
3758
4242
|
self._values["description"] = description
|
|
4243
|
+
if environment_account_identifier is not None:
|
|
4244
|
+
self._values["environment_account_identifier"] = environment_account_identifier
|
|
4245
|
+
if environment_account_region is not None:
|
|
4246
|
+
self._values["environment_account_region"] = environment_account_region
|
|
4247
|
+
if environment_profile_identifier is not None:
|
|
4248
|
+
self._values["environment_profile_identifier"] = environment_profile_identifier
|
|
4249
|
+
if environment_role_arn is not None:
|
|
4250
|
+
self._values["environment_role_arn"] = environment_role_arn
|
|
3759
4251
|
if glossary_terms is not None:
|
|
3760
4252
|
self._values["glossary_terms"] = glossary_terms
|
|
3761
4253
|
if user_parameters is not None:
|
|
@@ -3771,16 +4263,6 @@ class CfnEnvironmentProps:
|
|
|
3771
4263
|
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
3772
4264
|
return typing.cast(builtins.str, result)
|
|
3773
4265
|
|
|
3774
|
-
@builtins.property
|
|
3775
|
-
def environment_profile_identifier(self) -> builtins.str:
|
|
3776
|
-
'''The identifier of the environment profile that is used to create this Amazon DataZone environment.
|
|
3777
|
-
|
|
3778
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentprofileidentifier
|
|
3779
|
-
'''
|
|
3780
|
-
result = self._values.get("environment_profile_identifier")
|
|
3781
|
-
assert result is not None, "Required property 'environment_profile_identifier' is missing"
|
|
3782
|
-
return typing.cast(builtins.str, result)
|
|
3783
|
-
|
|
3784
4266
|
@builtins.property
|
|
3785
4267
|
def name(self) -> builtins.str:
|
|
3786
4268
|
'''The name of the Amazon DataZone environment.
|
|
@@ -3810,6 +4292,42 @@ class CfnEnvironmentProps:
|
|
|
3810
4292
|
result = self._values.get("description")
|
|
3811
4293
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3812
4294
|
|
|
4295
|
+
@builtins.property
|
|
4296
|
+
def environment_account_identifier(self) -> typing.Optional[builtins.str]:
|
|
4297
|
+
'''The identifier of the AWS account in which an environment exists.
|
|
4298
|
+
|
|
4299
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentaccountidentifier
|
|
4300
|
+
'''
|
|
4301
|
+
result = self._values.get("environment_account_identifier")
|
|
4302
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4303
|
+
|
|
4304
|
+
@builtins.property
|
|
4305
|
+
def environment_account_region(self) -> typing.Optional[builtins.str]:
|
|
4306
|
+
'''The AWS Region in which an environment exists.
|
|
4307
|
+
|
|
4308
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentaccountregion
|
|
4309
|
+
'''
|
|
4310
|
+
result = self._values.get("environment_account_region")
|
|
4311
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4312
|
+
|
|
4313
|
+
@builtins.property
|
|
4314
|
+
def environment_profile_identifier(self) -> typing.Optional[builtins.str]:
|
|
4315
|
+
'''The identifier of the environment profile that is used to create this Amazon DataZone environment.
|
|
4316
|
+
|
|
4317
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentprofileidentifier
|
|
4318
|
+
'''
|
|
4319
|
+
result = self._values.get("environment_profile_identifier")
|
|
4320
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4321
|
+
|
|
4322
|
+
@builtins.property
|
|
4323
|
+
def environment_role_arn(self) -> typing.Optional[builtins.str]:
|
|
4324
|
+
'''The ARN of the environment role.
|
|
4325
|
+
|
|
4326
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentrolearn
|
|
4327
|
+
'''
|
|
4328
|
+
result = self._values.get("environment_role_arn")
|
|
4329
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4330
|
+
|
|
3813
4331
|
@builtins.property
|
|
3814
4332
|
def glossary_terms(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
3815
4333
|
'''The glossary terms that can be used in this Amazon DataZone environment.
|
|
@@ -5828,6 +6346,8 @@ __all__ = [
|
|
|
5828
6346
|
"CfnDomain",
|
|
5829
6347
|
"CfnDomainProps",
|
|
5830
6348
|
"CfnEnvironment",
|
|
6349
|
+
"CfnEnvironmentActions",
|
|
6350
|
+
"CfnEnvironmentActionsProps",
|
|
5831
6351
|
"CfnEnvironmentBlueprintConfiguration",
|
|
5832
6352
|
"CfnEnvironmentBlueprintConfigurationProps",
|
|
5833
6353
|
"CfnEnvironmentProfile",
|
|
@@ -6154,10 +6674,13 @@ def _typecheckingstub__b9dbab782927b08354bbafa4881abe3f775c9141395be836e6450777f
|
|
|
6154
6674
|
id: builtins.str,
|
|
6155
6675
|
*,
|
|
6156
6676
|
domain_identifier: builtins.str,
|
|
6157
|
-
environment_profile_identifier: builtins.str,
|
|
6158
6677
|
name: builtins.str,
|
|
6159
6678
|
project_identifier: builtins.str,
|
|
6160
6679
|
description: typing.Optional[builtins.str] = None,
|
|
6680
|
+
environment_account_identifier: typing.Optional[builtins.str] = None,
|
|
6681
|
+
environment_account_region: typing.Optional[builtins.str] = None,
|
|
6682
|
+
environment_profile_identifier: typing.Optional[builtins.str] = None,
|
|
6683
|
+
environment_role_arn: typing.Optional[builtins.str] = None,
|
|
6161
6684
|
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6162
6685
|
user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironment.EnvironmentParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6163
6686
|
) -> None:
|
|
@@ -6182,25 +6705,43 @@ def _typecheckingstub__b36a4aa57667467b8bda95ca761a942a6f67e34e8549cd2dccc7a61d8
|
|
|
6182
6705
|
"""Type checking stubs"""
|
|
6183
6706
|
pass
|
|
6184
6707
|
|
|
6185
|
-
def
|
|
6708
|
+
def _typecheckingstub__e4376356ce7178baaec6de65e59f567c3496e08605a27833ed8e83bfe0ff4be4(
|
|
6186
6709
|
value: builtins.str,
|
|
6187
6710
|
) -> None:
|
|
6188
6711
|
"""Type checking stubs"""
|
|
6189
6712
|
pass
|
|
6190
6713
|
|
|
6191
|
-
def
|
|
6714
|
+
def _typecheckingstub__baefbe7e97d72065b3b2c6be4e97a54bf9298376bb60dcac92eb7191397e306b(
|
|
6192
6715
|
value: builtins.str,
|
|
6193
6716
|
) -> None:
|
|
6194
6717
|
"""Type checking stubs"""
|
|
6195
6718
|
pass
|
|
6196
6719
|
|
|
6197
|
-
def
|
|
6198
|
-
value: builtins.str,
|
|
6720
|
+
def _typecheckingstub__00e90ff4028654f7f45c97804aa061515407ac2ce2e55a21a1a4e4ff76fefd60(
|
|
6721
|
+
value: typing.Optional[builtins.str],
|
|
6199
6722
|
) -> None:
|
|
6200
6723
|
"""Type checking stubs"""
|
|
6201
6724
|
pass
|
|
6202
6725
|
|
|
6203
|
-
def
|
|
6726
|
+
def _typecheckingstub__43f5514f896b52007434785f6106a995073e27bf964e663b740911090d537bf3(
|
|
6727
|
+
value: typing.Optional[builtins.str],
|
|
6728
|
+
) -> None:
|
|
6729
|
+
"""Type checking stubs"""
|
|
6730
|
+
pass
|
|
6731
|
+
|
|
6732
|
+
def _typecheckingstub__4c559df95e35a94ccf1ae460803faf8ff00fc715c3ad0b7cfafb1b92c2258564(
|
|
6733
|
+
value: typing.Optional[builtins.str],
|
|
6734
|
+
) -> None:
|
|
6735
|
+
"""Type checking stubs"""
|
|
6736
|
+
pass
|
|
6737
|
+
|
|
6738
|
+
def _typecheckingstub__123d0e6b3ed252019ec79f09a380206e446d8155ba73fc8e7518fbd3dbac8c2c(
|
|
6739
|
+
value: typing.Optional[builtins.str],
|
|
6740
|
+
) -> None:
|
|
6741
|
+
"""Type checking stubs"""
|
|
6742
|
+
pass
|
|
6743
|
+
|
|
6744
|
+
def _typecheckingstub__8b4153aa4bfc638db19251feaaf147e1376f5797ff9dd67109f2a7bf538d8a17(
|
|
6204
6745
|
value: typing.Optional[builtins.str],
|
|
6205
6746
|
) -> None:
|
|
6206
6747
|
"""Type checking stubs"""
|
|
@@ -6226,6 +6767,87 @@ def _typecheckingstub__d32a764f93482ecbfe18350874389b17ae96f3d5f78686bae5b55a2dc
|
|
|
6226
6767
|
"""Type checking stubs"""
|
|
6227
6768
|
pass
|
|
6228
6769
|
|
|
6770
|
+
def _typecheckingstub__23d8a73d028f6e855c2cc806cf34d881ee774001b5faf55329f1186898cd5d1c(
|
|
6771
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6772
|
+
id: builtins.str,
|
|
6773
|
+
*,
|
|
6774
|
+
name: builtins.str,
|
|
6775
|
+
description: typing.Optional[builtins.str] = None,
|
|
6776
|
+
domain_identifier: typing.Optional[builtins.str] = None,
|
|
6777
|
+
environment_identifier: typing.Optional[builtins.str] = None,
|
|
6778
|
+
identifier: typing.Optional[builtins.str] = None,
|
|
6779
|
+
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentActions.AwsConsoleLinkParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6780
|
+
) -> None:
|
|
6781
|
+
"""Type checking stubs"""
|
|
6782
|
+
pass
|
|
6783
|
+
|
|
6784
|
+
def _typecheckingstub__5619cfe3b3ca5963d029c87191973ca35ac3bb01102c8e807502ada262fedcc7(
|
|
6785
|
+
inspector: _TreeInspector_488e0dd5,
|
|
6786
|
+
) -> None:
|
|
6787
|
+
"""Type checking stubs"""
|
|
6788
|
+
pass
|
|
6789
|
+
|
|
6790
|
+
def _typecheckingstub__be72805e85c16a3d6d6a9862f3a07226b330cf4b3b110b5775de9db3c6d64dd2(
|
|
6791
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
6792
|
+
) -> None:
|
|
6793
|
+
"""Type checking stubs"""
|
|
6794
|
+
pass
|
|
6795
|
+
|
|
6796
|
+
def _typecheckingstub__af36c191170daaf1b24eec04f527e30281e32ee3f3f75aaacbd67e64aca1b10b(
|
|
6797
|
+
value: builtins.str,
|
|
6798
|
+
) -> None:
|
|
6799
|
+
"""Type checking stubs"""
|
|
6800
|
+
pass
|
|
6801
|
+
|
|
6802
|
+
def _typecheckingstub__55c22815170a2513147f4e74885cc8ca51917b6ec8c0644bc9c6d05b0fa2f41d(
|
|
6803
|
+
value: typing.Optional[builtins.str],
|
|
6804
|
+
) -> None:
|
|
6805
|
+
"""Type checking stubs"""
|
|
6806
|
+
pass
|
|
6807
|
+
|
|
6808
|
+
def _typecheckingstub__aa29021d0052df07430696eb45141a3ff12c83aa11f3fe5291138364d64bfe49(
|
|
6809
|
+
value: typing.Optional[builtins.str],
|
|
6810
|
+
) -> None:
|
|
6811
|
+
"""Type checking stubs"""
|
|
6812
|
+
pass
|
|
6813
|
+
|
|
6814
|
+
def _typecheckingstub__224d8bbf6ba3a5a13d6893687689bb34a69380029d8d4fe281607965ccb59065(
|
|
6815
|
+
value: typing.Optional[builtins.str],
|
|
6816
|
+
) -> None:
|
|
6817
|
+
"""Type checking stubs"""
|
|
6818
|
+
pass
|
|
6819
|
+
|
|
6820
|
+
def _typecheckingstub__4b0cf584a76af6d608e499b80f7ae532dcfdbe54a0d8d961ad67e4b52052f530(
|
|
6821
|
+
value: typing.Optional[builtins.str],
|
|
6822
|
+
) -> None:
|
|
6823
|
+
"""Type checking stubs"""
|
|
6824
|
+
pass
|
|
6825
|
+
|
|
6826
|
+
def _typecheckingstub__9d7a1e83f2300dd2bce221749201b3aef3859d465ce9d2e72bb7161776120da2(
|
|
6827
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnEnvironmentActions.AwsConsoleLinkParametersProperty]],
|
|
6828
|
+
) -> None:
|
|
6829
|
+
"""Type checking stubs"""
|
|
6830
|
+
pass
|
|
6831
|
+
|
|
6832
|
+
def _typecheckingstub__a66aef49f4cbb5c05c7c82600d65a4b555f3e4321747102f3fc890d8498bac56(
|
|
6833
|
+
*,
|
|
6834
|
+
uri: typing.Optional[builtins.str] = None,
|
|
6835
|
+
) -> None:
|
|
6836
|
+
"""Type checking stubs"""
|
|
6837
|
+
pass
|
|
6838
|
+
|
|
6839
|
+
def _typecheckingstub__3c38a51ef4e52ffbf8312da8137617dd0e35055ad7636f23de55e829eae23750(
|
|
6840
|
+
*,
|
|
6841
|
+
name: builtins.str,
|
|
6842
|
+
description: typing.Optional[builtins.str] = None,
|
|
6843
|
+
domain_identifier: typing.Optional[builtins.str] = None,
|
|
6844
|
+
environment_identifier: typing.Optional[builtins.str] = None,
|
|
6845
|
+
identifier: typing.Optional[builtins.str] = None,
|
|
6846
|
+
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentActions.AwsConsoleLinkParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6847
|
+
) -> None:
|
|
6848
|
+
"""Type checking stubs"""
|
|
6849
|
+
pass
|
|
6850
|
+
|
|
6229
6851
|
def _typecheckingstub__48d8677ae22ff2da132402ace39f998c6b914f7464ce38abe9373fdbc550c445(
|
|
6230
6852
|
scope: _constructs_77d1e7e8.Construct,
|
|
6231
6853
|
id: builtins.str,
|
|
@@ -6409,10 +7031,13 @@ def _typecheckingstub__24d37d0c5f53a77c5e5be4ffa574af7dd3da85d8b5eb31bff30362d6c
|
|
|
6409
7031
|
def _typecheckingstub__52cb17aae6cf0b0cbeef010a71f7f53573517f0a8e973b5881ae34c1691d672b(
|
|
6410
7032
|
*,
|
|
6411
7033
|
domain_identifier: builtins.str,
|
|
6412
|
-
environment_profile_identifier: builtins.str,
|
|
6413
7034
|
name: builtins.str,
|
|
6414
7035
|
project_identifier: builtins.str,
|
|
6415
7036
|
description: typing.Optional[builtins.str] = None,
|
|
7037
|
+
environment_account_identifier: typing.Optional[builtins.str] = None,
|
|
7038
|
+
environment_account_region: typing.Optional[builtins.str] = None,
|
|
7039
|
+
environment_profile_identifier: typing.Optional[builtins.str] = None,
|
|
7040
|
+
environment_role_arn: typing.Optional[builtins.str] = None,
|
|
6416
7041
|
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6417
7042
|
user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironment.EnvironmentParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6418
7043
|
) -> None:
|