aws-cdk-lib 2.175.1__py3-none-any.whl → 2.176.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 +15 -6
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.175.1.jsii.tgz → aws-cdk-lib@2.176.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +159 -7
- aws_cdk/aws_appconfig/__init__.py +106 -24
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_backup/__init__.py +18 -84
- aws_cdk/aws_cleanrooms/__init__.py +77 -34
- aws_cdk/aws_cloudformation/__init__.py +4 -2
- aws_cdk/aws_cloudfront/experimental/__init__.py +1 -1
- aws_cdk/aws_cloudwatch/__init__.py +53 -49
- aws_cdk/aws_codebuild/__init__.py +36 -0
- aws_cdk/aws_cognito/__init__.py +228 -219
- aws_cdk/aws_customerprofiles/__init__.py +1060 -0
- aws_cdk/aws_docdb/__init__.py +29 -9
- aws_cdk/aws_dynamodb/__init__.py +77 -58
- aws_cdk/aws_ec2/__init__.py +11 -8
- aws_cdk/aws_ecs/__init__.py +100 -35
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +41 -5
- aws_cdk/aws_healthlake/__init__.py +36 -40
- aws_cdk/aws_lambda/__init__.py +8 -8
- aws_cdk/aws_lambda_event_sources/__init__.py +9 -9
- aws_cdk/aws_lex/__init__.py +105 -0
- aws_cdk/aws_mediaconvert/__init__.py +7 -3
- aws_cdk/aws_organizations/__init__.py +5 -9
- aws_cdk/aws_rds/__init__.py +83 -8
- aws_cdk/aws_resiliencehub/__init__.py +41 -0
- aws_cdk/aws_s3/__init__.py +5 -5
- aws_cdk/aws_ses/__init__.py +25 -4
- aws_cdk/aws_ssm/__init__.py +9 -2
- aws_cdk/aws_ssmquicksetup/__init__.py +84 -84
- aws_cdk/aws_sso/__init__.py +9 -5
- aws_cdk/cx_api/__init__.py +25 -4
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.176.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.176.0.dist-info}/RECORD +39 -40
- aws_cdk/aws_iot1click/__init__.py +0 -1193
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.176.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.176.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.176.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.176.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_appsync/__init__.py
CHANGED
|
@@ -4914,7 +4914,7 @@ class CfnDataSource(
|
|
|
4914
4914
|
:param metrics_config: Enables or disables enhanced data source metrics for specified data sources. Note that ``MetricsConfig`` won't be used unless the ``dataSourceLevelMetricsBehavior`` value is set to ``PER_DATA_SOURCE_METRICS`` . If the ``dataSourceLevelMetricsBehavior`` is set to ``FULL_REQUEST_DATA_SOURCE_METRICS`` instead, ``MetricsConfig`` will be ignored. However, you can still set its value. ``MetricsConfig`` can be ``ENABLED`` or ``DISABLED`` .
|
|
4915
4915
|
:param open_search_service_config: AWS Region and Endpoints for an Amazon OpenSearch Service domain in your account.
|
|
4916
4916
|
:param relational_database_config: Relational Database configuration of the relational database data source.
|
|
4917
|
-
:param service_role_arn: The AWS Identity and Access Management service role ARN for the data source. The system assumes this role when accessing the data source. Required if ``Type`` is specified as ``AWS_LAMBDA`` , ``AMAZON_DYNAMODB`` , ``AMAZON_ELASTICSEARCH`` , ``AMAZON_EVENTBRIDGE`` ,
|
|
4917
|
+
:param service_role_arn: The AWS Identity and Access Management service role ARN for the data source. The system assumes this role when accessing the data source. Required if ``Type`` is specified as ``AWS_LAMBDA`` , ``AMAZON_DYNAMODB`` , ``AMAZON_ELASTICSEARCH`` , ``AMAZON_EVENTBRIDGE`` , ``AMAZON_OPENSEARCH_SERVICE`` , ``RELATIONAL_DATABASE`` , or AMAZON_BEDROCK_RUNTIME.
|
|
4918
4918
|
'''
|
|
4919
4919
|
if __debug__:
|
|
4920
4920
|
type_hints = typing.get_type_hints(_typecheckingstub__f2dc8968068d09d9cb599cea5efad1a18016c4eca4fcc6c15e6169a0891e2678)
|
|
@@ -6182,7 +6182,7 @@ class CfnDataSourceProps:
|
|
|
6182
6182
|
:param metrics_config: Enables or disables enhanced data source metrics for specified data sources. Note that ``MetricsConfig`` won't be used unless the ``dataSourceLevelMetricsBehavior`` value is set to ``PER_DATA_SOURCE_METRICS`` . If the ``dataSourceLevelMetricsBehavior`` is set to ``FULL_REQUEST_DATA_SOURCE_METRICS`` instead, ``MetricsConfig`` will be ignored. However, you can still set its value. ``MetricsConfig`` can be ``ENABLED`` or ``DISABLED`` .
|
|
6183
6183
|
:param open_search_service_config: AWS Region and Endpoints for an Amazon OpenSearch Service domain in your account.
|
|
6184
6184
|
:param relational_database_config: Relational Database configuration of the relational database data source.
|
|
6185
|
-
:param service_role_arn: The AWS Identity and Access Management service role ARN for the data source. The system assumes this role when accessing the data source. Required if ``Type`` is specified as ``AWS_LAMBDA`` , ``AMAZON_DYNAMODB`` , ``AMAZON_ELASTICSEARCH`` , ``AMAZON_EVENTBRIDGE`` ,
|
|
6185
|
+
:param service_role_arn: The AWS Identity and Access Management service role ARN for the data source. The system assumes this role when accessing the data source. Required if ``Type`` is specified as ``AWS_LAMBDA`` , ``AMAZON_DYNAMODB`` , ``AMAZON_ELASTICSEARCH`` , ``AMAZON_EVENTBRIDGE`` , ``AMAZON_OPENSEARCH_SERVICE`` , ``RELATIONAL_DATABASE`` , or AMAZON_BEDROCK_RUNTIME.
|
|
6186
6186
|
|
|
6187
6187
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html
|
|
6188
6188
|
:exampleMetadata: fixture=_generated
|
|
@@ -6449,7 +6449,7 @@ class CfnDataSourceProps:
|
|
|
6449
6449
|
|
|
6450
6450
|
The system assumes this role when accessing the data source.
|
|
6451
6451
|
|
|
6452
|
-
Required if ``Type`` is specified as ``AWS_LAMBDA`` , ``AMAZON_DYNAMODB`` , ``AMAZON_ELASTICSEARCH`` , ``AMAZON_EVENTBRIDGE`` ,
|
|
6452
|
+
Required if ``Type`` is specified as ``AWS_LAMBDA`` , ``AMAZON_DYNAMODB`` , ``AMAZON_ELASTICSEARCH`` , ``AMAZON_EVENTBRIDGE`` , ``AMAZON_OPENSEARCH_SERVICE`` , ``RELATIONAL_DATABASE`` , or AMAZON_BEDROCK_RUNTIME.
|
|
6453
6453
|
|
|
6454
6454
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn
|
|
6455
6455
|
'''
|
aws_cdk/aws_backup/__init__.py
CHANGED
|
@@ -4673,9 +4673,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4673
4673
|
notifications=backup.CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty(
|
|
4674
4674
|
backup_vault_events=["backupVaultEvents"],
|
|
4675
4675
|
sns_topic_arn="snsTopicArn"
|
|
4676
|
-
)
|
|
4677
|
-
vault_state="vaultState",
|
|
4678
|
-
vault_type="vaultType"
|
|
4676
|
+
)
|
|
4679
4677
|
)
|
|
4680
4678
|
'''
|
|
4681
4679
|
|
|
@@ -4690,8 +4688,6 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4690
4688
|
access_policy: typing.Any = None,
|
|
4691
4689
|
backup_vault_tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4692
4690
|
notifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4693
|
-
vault_state: typing.Optional[builtins.str] = None,
|
|
4694
|
-
vault_type: typing.Optional[builtins.str] = None,
|
|
4695
4691
|
) -> None:
|
|
4696
4692
|
'''
|
|
4697
4693
|
:param scope: Scope in which this resource is defined.
|
|
@@ -4702,8 +4698,6 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4702
4698
|
:param access_policy: The backup vault access policy document in JSON format.
|
|
4703
4699
|
:param backup_vault_tags: The tags to assign to the vault.
|
|
4704
4700
|
:param notifications: Returns event notifications for the specified backup vault.
|
|
4705
|
-
:param vault_state: The current state of the vault.
|
|
4706
|
-
:param vault_type: The type of vault described.
|
|
4707
4701
|
'''
|
|
4708
4702
|
if __debug__:
|
|
4709
4703
|
type_hints = typing.get_type_hints(_typecheckingstub__f46c2d817c43abec9e204fc8a7211b43dd15b93e11a637e67a9711664c3afd52)
|
|
@@ -4716,8 +4710,6 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4716
4710
|
access_policy=access_policy,
|
|
4717
4711
|
backup_vault_tags=backup_vault_tags,
|
|
4718
4712
|
notifications=notifications,
|
|
4719
|
-
vault_state=vault_state,
|
|
4720
|
-
vault_type=vault_type,
|
|
4721
4713
|
)
|
|
4722
4714
|
|
|
4723
4715
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -4768,6 +4760,22 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4768
4760
|
'''
|
|
4769
4761
|
return typing.cast(builtins.str, jsii.get(self, "attrEncryptionKeyArn"))
|
|
4770
4762
|
|
|
4763
|
+
@builtins.property
|
|
4764
|
+
@jsii.member(jsii_name="attrVaultState")
|
|
4765
|
+
def attr_vault_state(self) -> builtins.str:
|
|
4766
|
+
'''
|
|
4767
|
+
:cloudformationAttribute: VaultState
|
|
4768
|
+
'''
|
|
4769
|
+
return typing.cast(builtins.str, jsii.get(self, "attrVaultState"))
|
|
4770
|
+
|
|
4771
|
+
@builtins.property
|
|
4772
|
+
@jsii.member(jsii_name="attrVaultType")
|
|
4773
|
+
def attr_vault_type(self) -> builtins.str:
|
|
4774
|
+
'''
|
|
4775
|
+
:cloudformationAttribute: VaultType
|
|
4776
|
+
'''
|
|
4777
|
+
return typing.cast(builtins.str, jsii.get(self, "attrVaultType"))
|
|
4778
|
+
|
|
4771
4779
|
@builtins.property
|
|
4772
4780
|
@jsii.member(jsii_name="cdkTagManager")
|
|
4773
4781
|
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
@@ -4867,32 +4875,6 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4867
4875
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4868
4876
|
jsii.set(self, "notifications", value) # pyright: ignore[reportArgumentType]
|
|
4869
4877
|
|
|
4870
|
-
@builtins.property
|
|
4871
|
-
@jsii.member(jsii_name="vaultState")
|
|
4872
|
-
def vault_state(self) -> typing.Optional[builtins.str]:
|
|
4873
|
-
'''The current state of the vault.'''
|
|
4874
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "vaultState"))
|
|
4875
|
-
|
|
4876
|
-
@vault_state.setter
|
|
4877
|
-
def vault_state(self, value: typing.Optional[builtins.str]) -> None:
|
|
4878
|
-
if __debug__:
|
|
4879
|
-
type_hints = typing.get_type_hints(_typecheckingstub__b9497357ce276e248b82d9f2cf472851d2da1fd0eb5463b2a5d4077f02f8dbcd)
|
|
4880
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4881
|
-
jsii.set(self, "vaultState", value) # pyright: ignore[reportArgumentType]
|
|
4882
|
-
|
|
4883
|
-
@builtins.property
|
|
4884
|
-
@jsii.member(jsii_name="vaultType")
|
|
4885
|
-
def vault_type(self) -> typing.Optional[builtins.str]:
|
|
4886
|
-
'''The type of vault described.'''
|
|
4887
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "vaultType"))
|
|
4888
|
-
|
|
4889
|
-
@vault_type.setter
|
|
4890
|
-
def vault_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
4891
|
-
if __debug__:
|
|
4892
|
-
type_hints = typing.get_type_hints(_typecheckingstub__8e682fdcee746b5e96b0b5dbd6b5ee449285d647373dce115026158d8424881d)
|
|
4893
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4894
|
-
jsii.set(self, "vaultType", value) # pyright: ignore[reportArgumentType]
|
|
4895
|
-
|
|
4896
4878
|
@jsii.data_type(
|
|
4897
4879
|
jsii_type="aws-cdk-lib.aws_backup.CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty",
|
|
4898
4880
|
jsii_struct_bases=[],
|
|
@@ -4979,8 +4961,6 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4979
4961
|
"access_policy": "accessPolicy",
|
|
4980
4962
|
"backup_vault_tags": "backupVaultTags",
|
|
4981
4963
|
"notifications": "notifications",
|
|
4982
|
-
"vault_state": "vaultState",
|
|
4983
|
-
"vault_type": "vaultType",
|
|
4984
4964
|
},
|
|
4985
4965
|
)
|
|
4986
4966
|
class CfnLogicallyAirGappedBackupVaultProps:
|
|
@@ -4993,8 +4973,6 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
4993
4973
|
access_policy: typing.Any = None,
|
|
4994
4974
|
backup_vault_tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4995
4975
|
notifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4996
|
-
vault_state: typing.Optional[builtins.str] = None,
|
|
4997
|
-
vault_type: typing.Optional[builtins.str] = None,
|
|
4998
4976
|
) -> None:
|
|
4999
4977
|
'''Properties for defining a ``CfnLogicallyAirGappedBackupVault``.
|
|
5000
4978
|
|
|
@@ -5004,8 +4982,6 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5004
4982
|
:param access_policy: The backup vault access policy document in JSON format.
|
|
5005
4983
|
:param backup_vault_tags: The tags to assign to the vault.
|
|
5006
4984
|
:param notifications: Returns event notifications for the specified backup vault.
|
|
5007
|
-
:param vault_state: The current state of the vault.
|
|
5008
|
-
:param vault_type: The type of vault described.
|
|
5009
4985
|
|
|
5010
4986
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html
|
|
5011
4987
|
:exampleMetadata: fixture=_generated
|
|
@@ -5031,9 +5007,7 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5031
5007
|
notifications=backup.CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty(
|
|
5032
5008
|
backup_vault_events=["backupVaultEvents"],
|
|
5033
5009
|
sns_topic_arn="snsTopicArn"
|
|
5034
|
-
)
|
|
5035
|
-
vault_state="vaultState",
|
|
5036
|
-
vault_type="vaultType"
|
|
5010
|
+
)
|
|
5037
5011
|
)
|
|
5038
5012
|
'''
|
|
5039
5013
|
if __debug__:
|
|
@@ -5044,8 +5018,6 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5044
5018
|
check_type(argname="argument access_policy", value=access_policy, expected_type=type_hints["access_policy"])
|
|
5045
5019
|
check_type(argname="argument backup_vault_tags", value=backup_vault_tags, expected_type=type_hints["backup_vault_tags"])
|
|
5046
5020
|
check_type(argname="argument notifications", value=notifications, expected_type=type_hints["notifications"])
|
|
5047
|
-
check_type(argname="argument vault_state", value=vault_state, expected_type=type_hints["vault_state"])
|
|
5048
|
-
check_type(argname="argument vault_type", value=vault_type, expected_type=type_hints["vault_type"])
|
|
5049
5021
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5050
5022
|
"backup_vault_name": backup_vault_name,
|
|
5051
5023
|
"max_retention_days": max_retention_days,
|
|
@@ -5057,10 +5029,6 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5057
5029
|
self._values["backup_vault_tags"] = backup_vault_tags
|
|
5058
5030
|
if notifications is not None:
|
|
5059
5031
|
self._values["notifications"] = notifications
|
|
5060
|
-
if vault_state is not None:
|
|
5061
|
-
self._values["vault_state"] = vault_state
|
|
5062
|
-
if vault_type is not None:
|
|
5063
|
-
self._values["vault_type"] = vault_type
|
|
5064
5032
|
|
|
5065
5033
|
@builtins.property
|
|
5066
5034
|
def backup_vault_name(self) -> builtins.str:
|
|
@@ -5127,24 +5095,6 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5127
5095
|
result = self._values.get("notifications")
|
|
5128
5096
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty]], result)
|
|
5129
5097
|
|
|
5130
|
-
@builtins.property
|
|
5131
|
-
def vault_state(self) -> typing.Optional[builtins.str]:
|
|
5132
|
-
'''The current state of the vault.
|
|
5133
|
-
|
|
5134
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-vaultstate
|
|
5135
|
-
'''
|
|
5136
|
-
result = self._values.get("vault_state")
|
|
5137
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
5138
|
-
|
|
5139
|
-
@builtins.property
|
|
5140
|
-
def vault_type(self) -> typing.Optional[builtins.str]:
|
|
5141
|
-
'''The type of vault described.
|
|
5142
|
-
|
|
5143
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-vaulttype
|
|
5144
|
-
'''
|
|
5145
|
-
result = self._values.get("vault_type")
|
|
5146
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
5147
|
-
|
|
5148
5098
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5149
5099
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5150
5100
|
|
|
@@ -8153,8 +8103,6 @@ def _typecheckingstub__f46c2d817c43abec9e204fc8a7211b43dd15b93e11a637e67a9711664
|
|
|
8153
8103
|
access_policy: typing.Any = None,
|
|
8154
8104
|
backup_vault_tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8155
8105
|
notifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8156
|
-
vault_state: typing.Optional[builtins.str] = None,
|
|
8157
|
-
vault_type: typing.Optional[builtins.str] = None,
|
|
8158
8106
|
) -> None:
|
|
8159
8107
|
"""Type checking stubs"""
|
|
8160
8108
|
pass
|
|
@@ -8207,18 +8155,6 @@ def _typecheckingstub__f1dc991e6a5cd9bb0776543a7419ba117220c8fec8f29ec2587f9a674
|
|
|
8207
8155
|
"""Type checking stubs"""
|
|
8208
8156
|
pass
|
|
8209
8157
|
|
|
8210
|
-
def _typecheckingstub__b9497357ce276e248b82d9f2cf472851d2da1fd0eb5463b2a5d4077f02f8dbcd(
|
|
8211
|
-
value: typing.Optional[builtins.str],
|
|
8212
|
-
) -> None:
|
|
8213
|
-
"""Type checking stubs"""
|
|
8214
|
-
pass
|
|
8215
|
-
|
|
8216
|
-
def _typecheckingstub__8e682fdcee746b5e96b0b5dbd6b5ee449285d647373dce115026158d8424881d(
|
|
8217
|
-
value: typing.Optional[builtins.str],
|
|
8218
|
-
) -> None:
|
|
8219
|
-
"""Type checking stubs"""
|
|
8220
|
-
pass
|
|
8221
|
-
|
|
8222
8158
|
def _typecheckingstub__44eaedb9d731db6382000976b38651ee3871dd8abe22e4171998d7581dc60d48(
|
|
8223
8159
|
*,
|
|
8224
8160
|
backup_vault_events: typing.Sequence[builtins.str],
|
|
@@ -8235,8 +8171,6 @@ def _typecheckingstub__5a3b99abcf3e8ad32b3307410738488461421bb759c6f2f630a99abc5
|
|
|
8235
8171
|
access_policy: typing.Any = None,
|
|
8236
8172
|
backup_vault_tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8237
8173
|
notifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8238
|
-
vault_state: typing.Optional[builtins.str] = None,
|
|
8239
|
-
vault_type: typing.Optional[builtins.str] = None,
|
|
8240
8174
|
) -> None:
|
|
8241
8175
|
"""Type checking stubs"""
|
|
8242
8176
|
pass
|
|
@@ -857,7 +857,7 @@ class CfnCollaboration(
|
|
|
857
857
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
858
858
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
859
859
|
:param analytics_engine: The analytics engine for the collaboration.
|
|
860
|
-
:param creator_ml_member_abilities:
|
|
860
|
+
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
861
861
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
862
862
|
:param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
|
|
863
863
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -1046,6 +1046,7 @@ class CfnCollaboration(
|
|
|
1046
1046
|
def creator_ml_member_abilities(
|
|
1047
1047
|
self,
|
|
1048
1048
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.MLMemberAbilitiesProperty"]]:
|
|
1049
|
+
'''The ML member abilities for a collaboration member.'''
|
|
1049
1050
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.MLMemberAbilitiesProperty"]], jsii.get(self, "creatorMlMemberAbilities"))
|
|
1050
1051
|
|
|
1051
1052
|
@creator_ml_member_abilities.setter
|
|
@@ -1228,8 +1229,9 @@ class CfnCollaboration(
|
|
|
1228
1229
|
*,
|
|
1229
1230
|
custom_ml_member_abilities: typing.Sequence[builtins.str],
|
|
1230
1231
|
) -> None:
|
|
1231
|
-
'''
|
|
1232
|
-
|
|
1232
|
+
'''The ML member abilities for a collaboration member.
|
|
1233
|
+
|
|
1234
|
+
:param custom_ml_member_abilities: The custom ML member abilities for a collaboration member.
|
|
1233
1235
|
|
|
1234
1236
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlmemberabilities.html
|
|
1235
1237
|
:exampleMetadata: fixture=_generated
|
|
@@ -1253,7 +1255,8 @@ class CfnCollaboration(
|
|
|
1253
1255
|
|
|
1254
1256
|
@builtins.property
|
|
1255
1257
|
def custom_ml_member_abilities(self) -> typing.List[builtins.str]:
|
|
1256
|
-
'''
|
|
1258
|
+
'''The custom ML member abilities for a collaboration member.
|
|
1259
|
+
|
|
1257
1260
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlmemberabilities.html#cfn-cleanrooms-collaboration-mlmemberabilities-custommlmemberabilities
|
|
1258
1261
|
'''
|
|
1259
1262
|
result = self._values.get("custom_ml_member_abilities")
|
|
@@ -1286,9 +1289,10 @@ class CfnCollaboration(
|
|
|
1286
1289
|
model_inference: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.ModelInferencePaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1287
1290
|
model_training: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.ModelTrainingPaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1288
1291
|
) -> None:
|
|
1289
|
-
'''
|
|
1290
|
-
|
|
1291
|
-
:param
|
|
1292
|
+
'''An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
|
|
1293
|
+
|
|
1294
|
+
:param model_inference: The payment responsibilities accepted by the member for model inference.
|
|
1295
|
+
:param model_training: The payment responsibilities accepted by the member for model training.
|
|
1292
1296
|
|
|
1293
1297
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html
|
|
1294
1298
|
:exampleMetadata: fixture=_generated
|
|
@@ -1322,7 +1326,8 @@ class CfnCollaboration(
|
|
|
1322
1326
|
def model_inference(
|
|
1323
1327
|
self,
|
|
1324
1328
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.ModelInferencePaymentConfigProperty"]]:
|
|
1325
|
-
'''
|
|
1329
|
+
'''The payment responsibilities accepted by the member for model inference.
|
|
1330
|
+
|
|
1326
1331
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html#cfn-cleanrooms-collaboration-mlpaymentconfig-modelinference
|
|
1327
1332
|
'''
|
|
1328
1333
|
result = self._values.get("model_inference")
|
|
@@ -1332,7 +1337,8 @@ class CfnCollaboration(
|
|
|
1332
1337
|
def model_training(
|
|
1333
1338
|
self,
|
|
1334
1339
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.ModelTrainingPaymentConfigProperty"]]:
|
|
1335
|
-
'''
|
|
1340
|
+
'''The payment responsibilities accepted by the member for model training.
|
|
1341
|
+
|
|
1336
1342
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html#cfn-cleanrooms-collaboration-mlpaymentconfig-modeltraining
|
|
1337
1343
|
'''
|
|
1338
1344
|
result = self._values.get("model_training")
|
|
@@ -1375,7 +1381,7 @@ class CfnCollaboration(
|
|
|
1375
1381
|
:param account_id: The identifier used to reference members of the collaboration. Currently only supports AWS account ID.
|
|
1376
1382
|
:param display_name: The member's display name.
|
|
1377
1383
|
:param member_abilities: The abilities granted to the collaboration member. *Allowed Values* : ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS``
|
|
1378
|
-
:param ml_member_abilities:
|
|
1384
|
+
:param ml_member_abilities: The ML abilities granted to the collaboration member.
|
|
1379
1385
|
:param payment_configuration: The collaboration member's payment responsibilities set by the collaboration creator. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer.
|
|
1380
1386
|
|
|
1381
1387
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html
|
|
@@ -1468,7 +1474,8 @@ class CfnCollaboration(
|
|
|
1468
1474
|
def ml_member_abilities(
|
|
1469
1475
|
self,
|
|
1470
1476
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.MLMemberAbilitiesProperty"]]:
|
|
1471
|
-
'''
|
|
1477
|
+
'''The ML abilities granted to the collaboration member.
|
|
1478
|
+
|
|
1472
1479
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html#cfn-cleanrooms-collaboration-memberspecification-mlmemberabilities
|
|
1473
1480
|
'''
|
|
1474
1481
|
result = self._values.get("ml_member_abilities")
|
|
@@ -1509,8 +1516,9 @@ class CfnCollaboration(
|
|
|
1509
1516
|
*,
|
|
1510
1517
|
is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1511
1518
|
) -> None:
|
|
1512
|
-
'''
|
|
1513
|
-
|
|
1519
|
+
'''An object representing the collaboration member's model inference payment responsibilities set by the collaboration creator.
|
|
1520
|
+
|
|
1521
|
+
:param is_responsible: Indicates whether the collaboration creator has configured the collaboration member to pay for model inference costs ( ``TRUE`` ) or has not configured the collaboration member to pay for model inference costs ( ``FALSE`` ). Exactly one member can be configured to pay for model inference costs. An error is returned if the collaboration creator sets a ``TRUE`` value for more than one member in the collaboration. If the collaboration creator hasn't specified anyone as the member paying for model inference costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a ``FALSE`` value for the member who can query.
|
|
1514
1522
|
|
|
1515
1523
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modelinferencepaymentconfig.html
|
|
1516
1524
|
:exampleMetadata: fixture=_generated
|
|
@@ -1534,7 +1542,12 @@ class CfnCollaboration(
|
|
|
1534
1542
|
|
|
1535
1543
|
@builtins.property
|
|
1536
1544
|
def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1537
|
-
'''
|
|
1545
|
+
'''Indicates whether the collaboration creator has configured the collaboration member to pay for model inference costs ( ``TRUE`` ) or has not configured the collaboration member to pay for model inference costs ( ``FALSE`` ).
|
|
1546
|
+
|
|
1547
|
+
Exactly one member can be configured to pay for model inference costs. An error is returned if the collaboration creator sets a ``TRUE`` value for more than one member in the collaboration.
|
|
1548
|
+
|
|
1549
|
+
If the collaboration creator hasn't specified anyone as the member paying for model inference costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a ``FALSE`` value for the member who can query.
|
|
1550
|
+
|
|
1538
1551
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modelinferencepaymentconfig.html#cfn-cleanrooms-collaboration-modelinferencepaymentconfig-isresponsible
|
|
1539
1552
|
'''
|
|
1540
1553
|
result = self._values.get("is_responsible")
|
|
@@ -1563,8 +1576,9 @@ class CfnCollaboration(
|
|
|
1563
1576
|
*,
|
|
1564
1577
|
is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1565
1578
|
) -> None:
|
|
1566
|
-
'''
|
|
1567
|
-
|
|
1579
|
+
'''An object representing the collaboration member's model training payment responsibilities set by the collaboration creator.
|
|
1580
|
+
|
|
1581
|
+
:param is_responsible: Indicates whether the collaboration creator has configured the collaboration member to pay for model training costs ( ``TRUE`` ) or has not configured the collaboration member to pay for model training costs ( ``FALSE`` ). Exactly one member can be configured to pay for model training costs. An error is returned if the collaboration creator sets a ``TRUE`` value for more than one member in the collaboration. If the collaboration creator hasn't specified anyone as the member paying for model training costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a ``FALSE`` value for the member who can query.
|
|
1568
1582
|
|
|
1569
1583
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modeltrainingpaymentconfig.html
|
|
1570
1584
|
:exampleMetadata: fixture=_generated
|
|
@@ -1588,7 +1602,12 @@ class CfnCollaboration(
|
|
|
1588
1602
|
|
|
1589
1603
|
@builtins.property
|
|
1590
1604
|
def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1591
|
-
'''
|
|
1605
|
+
'''Indicates whether the collaboration creator has configured the collaboration member to pay for model training costs ( ``TRUE`` ) or has not configured the collaboration member to pay for model training costs ( ``FALSE`` ).
|
|
1606
|
+
|
|
1607
|
+
Exactly one member can be configured to pay for model training costs. An error is returned if the collaboration creator sets a ``TRUE`` value for more than one member in the collaboration.
|
|
1608
|
+
|
|
1609
|
+
If the collaboration creator hasn't specified anyone as the member paying for model training costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a ``FALSE`` value for the member who can query.
|
|
1610
|
+
|
|
1592
1611
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modeltrainingpaymentconfig.html#cfn-cleanrooms-collaboration-modeltrainingpaymentconfig-isresponsible
|
|
1593
1612
|
'''
|
|
1594
1613
|
result = self._values.get("is_responsible")
|
|
@@ -1624,7 +1643,7 @@ class CfnCollaboration(
|
|
|
1624
1643
|
'''An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
1625
1644
|
|
|
1626
1645
|
:param query_compute: The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.
|
|
1627
|
-
:param machine_learning:
|
|
1646
|
+
:param machine_learning: An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
|
|
1628
1647
|
|
|
1629
1648
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html
|
|
1630
1649
|
:exampleMetadata: fixture=_generated
|
|
@@ -1677,7 +1696,8 @@ class CfnCollaboration(
|
|
|
1677
1696
|
def machine_learning(
|
|
1678
1697
|
self,
|
|
1679
1698
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.MLPaymentConfigProperty"]]:
|
|
1680
|
-
'''
|
|
1699
|
+
'''An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
|
|
1700
|
+
|
|
1681
1701
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html#cfn-cleanrooms-collaboration-paymentconfiguration-machinelearning
|
|
1682
1702
|
'''
|
|
1683
1703
|
result = self._values.get("machine_learning")
|
|
@@ -1797,7 +1817,7 @@ class CfnCollaborationProps:
|
|
|
1797
1817
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
1798
1818
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
1799
1819
|
:param analytics_engine: The analytics engine for the collaboration.
|
|
1800
|
-
:param creator_ml_member_abilities:
|
|
1820
|
+
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
1801
1821
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
1802
1822
|
:param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
|
|
1803
1823
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -1988,7 +2008,8 @@ class CfnCollaborationProps:
|
|
|
1988
2008
|
def creator_ml_member_abilities(
|
|
1989
2009
|
self,
|
|
1990
2010
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCollaboration.MLMemberAbilitiesProperty]]:
|
|
1991
|
-
'''
|
|
2011
|
+
'''The ML member abilities for a collaboration member.
|
|
2012
|
+
|
|
1992
2013
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatormlmemberabilities
|
|
1993
2014
|
'''
|
|
1994
2015
|
result = self._values.get("creator_ml_member_abilities")
|
|
@@ -6686,9 +6707,10 @@ class CfnMembership(
|
|
|
6686
6707
|
model_inference: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipModelInferencePaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6687
6708
|
model_training: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipModelTrainingPaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6688
6709
|
) -> None:
|
|
6689
|
-
'''
|
|
6690
|
-
|
|
6691
|
-
:param
|
|
6710
|
+
'''An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
|
|
6711
|
+
|
|
6712
|
+
:param model_inference: The payment responsibilities accepted by the member for model inference.
|
|
6713
|
+
:param model_training: The payment responsibilities accepted by the member for model training.
|
|
6692
6714
|
|
|
6693
6715
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html
|
|
6694
6716
|
:exampleMetadata: fixture=_generated
|
|
@@ -6722,7 +6744,8 @@ class CfnMembership(
|
|
|
6722
6744
|
def model_inference(
|
|
6723
6745
|
self,
|
|
6724
6746
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipModelInferencePaymentConfigProperty"]]:
|
|
6725
|
-
'''
|
|
6747
|
+
'''The payment responsibilities accepted by the member for model inference.
|
|
6748
|
+
|
|
6726
6749
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html#cfn-cleanrooms-membership-membershipmlpaymentconfig-modelinference
|
|
6727
6750
|
'''
|
|
6728
6751
|
result = self._values.get("model_inference")
|
|
@@ -6732,7 +6755,8 @@ class CfnMembership(
|
|
|
6732
6755
|
def model_training(
|
|
6733
6756
|
self,
|
|
6734
6757
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipModelTrainingPaymentConfigProperty"]]:
|
|
6735
|
-
'''
|
|
6758
|
+
'''The payment responsibilities accepted by the member for model training.
|
|
6759
|
+
|
|
6736
6760
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html#cfn-cleanrooms-membership-membershipmlpaymentconfig-modeltraining
|
|
6737
6761
|
'''
|
|
6738
6762
|
result = self._values.get("model_training")
|
|
@@ -6760,8 +6784,9 @@ class CfnMembership(
|
|
|
6760
6784
|
*,
|
|
6761
6785
|
is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
6762
6786
|
) -> None:
|
|
6763
|
-
'''
|
|
6764
|
-
|
|
6787
|
+
'''An object representing the collaboration member's model inference payment responsibilities set by the collaboration creator.
|
|
6788
|
+
|
|
6789
|
+
:param is_responsible: Indicates whether the collaboration member has accepted to pay for model inference costs ( ``TRUE`` ) or has not accepted to pay for model inference costs ( ``FALSE`` ). If the collaboration creator has not specified anyone to pay for model inference costs, then the member who can query is the default payer. An error message is returned for the following reasons: - If you set the value to ``FALSE`` but you are responsible to pay for model inference costs. - If you set the value to ``TRUE`` but you are not responsible to pay for model inference costs.
|
|
6765
6790
|
|
|
6766
6791
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodelinferencepaymentconfig.html
|
|
6767
6792
|
:exampleMetadata: fixture=_generated
|
|
@@ -6785,7 +6810,15 @@ class CfnMembership(
|
|
|
6785
6810
|
|
|
6786
6811
|
@builtins.property
|
|
6787
6812
|
def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
6788
|
-
'''
|
|
6813
|
+
'''Indicates whether the collaboration member has accepted to pay for model inference costs ( ``TRUE`` ) or has not accepted to pay for model inference costs ( ``FALSE`` ).
|
|
6814
|
+
|
|
6815
|
+
If the collaboration creator has not specified anyone to pay for model inference costs, then the member who can query is the default payer.
|
|
6816
|
+
|
|
6817
|
+
An error message is returned for the following reasons:
|
|
6818
|
+
|
|
6819
|
+
- If you set the value to ``FALSE`` but you are responsible to pay for model inference costs.
|
|
6820
|
+
- If you set the value to ``TRUE`` but you are not responsible to pay for model inference costs.
|
|
6821
|
+
|
|
6789
6822
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodelinferencepaymentconfig.html#cfn-cleanrooms-membership-membershipmodelinferencepaymentconfig-isresponsible
|
|
6790
6823
|
'''
|
|
6791
6824
|
result = self._values.get("is_responsible")
|
|
@@ -6814,8 +6847,9 @@ class CfnMembership(
|
|
|
6814
6847
|
*,
|
|
6815
6848
|
is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
6816
6849
|
) -> None:
|
|
6817
|
-
'''
|
|
6818
|
-
|
|
6850
|
+
'''An object representing the collaboration member's model training payment responsibilities set by the collaboration creator.
|
|
6851
|
+
|
|
6852
|
+
:param is_responsible: Indicates whether the collaboration member has accepted to pay for model training costs ( ``TRUE`` ) or has not accepted to pay for model training costs ( ``FALSE`` ). If the collaboration creator has not specified anyone to pay for model training costs, then the member who can query is the default payer. An error message is returned for the following reasons: - If you set the value to ``FALSE`` but you are responsible to pay for model training costs. - If you set the value to ``TRUE`` but you are not responsible to pay for model training costs.
|
|
6819
6853
|
|
|
6820
6854
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html
|
|
6821
6855
|
:exampleMetadata: fixture=_generated
|
|
@@ -6839,7 +6873,15 @@ class CfnMembership(
|
|
|
6839
6873
|
|
|
6840
6874
|
@builtins.property
|
|
6841
6875
|
def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
6842
|
-
'''
|
|
6876
|
+
'''Indicates whether the collaboration member has accepted to pay for model training costs ( ``TRUE`` ) or has not accepted to pay for model training costs ( ``FALSE`` ).
|
|
6877
|
+
|
|
6878
|
+
If the collaboration creator has not specified anyone to pay for model training costs, then the member who can query is the default payer.
|
|
6879
|
+
|
|
6880
|
+
An error message is returned for the following reasons:
|
|
6881
|
+
|
|
6882
|
+
- If you set the value to ``FALSE`` but you are responsible to pay for model training costs.
|
|
6883
|
+
- If you set the value to ``TRUE`` but you are not responsible to pay for model training costs.
|
|
6884
|
+
|
|
6843
6885
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html#cfn-cleanrooms-membership-membershipmodeltrainingpaymentconfig-isresponsible
|
|
6844
6886
|
'''
|
|
6845
6887
|
result = self._values.get("is_responsible")
|
|
@@ -6875,7 +6917,7 @@ class CfnMembership(
|
|
|
6875
6917
|
'''An object representing the payment responsibilities accepted by the collaboration member.
|
|
6876
6918
|
|
|
6877
6919
|
:param query_compute: The payment responsibilities accepted by the collaboration member for query compute costs.
|
|
6878
|
-
:param machine_learning:
|
|
6920
|
+
:param machine_learning: The payment responsibilities accepted by the collaboration member for machine learning costs.
|
|
6879
6921
|
|
|
6880
6922
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html
|
|
6881
6923
|
:exampleMetadata: fixture=_generated
|
|
@@ -6928,7 +6970,8 @@ class CfnMembership(
|
|
|
6928
6970
|
def machine_learning(
|
|
6929
6971
|
self,
|
|
6930
6972
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipMLPaymentConfigProperty"]]:
|
|
6931
|
-
'''
|
|
6973
|
+
'''The payment responsibilities accepted by the collaboration member for machine learning costs.
|
|
6974
|
+
|
|
6932
6975
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-machinelearning
|
|
6933
6976
|
'''
|
|
6934
6977
|
result = self._values.get("machine_learning")
|
|
@@ -3115,7 +3115,7 @@ class CfnMacro(
|
|
|
3115
3115
|
:param function_name: The Amazon Resource Name (ARN) of the underlying Lambda function that you want CloudFormation to invoke when the macro is run.
|
|
3116
3116
|
:param name: The name of the macro. The name of the macro must be unique across all macros in the account.
|
|
3117
3117
|
:param description: A description of the macro.
|
|
3118
|
-
:param log_group_name: The CloudWatch Logs group to which CloudFormation sends error logging information when invoking the macro's underlying Lambda function.
|
|
3118
|
+
:param log_group_name: The CloudWatch Logs group to which CloudFormation sends error logging information when invoking the macro's underlying Lambda function. This will be an existing CloudWatch Logs LogGroup. Neither CloudFormation or Lambda will create the group.
|
|
3119
3119
|
:param log_role_arn: The ARN of the role CloudFormation should assume when sending log entries to CloudWatch Logs .
|
|
3120
3120
|
'''
|
|
3121
3121
|
if __debug__:
|
|
@@ -3267,7 +3267,7 @@ class CfnMacroProps:
|
|
|
3267
3267
|
:param function_name: The Amazon Resource Name (ARN) of the underlying Lambda function that you want CloudFormation to invoke when the macro is run.
|
|
3268
3268
|
:param name: The name of the macro. The name of the macro must be unique across all macros in the account.
|
|
3269
3269
|
:param description: A description of the macro.
|
|
3270
|
-
:param log_group_name: The CloudWatch Logs group to which CloudFormation sends error logging information when invoking the macro's underlying Lambda function.
|
|
3270
|
+
:param log_group_name: The CloudWatch Logs group to which CloudFormation sends error logging information when invoking the macro's underlying Lambda function. This will be an existing CloudWatch Logs LogGroup. Neither CloudFormation or Lambda will create the group.
|
|
3271
3271
|
:param log_role_arn: The ARN of the role CloudFormation should assume when sending log entries to CloudWatch Logs .
|
|
3272
3272
|
|
|
3273
3273
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html
|
|
@@ -3342,6 +3342,8 @@ class CfnMacroProps:
|
|
|
3342
3342
|
def log_group_name(self) -> typing.Optional[builtins.str]:
|
|
3343
3343
|
'''The CloudWatch Logs group to which CloudFormation sends error logging information when invoking the macro's underlying Lambda function.
|
|
3344
3344
|
|
|
3345
|
+
This will be an existing CloudWatch Logs LogGroup. Neither CloudFormation or Lambda will create the group.
|
|
3346
|
+
|
|
3345
3347
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-loggroupname
|
|
3346
3348
|
'''
|
|
3347
3349
|
result = self._values.get("log_group_name")
|
|
@@ -412,7 +412,7 @@ class EdgeFunction(
|
|
|
412
412
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
413
413
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
414
414
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
415
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
415
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
416
416
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
417
417
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
418
418
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|