aws-cdk-lib 2.195.0__py3-none-any.whl → 2.196.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 +433 -20
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.195.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amazonmq/__init__.py +2 -2
- aws_cdk/aws_apigateway/__init__.py +148 -69
- aws_cdk/aws_apigatewayv2/__init__.py +155 -24
- aws_cdk/aws_appconfig/__init__.py +24 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
- aws_cdk/aws_appmesh/__init__.py +42 -0
- aws_cdk/aws_appsync/__init__.py +92 -20
- aws_cdk/aws_autoscaling/__init__.py +24 -0
- aws_cdk/aws_backup/__init__.py +53 -14
- aws_cdk/aws_batch/__init__.py +72 -0
- aws_cdk/aws_bedrock/__init__.py +620 -14
- aws_cdk/aws_budgets/__init__.py +569 -0
- aws_cdk/aws_certificatemanager/__init__.py +21 -0
- aws_cdk/aws_chatbot/__init__.py +6 -0
- aws_cdk/aws_cloudfront/__init__.py +87 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
- aws_cdk/aws_cloudtrail/__init__.py +6 -0
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_codecommit/__init__.py +6 -0
- aws_cdk/aws_codedeploy/__init__.py +63 -0
- aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
- aws_cdk/aws_codepipeline/__init__.py +6 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_codestarnotifications/__init__.py +6 -0
- aws_cdk/aws_cognito/__init__.py +91 -12
- aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
- aws_cdk/aws_config/__init__.py +36 -0
- aws_cdk/aws_datazone/__init__.py +557 -14
- aws_cdk/aws_docdb/__init__.py +27 -3
- aws_cdk/aws_dsql/__init__.py +21 -13
- aws_cdk/aws_dynamodb/__init__.py +20 -8
- aws_cdk/aws_ec2/__init__.py +282 -21
- aws_cdk/aws_ecr/__init__.py +6 -0
- aws_cdk/aws_ecr_assets/__init__.py +6 -0
- aws_cdk/aws_ecs/__init__.py +112 -19
- aws_cdk/aws_ecs_patterns/__init__.py +58 -0
- aws_cdk/aws_efs/__init__.py +12 -0
- aws_cdk/aws_eks/__init__.py +42 -0
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
- aws_cdk/aws_elasticsearch/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +36 -0
- aws_cdk/aws_events_targets/__init__.py +10 -10
- aws_cdk/aws_fsx/__init__.py +6 -0
- aws_cdk/aws_globalaccelerator/__init__.py +18 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_imagebuilder/__init__.py +21 -16
- aws_cdk/aws_inspector/__init__.py +6 -0
- aws_cdk/aws_kinesis/__init__.py +19 -1
- aws_cdk/aws_kinesisanalytics/__init__.py +9 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +9 -11
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_kms/__init__.py +16 -4
- aws_cdk/aws_lambda/__init__.py +76 -6
- aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
- aws_cdk/aws_logs/__init__.py +155 -12
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +22 -22
- aws_cdk/aws_rds/__init__.py +306 -30
- aws_cdk/aws_redshiftserverless/__init__.py +7 -7
- aws_cdk/aws_route53/__init__.py +723 -25
- aws_cdk/aws_s3/__init__.py +37 -10
- aws_cdk/aws_s3_deployment/__init__.py +6 -0
- aws_cdk/aws_sagemaker/__init__.py +199 -4
- aws_cdk/aws_scheduler/__init__.py +12 -0
- aws_cdk/aws_secretsmanager/__init__.py +24 -0
- aws_cdk/aws_servicecatalog/__init__.py +24 -0
- aws_cdk/aws_servicediscovery/__init__.py +48 -0
- aws_cdk/aws_ses/__init__.py +133 -33
- aws_cdk/aws_signer/__init__.py +6 -0
- aws_cdk/aws_sns/__init__.py +18 -0
- aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
- aws_cdk/aws_sqs/__init__.py +12 -0
- aws_cdk/aws_ssm/__init__.py +12 -0
- aws_cdk/aws_ssmcontacts/__init__.py +53 -2
- aws_cdk/aws_ssmguiconnect/__init__.py +7 -7
- aws_cdk/aws_stepfunctions/__init__.py +153 -7
- aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
- aws_cdk/aws_synthetics/__init__.py +32 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
- aws_cdk/aws_vpclattice/__init__.py +3 -1
- aws_cdk/aws_wisdom/__init__.py +6 -4
- aws_cdk/custom_resources/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +33 -0
- aws_cdk/lambda_layer_awscli/__init__.py +6 -0
- aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
- aws_cdk/pipelines/__init__.py +10 -10
- aws_cdk/triggers/__init__.py +6 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +83 -5
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +100 -100
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -5264,7 +5264,7 @@ class CfnDomain(
|
|
|
5264
5264
|
:param description: The description of the Amazon DataZone domain.
|
|
5265
5265
|
:param domain_version: The domain version.
|
|
5266
5266
|
:param kms_key_identifier: The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
|
|
5267
|
-
:param service_role: The service role of the domain
|
|
5267
|
+
:param service_role: The service role of the domain.
|
|
5268
5268
|
:param single_sign_on: The single sign-on details in Amazon DataZone.
|
|
5269
5269
|
:param tags: The tags specified for the Amazon DataZone domain.
|
|
5270
5270
|
'''
|
|
@@ -5372,7 +5372,7 @@ class CfnDomain(
|
|
|
5372
5372
|
@builtins.property
|
|
5373
5373
|
@jsii.member(jsii_name="attrRootDomainUnitId")
|
|
5374
5374
|
def attr_root_domain_unit_id(self) -> builtins.str:
|
|
5375
|
-
'''The ID of the root domain
|
|
5375
|
+
'''The ID of the root domain unit.
|
|
5376
5376
|
|
|
5377
5377
|
:cloudformationAttribute: RootDomainUnitId
|
|
5378
5378
|
'''
|
|
@@ -5466,7 +5466,7 @@ class CfnDomain(
|
|
|
5466
5466
|
@builtins.property
|
|
5467
5467
|
@jsii.member(jsii_name="serviceRole")
|
|
5468
5468
|
def service_role(self) -> typing.Optional[builtins.str]:
|
|
5469
|
-
'''The service role of the domain
|
|
5469
|
+
'''The service role of the domain.'''
|
|
5470
5470
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serviceRole"))
|
|
5471
5471
|
|
|
5472
5472
|
@service_role.setter
|
|
@@ -5526,7 +5526,7 @@ class CfnDomain(
|
|
|
5526
5526
|
) -> None:
|
|
5527
5527
|
'''The single sign-on details in Amazon DataZone.
|
|
5528
5528
|
|
|
5529
|
-
:param idc_instance_arn: The ARN of the
|
|
5529
|
+
:param idc_instance_arn: The ARN of the IDC instance.
|
|
5530
5530
|
:param type: The type of single sign-on in Amazon DataZone.
|
|
5531
5531
|
:param user_assignment: The single sign-on user assignment in Amazon DataZone.
|
|
5532
5532
|
|
|
@@ -5560,7 +5560,7 @@ class CfnDomain(
|
|
|
5560
5560
|
|
|
5561
5561
|
@builtins.property
|
|
5562
5562
|
def idc_instance_arn(self) -> typing.Optional[builtins.str]:
|
|
5563
|
-
'''The ARN of the
|
|
5563
|
+
'''The ARN of the IDC instance.
|
|
5564
5564
|
|
|
5565
5565
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-singlesignon.html#cfn-datazone-domain-singlesignon-idcinstancearn
|
|
5566
5566
|
'''
|
|
@@ -5631,7 +5631,7 @@ class CfnDomainProps:
|
|
|
5631
5631
|
:param description: The description of the Amazon DataZone domain.
|
|
5632
5632
|
:param domain_version: The domain version.
|
|
5633
5633
|
:param kms_key_identifier: The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
|
|
5634
|
-
:param service_role: The service role of the domain
|
|
5634
|
+
:param service_role: The service role of the domain.
|
|
5635
5635
|
:param single_sign_on: The single sign-on details in Amazon DataZone.
|
|
5636
5636
|
:param tags: The tags specified for the Amazon DataZone domain.
|
|
5637
5637
|
|
|
@@ -5742,7 +5742,7 @@ class CfnDomainProps:
|
|
|
5742
5742
|
|
|
5743
5743
|
@builtins.property
|
|
5744
5744
|
def service_role(self) -> typing.Optional[builtins.str]:
|
|
5745
|
-
'''The service role of the domain
|
|
5745
|
+
'''The service role of the domain.
|
|
5746
5746
|
|
|
5747
5747
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#cfn-datazone-domain-servicerole
|
|
5748
5748
|
'''
|
|
@@ -5787,7 +5787,7 @@ class CfnDomainUnit(
|
|
|
5787
5787
|
metaclass=jsii.JSIIMeta,
|
|
5788
5788
|
jsii_type="aws-cdk-lib.aws_datazone.CfnDomainUnit",
|
|
5789
5789
|
):
|
|
5790
|
-
'''
|
|
5790
|
+
'''The summary of the domain unit.
|
|
5791
5791
|
|
|
5792
5792
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html
|
|
5793
5793
|
:cloudformationResource: AWS::DataZone::DomainUnit
|
|
@@ -5822,7 +5822,7 @@ class CfnDomainUnit(
|
|
|
5822
5822
|
'''
|
|
5823
5823
|
:param scope: Scope in which this resource is defined.
|
|
5824
5824
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5825
|
-
:param domain_identifier: The ID of the domain where you want to
|
|
5825
|
+
:param domain_identifier: The ID of the domain where you want to crate a domain unit.
|
|
5826
5826
|
:param name: The name of the domain unit.
|
|
5827
5827
|
:param parent_domain_unit_identifier: The ID of the parent domain unit.
|
|
5828
5828
|
:param description: The description of the domain unit.
|
|
@@ -5873,7 +5873,7 @@ class CfnDomainUnit(
|
|
|
5873
5873
|
@builtins.property
|
|
5874
5874
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
5875
5875
|
def attr_created_at(self) -> builtins.str:
|
|
5876
|
-
'''The
|
|
5876
|
+
'''The time stamp at which the domain unit was created.
|
|
5877
5877
|
|
|
5878
5878
|
:cloudformationAttribute: CreatedAt
|
|
5879
5879
|
'''
|
|
@@ -5882,7 +5882,7 @@ class CfnDomainUnit(
|
|
|
5882
5882
|
@builtins.property
|
|
5883
5883
|
@jsii.member(jsii_name="attrDomainId")
|
|
5884
5884
|
def attr_domain_id(self) -> builtins.str:
|
|
5885
|
-
'''The ID of the domain
|
|
5885
|
+
'''The ID of the domain in which the domain unit lives.
|
|
5886
5886
|
|
|
5887
5887
|
:cloudformationAttribute: DomainId
|
|
5888
5888
|
'''
|
|
@@ -5932,7 +5932,7 @@ class CfnDomainUnit(
|
|
|
5932
5932
|
@builtins.property
|
|
5933
5933
|
@jsii.member(jsii_name="domainIdentifier")
|
|
5934
5934
|
def domain_identifier(self) -> builtins.str:
|
|
5935
|
-
'''The ID of the domain where you want to
|
|
5935
|
+
'''The ID of the domain where you want to crate a domain unit.'''
|
|
5936
5936
|
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
5937
5937
|
|
|
5938
5938
|
@domain_identifier.setter
|
|
@@ -6003,7 +6003,7 @@ class CfnDomainUnitProps:
|
|
|
6003
6003
|
) -> None:
|
|
6004
6004
|
'''Properties for defining a ``CfnDomainUnit``.
|
|
6005
6005
|
|
|
6006
|
-
:param domain_identifier: The ID of the domain where you want to
|
|
6006
|
+
:param domain_identifier: The ID of the domain where you want to crate a domain unit.
|
|
6007
6007
|
:param name: The name of the domain unit.
|
|
6008
6008
|
:param parent_domain_unit_identifier: The ID of the parent domain unit.
|
|
6009
6009
|
:param description: The description of the domain unit.
|
|
@@ -6042,7 +6042,7 @@ class CfnDomainUnitProps:
|
|
|
6042
6042
|
|
|
6043
6043
|
@builtins.property
|
|
6044
6044
|
def domain_identifier(self) -> builtins.str:
|
|
6045
|
-
'''The ID of the domain where you want to
|
|
6045
|
+
'''The ID of the domain where you want to crate a domain unit.
|
|
6046
6046
|
|
|
6047
6047
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-domainidentifier
|
|
6048
6048
|
'''
|
|
@@ -8392,6 +8392,467 @@ class CfnGroupProfileProps:
|
|
|
8392
8392
|
)
|
|
8393
8393
|
|
|
8394
8394
|
|
|
8395
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
8396
|
+
class CfnOwner(
|
|
8397
|
+
_CfnResource_9df397a6,
|
|
8398
|
+
metaclass=jsii.JSIIMeta,
|
|
8399
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnOwner",
|
|
8400
|
+
):
|
|
8401
|
+
'''The owner that you want to add to the entity.
|
|
8402
|
+
|
|
8403
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html
|
|
8404
|
+
:cloudformationResource: AWS::DataZone::Owner
|
|
8405
|
+
:exampleMetadata: fixture=_generated
|
|
8406
|
+
|
|
8407
|
+
Example::
|
|
8408
|
+
|
|
8409
|
+
# The code below shows an example of how to instantiate this type.
|
|
8410
|
+
# The values are placeholders you should change.
|
|
8411
|
+
from aws_cdk import aws_datazone as datazone
|
|
8412
|
+
|
|
8413
|
+
cfn_owner = datazone.CfnOwner(self, "MyCfnOwner",
|
|
8414
|
+
domain_identifier="domainIdentifier",
|
|
8415
|
+
entity_identifier="entityIdentifier",
|
|
8416
|
+
entity_type="entityType",
|
|
8417
|
+
owner=datazone.CfnOwner.OwnerPropertiesProperty(
|
|
8418
|
+
group=datazone.CfnOwner.OwnerGroupPropertiesProperty(
|
|
8419
|
+
group_identifier="groupIdentifier"
|
|
8420
|
+
),
|
|
8421
|
+
user=datazone.CfnOwner.OwnerUserPropertiesProperty(
|
|
8422
|
+
user_identifier="userIdentifier"
|
|
8423
|
+
)
|
|
8424
|
+
)
|
|
8425
|
+
)
|
|
8426
|
+
'''
|
|
8427
|
+
|
|
8428
|
+
def __init__(
|
|
8429
|
+
self,
|
|
8430
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
8431
|
+
id: builtins.str,
|
|
8432
|
+
*,
|
|
8433
|
+
domain_identifier: builtins.str,
|
|
8434
|
+
entity_identifier: builtins.str,
|
|
8435
|
+
entity_type: builtins.str,
|
|
8436
|
+
owner: typing.Union[_IResolvable_da3f097b, typing.Union["CfnOwner.OwnerPropertiesProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
8437
|
+
) -> None:
|
|
8438
|
+
'''
|
|
8439
|
+
:param scope: Scope in which this resource is defined.
|
|
8440
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
8441
|
+
:param domain_identifier: The ID of the domain in which you want to add the entity owner.
|
|
8442
|
+
:param entity_identifier: The ID of the entity to which you want to add an owner.
|
|
8443
|
+
:param entity_type: The type of an entity.
|
|
8444
|
+
:param owner: The owner that you want to add to the entity.
|
|
8445
|
+
'''
|
|
8446
|
+
if __debug__:
|
|
8447
|
+
type_hints = typing.get_type_hints(_typecheckingstub__94bfd7733fd63571746923975807ae8f32ba35341a37f7148bb545b4e9847274)
|
|
8448
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
8449
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
8450
|
+
props = CfnOwnerProps(
|
|
8451
|
+
domain_identifier=domain_identifier,
|
|
8452
|
+
entity_identifier=entity_identifier,
|
|
8453
|
+
entity_type=entity_type,
|
|
8454
|
+
owner=owner,
|
|
8455
|
+
)
|
|
8456
|
+
|
|
8457
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
8458
|
+
|
|
8459
|
+
@jsii.member(jsii_name="inspect")
|
|
8460
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
8461
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
8462
|
+
|
|
8463
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
8464
|
+
'''
|
|
8465
|
+
if __debug__:
|
|
8466
|
+
type_hints = typing.get_type_hints(_typecheckingstub__aa3b09221ad53f7b391234ed414a2caf5be239897130cb63a881be90fd3d5159)
|
|
8467
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
8468
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
8469
|
+
|
|
8470
|
+
@jsii.member(jsii_name="renderProperties")
|
|
8471
|
+
def _render_properties(
|
|
8472
|
+
self,
|
|
8473
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
8474
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
8475
|
+
'''
|
|
8476
|
+
:param props: -
|
|
8477
|
+
'''
|
|
8478
|
+
if __debug__:
|
|
8479
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e7abc3e34a10e4f417d29d275feb8d0afab58fee4bf106d762ec5e892461eaa7)
|
|
8480
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
8481
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
8482
|
+
|
|
8483
|
+
@jsii.python.classproperty
|
|
8484
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
8485
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
8486
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
8487
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
8488
|
+
|
|
8489
|
+
@builtins.property
|
|
8490
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
8491
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
8492
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
8493
|
+
|
|
8494
|
+
@builtins.property
|
|
8495
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
8496
|
+
def domain_identifier(self) -> builtins.str:
|
|
8497
|
+
'''The ID of the domain in which you want to add the entity owner.'''
|
|
8498
|
+
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
8499
|
+
|
|
8500
|
+
@domain_identifier.setter
|
|
8501
|
+
def domain_identifier(self, value: builtins.str) -> None:
|
|
8502
|
+
if __debug__:
|
|
8503
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e9073faa55a5b23ffa32de5b7b260a878507e76f90477bf1a9c90357c2872891)
|
|
8504
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8505
|
+
jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
8506
|
+
|
|
8507
|
+
@builtins.property
|
|
8508
|
+
@jsii.member(jsii_name="entityIdentifier")
|
|
8509
|
+
def entity_identifier(self) -> builtins.str:
|
|
8510
|
+
'''The ID of the entity to which you want to add an owner.'''
|
|
8511
|
+
return typing.cast(builtins.str, jsii.get(self, "entityIdentifier"))
|
|
8512
|
+
|
|
8513
|
+
@entity_identifier.setter
|
|
8514
|
+
def entity_identifier(self, value: builtins.str) -> None:
|
|
8515
|
+
if __debug__:
|
|
8516
|
+
type_hints = typing.get_type_hints(_typecheckingstub__553cfea40a703af75f1688c6e78763ca8d67d1e10486295a4f15880e459e83ca)
|
|
8517
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8518
|
+
jsii.set(self, "entityIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
8519
|
+
|
|
8520
|
+
@builtins.property
|
|
8521
|
+
@jsii.member(jsii_name="entityType")
|
|
8522
|
+
def entity_type(self) -> builtins.str:
|
|
8523
|
+
'''The type of an entity.'''
|
|
8524
|
+
return typing.cast(builtins.str, jsii.get(self, "entityType"))
|
|
8525
|
+
|
|
8526
|
+
@entity_type.setter
|
|
8527
|
+
def entity_type(self, value: builtins.str) -> None:
|
|
8528
|
+
if __debug__:
|
|
8529
|
+
type_hints = typing.get_type_hints(_typecheckingstub__59a8766cde46db5fea0cab80e368951dc950c0c18bbe166065a74941ff7268d0)
|
|
8530
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8531
|
+
jsii.set(self, "entityType", value) # pyright: ignore[reportArgumentType]
|
|
8532
|
+
|
|
8533
|
+
@builtins.property
|
|
8534
|
+
@jsii.member(jsii_name="owner")
|
|
8535
|
+
def owner(
|
|
8536
|
+
self,
|
|
8537
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerPropertiesProperty"]:
|
|
8538
|
+
'''The owner that you want to add to the entity.'''
|
|
8539
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerPropertiesProperty"], jsii.get(self, "owner"))
|
|
8540
|
+
|
|
8541
|
+
@owner.setter
|
|
8542
|
+
def owner(
|
|
8543
|
+
self,
|
|
8544
|
+
value: typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerPropertiesProperty"],
|
|
8545
|
+
) -> None:
|
|
8546
|
+
if __debug__:
|
|
8547
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9200651c9921dbe5e1d4780332c9e8f8b197d26e18954ed4949d2b2e1f42f642)
|
|
8548
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8549
|
+
jsii.set(self, "owner", value) # pyright: ignore[reportArgumentType]
|
|
8550
|
+
|
|
8551
|
+
@jsii.data_type(
|
|
8552
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnOwner.OwnerGroupPropertiesProperty",
|
|
8553
|
+
jsii_struct_bases=[],
|
|
8554
|
+
name_mapping={"group_identifier": "groupIdentifier"},
|
|
8555
|
+
)
|
|
8556
|
+
class OwnerGroupPropertiesProperty:
|
|
8557
|
+
def __init__(
|
|
8558
|
+
self,
|
|
8559
|
+
*,
|
|
8560
|
+
group_identifier: typing.Optional[builtins.str] = None,
|
|
8561
|
+
) -> None:
|
|
8562
|
+
'''The properties of the domain unit owners group.
|
|
8563
|
+
|
|
8564
|
+
:param group_identifier: The ID of the domain unit owners group.
|
|
8565
|
+
|
|
8566
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownergroupproperties.html
|
|
8567
|
+
:exampleMetadata: fixture=_generated
|
|
8568
|
+
|
|
8569
|
+
Example::
|
|
8570
|
+
|
|
8571
|
+
# The code below shows an example of how to instantiate this type.
|
|
8572
|
+
# The values are placeholders you should change.
|
|
8573
|
+
from aws_cdk import aws_datazone as datazone
|
|
8574
|
+
|
|
8575
|
+
owner_group_properties_property = datazone.CfnOwner.OwnerGroupPropertiesProperty(
|
|
8576
|
+
group_identifier="groupIdentifier"
|
|
8577
|
+
)
|
|
8578
|
+
'''
|
|
8579
|
+
if __debug__:
|
|
8580
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ebdf17d77276482c77fb47efd9e4dbd02334583fe0ecbd40c08d7f701ee8d14b)
|
|
8581
|
+
check_type(argname="argument group_identifier", value=group_identifier, expected_type=type_hints["group_identifier"])
|
|
8582
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8583
|
+
if group_identifier is not None:
|
|
8584
|
+
self._values["group_identifier"] = group_identifier
|
|
8585
|
+
|
|
8586
|
+
@builtins.property
|
|
8587
|
+
def group_identifier(self) -> typing.Optional[builtins.str]:
|
|
8588
|
+
'''The ID of the domain unit owners group.
|
|
8589
|
+
|
|
8590
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownergroupproperties.html#cfn-datazone-owner-ownergroupproperties-groupidentifier
|
|
8591
|
+
'''
|
|
8592
|
+
result = self._values.get("group_identifier")
|
|
8593
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8594
|
+
|
|
8595
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8596
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8597
|
+
|
|
8598
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8599
|
+
return not (rhs == self)
|
|
8600
|
+
|
|
8601
|
+
def __repr__(self) -> str:
|
|
8602
|
+
return "OwnerGroupPropertiesProperty(%s)" % ", ".join(
|
|
8603
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8604
|
+
)
|
|
8605
|
+
|
|
8606
|
+
@jsii.data_type(
|
|
8607
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnOwner.OwnerPropertiesProperty",
|
|
8608
|
+
jsii_struct_bases=[],
|
|
8609
|
+
name_mapping={"group": "group", "user": "user"},
|
|
8610
|
+
)
|
|
8611
|
+
class OwnerPropertiesProperty:
|
|
8612
|
+
def __init__(
|
|
8613
|
+
self,
|
|
8614
|
+
*,
|
|
8615
|
+
group: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOwner.OwnerGroupPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8616
|
+
user: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOwner.OwnerUserPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8617
|
+
) -> None:
|
|
8618
|
+
'''The properties of a domain unit's owner.
|
|
8619
|
+
|
|
8620
|
+
:param group: Specifies that the domain unit owner is a group.
|
|
8621
|
+
:param user: Specifies that the domain unit owner is a user.
|
|
8622
|
+
|
|
8623
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html
|
|
8624
|
+
:exampleMetadata: fixture=_generated
|
|
8625
|
+
|
|
8626
|
+
Example::
|
|
8627
|
+
|
|
8628
|
+
# The code below shows an example of how to instantiate this type.
|
|
8629
|
+
# The values are placeholders you should change.
|
|
8630
|
+
from aws_cdk import aws_datazone as datazone
|
|
8631
|
+
|
|
8632
|
+
owner_properties_property = datazone.CfnOwner.OwnerPropertiesProperty(
|
|
8633
|
+
group=datazone.CfnOwner.OwnerGroupPropertiesProperty(
|
|
8634
|
+
group_identifier="groupIdentifier"
|
|
8635
|
+
),
|
|
8636
|
+
user=datazone.CfnOwner.OwnerUserPropertiesProperty(
|
|
8637
|
+
user_identifier="userIdentifier"
|
|
8638
|
+
)
|
|
8639
|
+
)
|
|
8640
|
+
'''
|
|
8641
|
+
if __debug__:
|
|
8642
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5c101d7b0fa44737f68ea873c4543f1aaebe3e1acc72b89c5d6be7d3315a3f6a)
|
|
8643
|
+
check_type(argname="argument group", value=group, expected_type=type_hints["group"])
|
|
8644
|
+
check_type(argname="argument user", value=user, expected_type=type_hints["user"])
|
|
8645
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8646
|
+
if group is not None:
|
|
8647
|
+
self._values["group"] = group
|
|
8648
|
+
if user is not None:
|
|
8649
|
+
self._values["user"] = user
|
|
8650
|
+
|
|
8651
|
+
@builtins.property
|
|
8652
|
+
def group(
|
|
8653
|
+
self,
|
|
8654
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerGroupPropertiesProperty"]]:
|
|
8655
|
+
'''Specifies that the domain unit owner is a group.
|
|
8656
|
+
|
|
8657
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html#cfn-datazone-owner-ownerproperties-group
|
|
8658
|
+
'''
|
|
8659
|
+
result = self._values.get("group")
|
|
8660
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerGroupPropertiesProperty"]], result)
|
|
8661
|
+
|
|
8662
|
+
@builtins.property
|
|
8663
|
+
def user(
|
|
8664
|
+
self,
|
|
8665
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerUserPropertiesProperty"]]:
|
|
8666
|
+
'''Specifies that the domain unit owner is a user.
|
|
8667
|
+
|
|
8668
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html#cfn-datazone-owner-ownerproperties-user
|
|
8669
|
+
'''
|
|
8670
|
+
result = self._values.get("user")
|
|
8671
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerUserPropertiesProperty"]], result)
|
|
8672
|
+
|
|
8673
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8674
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8675
|
+
|
|
8676
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8677
|
+
return not (rhs == self)
|
|
8678
|
+
|
|
8679
|
+
def __repr__(self) -> str:
|
|
8680
|
+
return "OwnerPropertiesProperty(%s)" % ", ".join(
|
|
8681
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8682
|
+
)
|
|
8683
|
+
|
|
8684
|
+
@jsii.data_type(
|
|
8685
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnOwner.OwnerUserPropertiesProperty",
|
|
8686
|
+
jsii_struct_bases=[],
|
|
8687
|
+
name_mapping={"user_identifier": "userIdentifier"},
|
|
8688
|
+
)
|
|
8689
|
+
class OwnerUserPropertiesProperty:
|
|
8690
|
+
def __init__(
|
|
8691
|
+
self,
|
|
8692
|
+
*,
|
|
8693
|
+
user_identifier: typing.Optional[builtins.str] = None,
|
|
8694
|
+
) -> None:
|
|
8695
|
+
'''The properties of the owner user.
|
|
8696
|
+
|
|
8697
|
+
:param user_identifier: The ID of the owner user.
|
|
8698
|
+
|
|
8699
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-owneruserproperties.html
|
|
8700
|
+
:exampleMetadata: fixture=_generated
|
|
8701
|
+
|
|
8702
|
+
Example::
|
|
8703
|
+
|
|
8704
|
+
# The code below shows an example of how to instantiate this type.
|
|
8705
|
+
# The values are placeholders you should change.
|
|
8706
|
+
from aws_cdk import aws_datazone as datazone
|
|
8707
|
+
|
|
8708
|
+
owner_user_properties_property = datazone.CfnOwner.OwnerUserPropertiesProperty(
|
|
8709
|
+
user_identifier="userIdentifier"
|
|
8710
|
+
)
|
|
8711
|
+
'''
|
|
8712
|
+
if __debug__:
|
|
8713
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6ddd200ac00629d27d95838e6fe38733e398593324aa72df62d033667a13781d)
|
|
8714
|
+
check_type(argname="argument user_identifier", value=user_identifier, expected_type=type_hints["user_identifier"])
|
|
8715
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8716
|
+
if user_identifier is not None:
|
|
8717
|
+
self._values["user_identifier"] = user_identifier
|
|
8718
|
+
|
|
8719
|
+
@builtins.property
|
|
8720
|
+
def user_identifier(self) -> typing.Optional[builtins.str]:
|
|
8721
|
+
'''The ID of the owner user.
|
|
8722
|
+
|
|
8723
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-owneruserproperties.html#cfn-datazone-owner-owneruserproperties-useridentifier
|
|
8724
|
+
'''
|
|
8725
|
+
result = self._values.get("user_identifier")
|
|
8726
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8727
|
+
|
|
8728
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8729
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8730
|
+
|
|
8731
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8732
|
+
return not (rhs == self)
|
|
8733
|
+
|
|
8734
|
+
def __repr__(self) -> str:
|
|
8735
|
+
return "OwnerUserPropertiesProperty(%s)" % ", ".join(
|
|
8736
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8737
|
+
)
|
|
8738
|
+
|
|
8739
|
+
|
|
8740
|
+
@jsii.data_type(
|
|
8741
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnOwnerProps",
|
|
8742
|
+
jsii_struct_bases=[],
|
|
8743
|
+
name_mapping={
|
|
8744
|
+
"domain_identifier": "domainIdentifier",
|
|
8745
|
+
"entity_identifier": "entityIdentifier",
|
|
8746
|
+
"entity_type": "entityType",
|
|
8747
|
+
"owner": "owner",
|
|
8748
|
+
},
|
|
8749
|
+
)
|
|
8750
|
+
class CfnOwnerProps:
|
|
8751
|
+
def __init__(
|
|
8752
|
+
self,
|
|
8753
|
+
*,
|
|
8754
|
+
domain_identifier: builtins.str,
|
|
8755
|
+
entity_identifier: builtins.str,
|
|
8756
|
+
entity_type: builtins.str,
|
|
8757
|
+
owner: typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerPropertiesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
8758
|
+
) -> None:
|
|
8759
|
+
'''Properties for defining a ``CfnOwner``.
|
|
8760
|
+
|
|
8761
|
+
:param domain_identifier: The ID of the domain in which you want to add the entity owner.
|
|
8762
|
+
:param entity_identifier: The ID of the entity to which you want to add an owner.
|
|
8763
|
+
:param entity_type: The type of an entity.
|
|
8764
|
+
:param owner: The owner that you want to add to the entity.
|
|
8765
|
+
|
|
8766
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html
|
|
8767
|
+
:exampleMetadata: fixture=_generated
|
|
8768
|
+
|
|
8769
|
+
Example::
|
|
8770
|
+
|
|
8771
|
+
# The code below shows an example of how to instantiate this type.
|
|
8772
|
+
# The values are placeholders you should change.
|
|
8773
|
+
from aws_cdk import aws_datazone as datazone
|
|
8774
|
+
|
|
8775
|
+
cfn_owner_props = datazone.CfnOwnerProps(
|
|
8776
|
+
domain_identifier="domainIdentifier",
|
|
8777
|
+
entity_identifier="entityIdentifier",
|
|
8778
|
+
entity_type="entityType",
|
|
8779
|
+
owner=datazone.CfnOwner.OwnerPropertiesProperty(
|
|
8780
|
+
group=datazone.CfnOwner.OwnerGroupPropertiesProperty(
|
|
8781
|
+
group_identifier="groupIdentifier"
|
|
8782
|
+
),
|
|
8783
|
+
user=datazone.CfnOwner.OwnerUserPropertiesProperty(
|
|
8784
|
+
user_identifier="userIdentifier"
|
|
8785
|
+
)
|
|
8786
|
+
)
|
|
8787
|
+
)
|
|
8788
|
+
'''
|
|
8789
|
+
if __debug__:
|
|
8790
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d35804fdeb7af54df495ac452da3f154252f3e8b980bc354ae920748f4c8e46d)
|
|
8791
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
8792
|
+
check_type(argname="argument entity_identifier", value=entity_identifier, expected_type=type_hints["entity_identifier"])
|
|
8793
|
+
check_type(argname="argument entity_type", value=entity_type, expected_type=type_hints["entity_type"])
|
|
8794
|
+
check_type(argname="argument owner", value=owner, expected_type=type_hints["owner"])
|
|
8795
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8796
|
+
"domain_identifier": domain_identifier,
|
|
8797
|
+
"entity_identifier": entity_identifier,
|
|
8798
|
+
"entity_type": entity_type,
|
|
8799
|
+
"owner": owner,
|
|
8800
|
+
}
|
|
8801
|
+
|
|
8802
|
+
@builtins.property
|
|
8803
|
+
def domain_identifier(self) -> builtins.str:
|
|
8804
|
+
'''The ID of the domain in which you want to add the entity owner.
|
|
8805
|
+
|
|
8806
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-domainidentifier
|
|
8807
|
+
'''
|
|
8808
|
+
result = self._values.get("domain_identifier")
|
|
8809
|
+
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
8810
|
+
return typing.cast(builtins.str, result)
|
|
8811
|
+
|
|
8812
|
+
@builtins.property
|
|
8813
|
+
def entity_identifier(self) -> builtins.str:
|
|
8814
|
+
'''The ID of the entity to which you want to add an owner.
|
|
8815
|
+
|
|
8816
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-entityidentifier
|
|
8817
|
+
'''
|
|
8818
|
+
result = self._values.get("entity_identifier")
|
|
8819
|
+
assert result is not None, "Required property 'entity_identifier' is missing"
|
|
8820
|
+
return typing.cast(builtins.str, result)
|
|
8821
|
+
|
|
8822
|
+
@builtins.property
|
|
8823
|
+
def entity_type(self) -> builtins.str:
|
|
8824
|
+
'''The type of an entity.
|
|
8825
|
+
|
|
8826
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-entitytype
|
|
8827
|
+
'''
|
|
8828
|
+
result = self._values.get("entity_type")
|
|
8829
|
+
assert result is not None, "Required property 'entity_type' is missing"
|
|
8830
|
+
return typing.cast(builtins.str, result)
|
|
8831
|
+
|
|
8832
|
+
@builtins.property
|
|
8833
|
+
def owner(
|
|
8834
|
+
self,
|
|
8835
|
+
) -> typing.Union[_IResolvable_da3f097b, CfnOwner.OwnerPropertiesProperty]:
|
|
8836
|
+
'''The owner that you want to add to the entity.
|
|
8837
|
+
|
|
8838
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-owner
|
|
8839
|
+
'''
|
|
8840
|
+
result = self._values.get("owner")
|
|
8841
|
+
assert result is not None, "Required property 'owner' is missing"
|
|
8842
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, CfnOwner.OwnerPropertiesProperty], result)
|
|
8843
|
+
|
|
8844
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8845
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8846
|
+
|
|
8847
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8848
|
+
return not (rhs == self)
|
|
8849
|
+
|
|
8850
|
+
def __repr__(self) -> str:
|
|
8851
|
+
return "CfnOwnerProps(%s)" % ", ".join(
|
|
8852
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8853
|
+
)
|
|
8854
|
+
|
|
8855
|
+
|
|
8395
8856
|
@jsii.implements(_IInspectable_c2943556)
|
|
8396
8857
|
class CfnProject(
|
|
8397
8858
|
_CfnResource_9df397a6,
|
|
@@ -10141,6 +10602,8 @@ __all__ = [
|
|
|
10141
10602
|
"CfnEnvironmentProps",
|
|
10142
10603
|
"CfnGroupProfile",
|
|
10143
10604
|
"CfnGroupProfileProps",
|
|
10605
|
+
"CfnOwner",
|
|
10606
|
+
"CfnOwnerProps",
|
|
10144
10607
|
"CfnProject",
|
|
10145
10608
|
"CfnProjectMembership",
|
|
10146
10609
|
"CfnProjectMembershipProps",
|
|
@@ -11268,6 +11731,86 @@ def _typecheckingstub__4f4f2d05f4850cb07cd88e6e5af875d2c16fa3ae4bcbc384b9a51f7f0
|
|
|
11268
11731
|
"""Type checking stubs"""
|
|
11269
11732
|
pass
|
|
11270
11733
|
|
|
11734
|
+
def _typecheckingstub__94bfd7733fd63571746923975807ae8f32ba35341a37f7148bb545b4e9847274(
|
|
11735
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
11736
|
+
id: builtins.str,
|
|
11737
|
+
*,
|
|
11738
|
+
domain_identifier: builtins.str,
|
|
11739
|
+
entity_identifier: builtins.str,
|
|
11740
|
+
entity_type: builtins.str,
|
|
11741
|
+
owner: typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerPropertiesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
11742
|
+
) -> None:
|
|
11743
|
+
"""Type checking stubs"""
|
|
11744
|
+
pass
|
|
11745
|
+
|
|
11746
|
+
def _typecheckingstub__aa3b09221ad53f7b391234ed414a2caf5be239897130cb63a881be90fd3d5159(
|
|
11747
|
+
inspector: _TreeInspector_488e0dd5,
|
|
11748
|
+
) -> None:
|
|
11749
|
+
"""Type checking stubs"""
|
|
11750
|
+
pass
|
|
11751
|
+
|
|
11752
|
+
def _typecheckingstub__e7abc3e34a10e4f417d29d275feb8d0afab58fee4bf106d762ec5e892461eaa7(
|
|
11753
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
11754
|
+
) -> None:
|
|
11755
|
+
"""Type checking stubs"""
|
|
11756
|
+
pass
|
|
11757
|
+
|
|
11758
|
+
def _typecheckingstub__e9073faa55a5b23ffa32de5b7b260a878507e76f90477bf1a9c90357c2872891(
|
|
11759
|
+
value: builtins.str,
|
|
11760
|
+
) -> None:
|
|
11761
|
+
"""Type checking stubs"""
|
|
11762
|
+
pass
|
|
11763
|
+
|
|
11764
|
+
def _typecheckingstub__553cfea40a703af75f1688c6e78763ca8d67d1e10486295a4f15880e459e83ca(
|
|
11765
|
+
value: builtins.str,
|
|
11766
|
+
) -> None:
|
|
11767
|
+
"""Type checking stubs"""
|
|
11768
|
+
pass
|
|
11769
|
+
|
|
11770
|
+
def _typecheckingstub__59a8766cde46db5fea0cab80e368951dc950c0c18bbe166065a74941ff7268d0(
|
|
11771
|
+
value: builtins.str,
|
|
11772
|
+
) -> None:
|
|
11773
|
+
"""Type checking stubs"""
|
|
11774
|
+
pass
|
|
11775
|
+
|
|
11776
|
+
def _typecheckingstub__9200651c9921dbe5e1d4780332c9e8f8b197d26e18954ed4949d2b2e1f42f642(
|
|
11777
|
+
value: typing.Union[_IResolvable_da3f097b, CfnOwner.OwnerPropertiesProperty],
|
|
11778
|
+
) -> None:
|
|
11779
|
+
"""Type checking stubs"""
|
|
11780
|
+
pass
|
|
11781
|
+
|
|
11782
|
+
def _typecheckingstub__ebdf17d77276482c77fb47efd9e4dbd02334583fe0ecbd40c08d7f701ee8d14b(
|
|
11783
|
+
*,
|
|
11784
|
+
group_identifier: typing.Optional[builtins.str] = None,
|
|
11785
|
+
) -> None:
|
|
11786
|
+
"""Type checking stubs"""
|
|
11787
|
+
pass
|
|
11788
|
+
|
|
11789
|
+
def _typecheckingstub__5c101d7b0fa44737f68ea873c4543f1aaebe3e1acc72b89c5d6be7d3315a3f6a(
|
|
11790
|
+
*,
|
|
11791
|
+
group: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerGroupPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11792
|
+
user: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerUserPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11793
|
+
) -> None:
|
|
11794
|
+
"""Type checking stubs"""
|
|
11795
|
+
pass
|
|
11796
|
+
|
|
11797
|
+
def _typecheckingstub__6ddd200ac00629d27d95838e6fe38733e398593324aa72df62d033667a13781d(
|
|
11798
|
+
*,
|
|
11799
|
+
user_identifier: typing.Optional[builtins.str] = None,
|
|
11800
|
+
) -> None:
|
|
11801
|
+
"""Type checking stubs"""
|
|
11802
|
+
pass
|
|
11803
|
+
|
|
11804
|
+
def _typecheckingstub__d35804fdeb7af54df495ac452da3f154252f3e8b980bc354ae920748f4c8e46d(
|
|
11805
|
+
*,
|
|
11806
|
+
domain_identifier: builtins.str,
|
|
11807
|
+
entity_identifier: builtins.str,
|
|
11808
|
+
entity_type: builtins.str,
|
|
11809
|
+
owner: typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerPropertiesProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
11810
|
+
) -> None:
|
|
11811
|
+
"""Type checking stubs"""
|
|
11812
|
+
pass
|
|
11813
|
+
|
|
11271
11814
|
def _typecheckingstub__2dd190e348e5421f499a11e44b2fb0c69295587e5e7717b13a56786a897efe7f(
|
|
11272
11815
|
scope: _constructs_77d1e7e8.Construct,
|
|
11273
11816
|
id: builtins.str,
|