aws-cdk-lib 2.189.1__py3-none-any.whl → 2.191.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (57) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.189.1.jsii.tgz → aws-cdk-lib@2.191.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_acmpca/__init__.py +6 -6
  4. aws_cdk/aws_apigateway/__init__.py +18 -1
  5. aws_cdk/aws_apigatewayv2/__init__.py +374 -6
  6. aws_cdk/aws_applicationautoscaling/__init__.py +16 -10
  7. aws_cdk/aws_applicationsignals/__init__.py +204 -31
  8. aws_cdk/aws_aps/__init__.py +383 -2
  9. aws_cdk/aws_backup/__init__.py +0 -41
  10. aws_cdk/aws_batch/__init__.py +242 -5
  11. aws_cdk/aws_bedrock/__init__.py +963 -41
  12. aws_cdk/aws_cleanrooms/__init__.py +1392 -78
  13. aws_cdk/aws_cloudfront/__init__.py +1 -0
  14. aws_cdk/aws_cloudtrail/__init__.py +24 -26
  15. aws_cdk/aws_codebuild/__init__.py +107 -7
  16. aws_cdk/aws_datazone/__init__.py +23 -1
  17. aws_cdk/aws_dms/__init__.py +43 -0
  18. aws_cdk/aws_ec2/__init__.py +364 -30
  19. aws_cdk/aws_ecs/__init__.py +36 -5
  20. aws_cdk/aws_eks/__init__.py +2 -100
  21. aws_cdk/aws_elasticache/__init__.py +6 -11
  22. aws_cdk/aws_elasticloadbalancingv2/__init__.py +341 -0
  23. aws_cdk/aws_events/__init__.py +106 -13
  24. aws_cdk/aws_fsx/__init__.py +9 -21
  25. aws_cdk/aws_iam/__init__.py +1 -1
  26. aws_cdk/aws_iot/__init__.py +6 -6
  27. aws_cdk/aws_kafkaconnect/__init__.py +2 -2
  28. aws_cdk/aws_kinesis/__init__.py +44 -0
  29. aws_cdk/aws_launchwizard/__init__.py +49 -49
  30. aws_cdk/aws_lex/__init__.py +615 -39
  31. aws_cdk/aws_location/__init__.py +4 -4
  32. aws_cdk/aws_macie/__init__.py +14 -3
  33. aws_cdk/aws_memorydb/__init__.py +87 -0
  34. aws_cdk/aws_msk/__init__.py +226 -127
  35. aws_cdk/aws_neptune/__init__.py +0 -24
  36. aws_cdk/aws_opensearchservice/__init__.py +64 -56
  37. aws_cdk/aws_paymentcryptography/__init__.py +41 -0
  38. aws_cdk/aws_qbusiness/__init__.py +175 -3
  39. aws_cdk/aws_quicksight/__init__.py +393 -0
  40. aws_cdk/aws_rds/__init__.py +149 -120
  41. aws_cdk/aws_redshiftserverless/__init__.py +4 -14
  42. aws_cdk/aws_route53resolver/__init__.py +60 -9
  43. aws_cdk/aws_s3/__init__.py +34 -1
  44. aws_cdk/aws_s3_deployment/__init__.py +202 -5
  45. aws_cdk/aws_s3tables/__init__.py +142 -1
  46. aws_cdk/aws_sagemaker/__init__.py +40 -40
  47. aws_cdk/aws_ses/__init__.py +643 -18
  48. aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
  49. aws_cdk/aws_stepfunctions/__init__.py +720 -45
  50. aws_cdk/aws_transfer/__init__.py +55 -2
  51. aws_cdk/pipelines/__init__.py +1 -2
  52. {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/METADATA +1 -1
  53. {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/RECORD +57 -57
  54. {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/LICENSE +0 -0
  55. {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/NOTICE +0 -0
  56. {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/WHEEL +0 -0
  57. {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/top_level.txt +0 -0
@@ -102,6 +102,23 @@ class CfnAnalysisTemplate(
102
102
  membership_identifier="membershipIdentifier",
103
103
  name="name",
104
104
  source=cleanrooms.CfnAnalysisTemplate.AnalysisSourceProperty(
105
+ artifacts=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty(
106
+ entry_point=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
107
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
108
+ bucket="bucket",
109
+ key="key"
110
+ )
111
+ ),
112
+ role_arn="roleArn",
113
+
114
+ # the properties below are optional
115
+ additional_artifacts=[cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
116
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
117
+ bucket="bucket",
118
+ key="key"
119
+ )
120
+ )]
121
+ ),
105
122
  text="text"
106
123
  ),
107
124
 
@@ -114,6 +131,21 @@ class CfnAnalysisTemplate(
114
131
  default_value="defaultValue"
115
132
  )],
116
133
  description="description",
134
+ schema=cleanrooms.CfnAnalysisTemplate.AnalysisSchemaProperty(
135
+ referenced_tables=["referencedTables"]
136
+ ),
137
+ source_metadata=cleanrooms.CfnAnalysisTemplate.AnalysisSourceMetadataProperty(
138
+ artifacts=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty(
139
+ entry_point_hash=cleanrooms.CfnAnalysisTemplate.HashProperty(
140
+ sha256="sha256"
141
+ ),
142
+
143
+ # the properties below are optional
144
+ additional_artifact_hashes=[cleanrooms.CfnAnalysisTemplate.HashProperty(
145
+ sha256="sha256"
146
+ )]
147
+ )
148
+ ),
117
149
  tags=[CfnTag(
118
150
  key="key",
119
151
  value="value"
@@ -132,6 +164,8 @@ class CfnAnalysisTemplate(
132
164
  source: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSourceProperty", typing.Dict[builtins.str, typing.Any]]],
133
165
  analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
134
166
  description: typing.Optional[builtins.str] = None,
167
+ schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSchemaProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
168
+ source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSourceMetadataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
135
169
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
136
170
  ) -> None:
137
171
  '''
@@ -143,6 +177,8 @@ class CfnAnalysisTemplate(
143
177
  :param source: The source of the analysis template.
144
178
  :param analysis_parameters: The parameters of the analysis template.
145
179
  :param description: The description of the analysis template.
180
+ :param schema: The entire schema object.
181
+ :param source_metadata: The source metadata for the analysis template.
146
182
  :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.
147
183
  '''
148
184
  if __debug__:
@@ -156,6 +192,8 @@ class CfnAnalysisTemplate(
156
192
  source=source,
157
193
  analysis_parameters=analysis_parameters,
158
194
  description=description,
195
+ schema=schema,
196
+ source_metadata=source_metadata,
159
197
  tags=tags,
160
198
  )
161
199
 
@@ -361,6 +399,42 @@ class CfnAnalysisTemplate(
361
399
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
362
400
  jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
363
401
 
402
+ @builtins.property
403
+ @jsii.member(jsii_name="schema")
404
+ def schema(
405
+ self,
406
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisSchemaProperty"]]:
407
+ '''The entire schema object.'''
408
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisSchemaProperty"]], jsii.get(self, "schema"))
409
+
410
+ @schema.setter
411
+ def schema(
412
+ self,
413
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisSchemaProperty"]],
414
+ ) -> None:
415
+ if __debug__:
416
+ type_hints = typing.get_type_hints(_typecheckingstub__b08707b577f4e2e4847fc726614c034787b0608c33e3b6db3ed058d8262f49f5)
417
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
418
+ jsii.set(self, "schema", value) # pyright: ignore[reportArgumentType]
419
+
420
+ @builtins.property
421
+ @jsii.member(jsii_name="sourceMetadata")
422
+ def source_metadata(
423
+ self,
424
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisSourceMetadataProperty"]]:
425
+ '''The source metadata for the analysis template.'''
426
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisSourceMetadataProperty"]], jsii.get(self, "sourceMetadata"))
427
+
428
+ @source_metadata.setter
429
+ def source_metadata(
430
+ self,
431
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisSourceMetadataProperty"]],
432
+ ) -> None:
433
+ if __debug__:
434
+ type_hints = typing.get_type_hints(_typecheckingstub__9971674aa89ce0d927eab26c4a51b41fc5fd99b53e08ed11b02d3b3b8d184899)
435
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
436
+ jsii.set(self, "sourceMetadata", value) # pyright: ignore[reportArgumentType]
437
+
364
438
  @builtins.property
365
439
  @jsii.member(jsii_name="tags")
366
440
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
@@ -520,15 +594,88 @@ class CfnAnalysisTemplate(
520
594
  k + "=" + repr(v) for k, v in self._values.items()
521
595
  )
522
596
 
597
+ @jsii.data_type(
598
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.AnalysisSourceMetadataProperty",
599
+ jsii_struct_bases=[],
600
+ name_mapping={"artifacts": "artifacts"},
601
+ )
602
+ class AnalysisSourceMetadataProperty:
603
+ def __init__(
604
+ self,
605
+ *,
606
+ artifacts: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty", typing.Dict[builtins.str, typing.Any]]],
607
+ ) -> None:
608
+ '''The analysis source metadata.
609
+
610
+ :param artifacts: The artifacts of the analysis source metadata.
611
+
612
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissourcemetadata.html
613
+ :exampleMetadata: fixture=_generated
614
+
615
+ Example::
616
+
617
+ # The code below shows an example of how to instantiate this type.
618
+ # The values are placeholders you should change.
619
+ from aws_cdk import aws_cleanrooms as cleanrooms
620
+
621
+ analysis_source_metadata_property = cleanrooms.CfnAnalysisTemplate.AnalysisSourceMetadataProperty(
622
+ artifacts=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty(
623
+ entry_point_hash=cleanrooms.CfnAnalysisTemplate.HashProperty(
624
+ sha256="sha256"
625
+ ),
626
+
627
+ # the properties below are optional
628
+ additional_artifact_hashes=[cleanrooms.CfnAnalysisTemplate.HashProperty(
629
+ sha256="sha256"
630
+ )]
631
+ )
632
+ )
633
+ '''
634
+ if __debug__:
635
+ type_hints = typing.get_type_hints(_typecheckingstub__142df4b782054f1f02b59fba238cf11ed294493aa487afe8597ffefc23299578)
636
+ check_type(argname="argument artifacts", value=artifacts, expected_type=type_hints["artifacts"])
637
+ self._values: typing.Dict[builtins.str, typing.Any] = {
638
+ "artifacts": artifacts,
639
+ }
640
+
641
+ @builtins.property
642
+ def artifacts(
643
+ self,
644
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty"]:
645
+ '''The artifacts of the analysis source metadata.
646
+
647
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissourcemetadata.html#cfn-cleanrooms-analysistemplate-analysissourcemetadata-artifacts
648
+ '''
649
+ result = self._values.get("artifacts")
650
+ assert result is not None, "Required property 'artifacts' is missing"
651
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty"], result)
652
+
653
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
654
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
655
+
656
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
657
+ return not (rhs == self)
658
+
659
+ def __repr__(self) -> str:
660
+ return "AnalysisSourceMetadataProperty(%s)" % ", ".join(
661
+ k + "=" + repr(v) for k, v in self._values.items()
662
+ )
663
+
523
664
  @jsii.data_type(
524
665
  jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.AnalysisSourceProperty",
525
666
  jsii_struct_bases=[],
526
- name_mapping={"text": "text"},
667
+ name_mapping={"artifacts": "artifacts", "text": "text"},
527
668
  )
528
669
  class AnalysisSourceProperty:
529
- def __init__(self, *, text: builtins.str) -> None:
670
+ def __init__(
671
+ self,
672
+ *,
673
+ artifacts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
674
+ text: typing.Optional[builtins.str] = None,
675
+ ) -> None:
530
676
  '''The structure that defines the body of the analysis template.
531
677
 
678
+ :param artifacts: The artifacts of the analysis source.
532
679
  :param text: The query text.
533
680
 
534
681
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html
@@ -541,25 +688,55 @@ class CfnAnalysisTemplate(
541
688
  from aws_cdk import aws_cleanrooms as cleanrooms
542
689
 
543
690
  analysis_source_property = cleanrooms.CfnAnalysisTemplate.AnalysisSourceProperty(
691
+ artifacts=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty(
692
+ entry_point=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
693
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
694
+ bucket="bucket",
695
+ key="key"
696
+ )
697
+ ),
698
+ role_arn="roleArn",
699
+
700
+ # the properties below are optional
701
+ additional_artifacts=[cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
702
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
703
+ bucket="bucket",
704
+ key="key"
705
+ )
706
+ )]
707
+ ),
544
708
  text="text"
545
709
  )
546
710
  '''
547
711
  if __debug__:
548
712
  type_hints = typing.get_type_hints(_typecheckingstub__bbdd92f3241147ec8ad458564c84f6695d3a3e85f93b5190554663d6327c512f)
713
+ check_type(argname="argument artifacts", value=artifacts, expected_type=type_hints["artifacts"])
549
714
  check_type(argname="argument text", value=text, expected_type=type_hints["text"])
550
- self._values: typing.Dict[builtins.str, typing.Any] = {
551
- "text": text,
552
- }
715
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
716
+ if artifacts is not None:
717
+ self._values["artifacts"] = artifacts
718
+ if text is not None:
719
+ self._values["text"] = text
553
720
 
554
721
  @builtins.property
555
- def text(self) -> builtins.str:
722
+ def artifacts(
723
+ self,
724
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty"]]:
725
+ '''The artifacts of the analysis source.
726
+
727
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html#cfn-cleanrooms-analysistemplate-analysissource-artifacts
728
+ '''
729
+ result = self._values.get("artifacts")
730
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty"]], result)
731
+
732
+ @builtins.property
733
+ def text(self) -> typing.Optional[builtins.str]:
556
734
  '''The query text.
557
735
 
558
736
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html#cfn-cleanrooms-analysistemplate-analysissource-text
559
737
  '''
560
738
  result = self._values.get("text")
561
- assert result is not None, "Required property 'text' is missing"
562
- return typing.cast(builtins.str, result)
739
+ return typing.cast(typing.Optional[builtins.str], result)
563
740
 
564
741
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
565
742
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -572,6 +749,374 @@ class CfnAnalysisTemplate(
572
749
  k + "=" + repr(v) for k, v in self._values.items()
573
750
  )
574
751
 
752
+ @jsii.data_type(
753
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty",
754
+ jsii_struct_bases=[],
755
+ name_mapping={
756
+ "entry_point_hash": "entryPointHash",
757
+ "additional_artifact_hashes": "additionalArtifactHashes",
758
+ },
759
+ )
760
+ class AnalysisTemplateArtifactMetadataProperty:
761
+ def __init__(
762
+ self,
763
+ *,
764
+ entry_point_hash: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.HashProperty", typing.Dict[builtins.str, typing.Any]]],
765
+ additional_artifact_hashes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.HashProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
766
+ ) -> None:
767
+ '''The analysis template artifact metadata.
768
+
769
+ :param entry_point_hash: The hash of the entry point for the analysis template artifact metadata.
770
+ :param additional_artifact_hashes: Additional artifact hashes for the analysis template.
771
+
772
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifactmetadata.html
773
+ :exampleMetadata: fixture=_generated
774
+
775
+ Example::
776
+
777
+ # The code below shows an example of how to instantiate this type.
778
+ # The values are placeholders you should change.
779
+ from aws_cdk import aws_cleanrooms as cleanrooms
780
+
781
+ analysis_template_artifact_metadata_property = cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty(
782
+ entry_point_hash=cleanrooms.CfnAnalysisTemplate.HashProperty(
783
+ sha256="sha256"
784
+ ),
785
+
786
+ # the properties below are optional
787
+ additional_artifact_hashes=[cleanrooms.CfnAnalysisTemplate.HashProperty(
788
+ sha256="sha256"
789
+ )]
790
+ )
791
+ '''
792
+ if __debug__:
793
+ type_hints = typing.get_type_hints(_typecheckingstub__987e835d80cb906f68846a5d130091f8db0105378671d39598489b7cabd5fb36)
794
+ check_type(argname="argument entry_point_hash", value=entry_point_hash, expected_type=type_hints["entry_point_hash"])
795
+ check_type(argname="argument additional_artifact_hashes", value=additional_artifact_hashes, expected_type=type_hints["additional_artifact_hashes"])
796
+ self._values: typing.Dict[builtins.str, typing.Any] = {
797
+ "entry_point_hash": entry_point_hash,
798
+ }
799
+ if additional_artifact_hashes is not None:
800
+ self._values["additional_artifact_hashes"] = additional_artifact_hashes
801
+
802
+ @builtins.property
803
+ def entry_point_hash(
804
+ self,
805
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.HashProperty"]:
806
+ '''The hash of the entry point for the analysis template artifact metadata.
807
+
808
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifactmetadata.html#cfn-cleanrooms-analysistemplate-analysistemplateartifactmetadata-entrypointhash
809
+ '''
810
+ result = self._values.get("entry_point_hash")
811
+ assert result is not None, "Required property 'entry_point_hash' is missing"
812
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.HashProperty"], result)
813
+
814
+ @builtins.property
815
+ def additional_artifact_hashes(
816
+ self,
817
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.HashProperty"]]]]:
818
+ '''Additional artifact hashes for the analysis template.
819
+
820
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifactmetadata.html#cfn-cleanrooms-analysistemplate-analysistemplateartifactmetadata-additionalartifacthashes
821
+ '''
822
+ result = self._values.get("additional_artifact_hashes")
823
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.HashProperty"]]]], result)
824
+
825
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
826
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
827
+
828
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
829
+ return not (rhs == self)
830
+
831
+ def __repr__(self) -> str:
832
+ return "AnalysisTemplateArtifactMetadataProperty(%s)" % ", ".join(
833
+ k + "=" + repr(v) for k, v in self._values.items()
834
+ )
835
+
836
+ @jsii.data_type(
837
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty",
838
+ jsii_struct_bases=[],
839
+ name_mapping={"location": "location"},
840
+ )
841
+ class AnalysisTemplateArtifactProperty:
842
+ def __init__(
843
+ self,
844
+ *,
845
+ location: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.S3LocationProperty", typing.Dict[builtins.str, typing.Any]]],
846
+ ) -> None:
847
+ '''The analysis template artifact.
848
+
849
+ :param location: The artifact location.
850
+
851
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifact.html
852
+ :exampleMetadata: fixture=_generated
853
+
854
+ Example::
855
+
856
+ # The code below shows an example of how to instantiate this type.
857
+ # The values are placeholders you should change.
858
+ from aws_cdk import aws_cleanrooms as cleanrooms
859
+
860
+ analysis_template_artifact_property = cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
861
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
862
+ bucket="bucket",
863
+ key="key"
864
+ )
865
+ )
866
+ '''
867
+ if __debug__:
868
+ type_hints = typing.get_type_hints(_typecheckingstub__7f833b582ec423809f565e96fc9ba5d49349ac881791d343e35df1673b1c9644)
869
+ check_type(argname="argument location", value=location, expected_type=type_hints["location"])
870
+ self._values: typing.Dict[builtins.str, typing.Any] = {
871
+ "location": location,
872
+ }
873
+
874
+ @builtins.property
875
+ def location(
876
+ self,
877
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.S3LocationProperty"]:
878
+ '''The artifact location.
879
+
880
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifact.html#cfn-cleanrooms-analysistemplate-analysistemplateartifact-location
881
+ '''
882
+ result = self._values.get("location")
883
+ assert result is not None, "Required property 'location' is missing"
884
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.S3LocationProperty"], result)
885
+
886
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
887
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
888
+
889
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
890
+ return not (rhs == self)
891
+
892
+ def __repr__(self) -> str:
893
+ return "AnalysisTemplateArtifactProperty(%s)" % ", ".join(
894
+ k + "=" + repr(v) for k, v in self._values.items()
895
+ )
896
+
897
+ @jsii.data_type(
898
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty",
899
+ jsii_struct_bases=[],
900
+ name_mapping={
901
+ "entry_point": "entryPoint",
902
+ "role_arn": "roleArn",
903
+ "additional_artifacts": "additionalArtifacts",
904
+ },
905
+ )
906
+ class AnalysisTemplateArtifactsProperty:
907
+ def __init__(
908
+ self,
909
+ *,
910
+ entry_point: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisTemplateArtifactProperty", typing.Dict[builtins.str, typing.Any]]],
911
+ role_arn: builtins.str,
912
+ additional_artifacts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisTemplateArtifactProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
913
+ ) -> None:
914
+ '''The analysis template artifacts.
915
+
916
+ :param entry_point: The entry point for the analysis template artifacts.
917
+ :param role_arn: The role ARN for the analysis template artifacts.
918
+ :param additional_artifacts: Additional artifacts for the analysis template.
919
+
920
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html
921
+ :exampleMetadata: fixture=_generated
922
+
923
+ Example::
924
+
925
+ # The code below shows an example of how to instantiate this type.
926
+ # The values are placeholders you should change.
927
+ from aws_cdk import aws_cleanrooms as cleanrooms
928
+
929
+ analysis_template_artifacts_property = cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty(
930
+ entry_point=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
931
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
932
+ bucket="bucket",
933
+ key="key"
934
+ )
935
+ ),
936
+ role_arn="roleArn",
937
+
938
+ # the properties below are optional
939
+ additional_artifacts=[cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
940
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
941
+ bucket="bucket",
942
+ key="key"
943
+ )
944
+ )]
945
+ )
946
+ '''
947
+ if __debug__:
948
+ type_hints = typing.get_type_hints(_typecheckingstub__de78ae9ecad686157204e702611c0cf015331e3aa099f1e87ab18d5cd854abfb)
949
+ check_type(argname="argument entry_point", value=entry_point, expected_type=type_hints["entry_point"])
950
+ check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
951
+ check_type(argname="argument additional_artifacts", value=additional_artifacts, expected_type=type_hints["additional_artifacts"])
952
+ self._values: typing.Dict[builtins.str, typing.Any] = {
953
+ "entry_point": entry_point,
954
+ "role_arn": role_arn,
955
+ }
956
+ if additional_artifacts is not None:
957
+ self._values["additional_artifacts"] = additional_artifacts
958
+
959
+ @builtins.property
960
+ def entry_point(
961
+ self,
962
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactProperty"]:
963
+ '''The entry point for the analysis template artifacts.
964
+
965
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html#cfn-cleanrooms-analysistemplate-analysistemplateartifacts-entrypoint
966
+ '''
967
+ result = self._values.get("entry_point")
968
+ assert result is not None, "Required property 'entry_point' is missing"
969
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactProperty"], result)
970
+
971
+ @builtins.property
972
+ def role_arn(self) -> builtins.str:
973
+ '''The role ARN for the analysis template artifacts.
974
+
975
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html#cfn-cleanrooms-analysistemplate-analysistemplateartifacts-rolearn
976
+ '''
977
+ result = self._values.get("role_arn")
978
+ assert result is not None, "Required property 'role_arn' is missing"
979
+ return typing.cast(builtins.str, result)
980
+
981
+ @builtins.property
982
+ def additional_artifacts(
983
+ self,
984
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactProperty"]]]]:
985
+ '''Additional artifacts for the analysis template.
986
+
987
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html#cfn-cleanrooms-analysistemplate-analysistemplateartifacts-additionalartifacts
988
+ '''
989
+ result = self._values.get("additional_artifacts")
990
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.AnalysisTemplateArtifactProperty"]]]], result)
991
+
992
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
993
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
994
+
995
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
996
+ return not (rhs == self)
997
+
998
+ def __repr__(self) -> str:
999
+ return "AnalysisTemplateArtifactsProperty(%s)" % ", ".join(
1000
+ k + "=" + repr(v) for k, v in self._values.items()
1001
+ )
1002
+
1003
+ @jsii.data_type(
1004
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.HashProperty",
1005
+ jsii_struct_bases=[],
1006
+ name_mapping={"sha256": "sha256"},
1007
+ )
1008
+ class HashProperty:
1009
+ def __init__(self, *, sha256: typing.Optional[builtins.str] = None) -> None:
1010
+ '''Hash.
1011
+
1012
+ :param sha256: The SHA-256 hash value.
1013
+
1014
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-hash.html
1015
+ :exampleMetadata: fixture=_generated
1016
+
1017
+ Example::
1018
+
1019
+ # The code below shows an example of how to instantiate this type.
1020
+ # The values are placeholders you should change.
1021
+ from aws_cdk import aws_cleanrooms as cleanrooms
1022
+
1023
+ hash_property = cleanrooms.CfnAnalysisTemplate.HashProperty(
1024
+ sha256="sha256"
1025
+ )
1026
+ '''
1027
+ if __debug__:
1028
+ type_hints = typing.get_type_hints(_typecheckingstub__43be85fff22ad377febb791857a9bfd90b262e37e83d363df6adfb5783ea6cb5)
1029
+ check_type(argname="argument sha256", value=sha256, expected_type=type_hints["sha256"])
1030
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
1031
+ if sha256 is not None:
1032
+ self._values["sha256"] = sha256
1033
+
1034
+ @builtins.property
1035
+ def sha256(self) -> typing.Optional[builtins.str]:
1036
+ '''The SHA-256 hash value.
1037
+
1038
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-hash.html#cfn-cleanrooms-analysistemplate-hash-sha256
1039
+ '''
1040
+ result = self._values.get("sha256")
1041
+ return typing.cast(typing.Optional[builtins.str], result)
1042
+
1043
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1044
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1045
+
1046
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1047
+ return not (rhs == self)
1048
+
1049
+ def __repr__(self) -> str:
1050
+ return "HashProperty(%s)" % ", ".join(
1051
+ k + "=" + repr(v) for k, v in self._values.items()
1052
+ )
1053
+
1054
+ @jsii.data_type(
1055
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.S3LocationProperty",
1056
+ jsii_struct_bases=[],
1057
+ name_mapping={"bucket": "bucket", "key": "key"},
1058
+ )
1059
+ class S3LocationProperty:
1060
+ def __init__(self, *, bucket: builtins.str, key: builtins.str) -> None:
1061
+ '''The S3 location.
1062
+
1063
+ :param bucket: The bucket name.
1064
+ :param key: The object key.
1065
+
1066
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html
1067
+ :exampleMetadata: fixture=_generated
1068
+
1069
+ Example::
1070
+
1071
+ # The code below shows an example of how to instantiate this type.
1072
+ # The values are placeholders you should change.
1073
+ from aws_cdk import aws_cleanrooms as cleanrooms
1074
+
1075
+ s3_location_property = cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
1076
+ bucket="bucket",
1077
+ key="key"
1078
+ )
1079
+ '''
1080
+ if __debug__:
1081
+ type_hints = typing.get_type_hints(_typecheckingstub__7bb4aaebbf6530b26619974d56993c72a085bd8e9326904d3e54412c155e81e3)
1082
+ check_type(argname="argument bucket", value=bucket, expected_type=type_hints["bucket"])
1083
+ check_type(argname="argument key", value=key, expected_type=type_hints["key"])
1084
+ self._values: typing.Dict[builtins.str, typing.Any] = {
1085
+ "bucket": bucket,
1086
+ "key": key,
1087
+ }
1088
+
1089
+ @builtins.property
1090
+ def bucket(self) -> builtins.str:
1091
+ '''The bucket name.
1092
+
1093
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html#cfn-cleanrooms-analysistemplate-s3location-bucket
1094
+ '''
1095
+ result = self._values.get("bucket")
1096
+ assert result is not None, "Required property 'bucket' is missing"
1097
+ return typing.cast(builtins.str, result)
1098
+
1099
+ @builtins.property
1100
+ def key(self) -> builtins.str:
1101
+ '''The object key.
1102
+
1103
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html#cfn-cleanrooms-analysistemplate-s3location-key
1104
+ '''
1105
+ result = self._values.get("key")
1106
+ assert result is not None, "Required property 'key' is missing"
1107
+ return typing.cast(builtins.str, result)
1108
+
1109
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1110
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1111
+
1112
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1113
+ return not (rhs == self)
1114
+
1115
+ def __repr__(self) -> str:
1116
+ return "S3LocationProperty(%s)" % ", ".join(
1117
+ k + "=" + repr(v) for k, v in self._values.items()
1118
+ )
1119
+
575
1120
 
576
1121
  @jsii.data_type(
577
1122
  jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplateProps",
@@ -583,6 +1128,8 @@ class CfnAnalysisTemplate(
583
1128
  "source": "source",
584
1129
  "analysis_parameters": "analysisParameters",
585
1130
  "description": "description",
1131
+ "schema": "schema",
1132
+ "source_metadata": "sourceMetadata",
586
1133
  "tags": "tags",
587
1134
  },
588
1135
  )
@@ -596,6 +1143,8 @@ class CfnAnalysisTemplateProps:
596
1143
  source: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceProperty, typing.Dict[builtins.str, typing.Any]]],
597
1144
  analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
598
1145
  description: typing.Optional[builtins.str] = None,
1146
+ schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSchemaProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1147
+ source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
599
1148
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
600
1149
  ) -> None:
601
1150
  '''Properties for defining a ``CfnAnalysisTemplate``.
@@ -606,6 +1155,8 @@ class CfnAnalysisTemplateProps:
606
1155
  :param source: The source of the analysis template.
607
1156
  :param analysis_parameters: The parameters of the analysis template.
608
1157
  :param description: The description of the analysis template.
1158
+ :param schema: The entire schema object.
1159
+ :param source_metadata: The source metadata for the analysis template.
609
1160
  :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.
610
1161
 
611
1162
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html
@@ -622,6 +1173,23 @@ class CfnAnalysisTemplateProps:
622
1173
  membership_identifier="membershipIdentifier",
623
1174
  name="name",
624
1175
  source=cleanrooms.CfnAnalysisTemplate.AnalysisSourceProperty(
1176
+ artifacts=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty(
1177
+ entry_point=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
1178
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
1179
+ bucket="bucket",
1180
+ key="key"
1181
+ )
1182
+ ),
1183
+ role_arn="roleArn",
1184
+
1185
+ # the properties below are optional
1186
+ additional_artifacts=[cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactProperty(
1187
+ location=cleanrooms.CfnAnalysisTemplate.S3LocationProperty(
1188
+ bucket="bucket",
1189
+ key="key"
1190
+ )
1191
+ )]
1192
+ ),
625
1193
  text="text"
626
1194
  ),
627
1195
 
@@ -634,6 +1202,21 @@ class CfnAnalysisTemplateProps:
634
1202
  default_value="defaultValue"
635
1203
  )],
636
1204
  description="description",
1205
+ schema=cleanrooms.CfnAnalysisTemplate.AnalysisSchemaProperty(
1206
+ referenced_tables=["referencedTables"]
1207
+ ),
1208
+ source_metadata=cleanrooms.CfnAnalysisTemplate.AnalysisSourceMetadataProperty(
1209
+ artifacts=cleanrooms.CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty(
1210
+ entry_point_hash=cleanrooms.CfnAnalysisTemplate.HashProperty(
1211
+ sha256="sha256"
1212
+ ),
1213
+
1214
+ # the properties below are optional
1215
+ additional_artifact_hashes=[cleanrooms.CfnAnalysisTemplate.HashProperty(
1216
+ sha256="sha256"
1217
+ )]
1218
+ )
1219
+ ),
637
1220
  tags=[CfnTag(
638
1221
  key="key",
639
1222
  value="value"
@@ -648,6 +1231,8 @@ class CfnAnalysisTemplateProps:
648
1231
  check_type(argname="argument source", value=source, expected_type=type_hints["source"])
649
1232
  check_type(argname="argument analysis_parameters", value=analysis_parameters, expected_type=type_hints["analysis_parameters"])
650
1233
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
1234
+ check_type(argname="argument schema", value=schema, expected_type=type_hints["schema"])
1235
+ check_type(argname="argument source_metadata", value=source_metadata, expected_type=type_hints["source_metadata"])
651
1236
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
652
1237
  self._values: typing.Dict[builtins.str, typing.Any] = {
653
1238
  "format": format,
@@ -659,6 +1244,10 @@ class CfnAnalysisTemplateProps:
659
1244
  self._values["analysis_parameters"] = analysis_parameters
660
1245
  if description is not None:
661
1246
  self._values["description"] = description
1247
+ if schema is not None:
1248
+ self._values["schema"] = schema
1249
+ if source_metadata is not None:
1250
+ self._values["source_metadata"] = source_metadata
662
1251
  if tags is not None:
663
1252
  self._values["tags"] = tags
664
1253
 
@@ -724,6 +1313,28 @@ class CfnAnalysisTemplateProps:
724
1313
  result = self._values.get("description")
725
1314
  return typing.cast(typing.Optional[builtins.str], result)
726
1315
 
1316
+ @builtins.property
1317
+ def schema(
1318
+ self,
1319
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.AnalysisSchemaProperty]]:
1320
+ '''The entire schema object.
1321
+
1322
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-schema
1323
+ '''
1324
+ result = self._values.get("schema")
1325
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.AnalysisSchemaProperty]], result)
1326
+
1327
+ @builtins.property
1328
+ def source_metadata(
1329
+ self,
1330
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.AnalysisSourceMetadataProperty]]:
1331
+ '''The source metadata for the analysis template.
1332
+
1333
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-sourcemetadata
1334
+ '''
1335
+ result = self._values.get("source_metadata")
1336
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.AnalysisSourceMetadataProperty]], result)
1337
+
727
1338
  @builtins.property
728
1339
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
729
1340
  '''An optional label that you can assign to a resource when you create it.
@@ -784,6 +1395,9 @@ class CfnCollaboration(
784
1395
  ),
785
1396
 
786
1397
  # the properties below are optional
1398
+ job_compute=cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty(
1399
+ is_responsible=False
1400
+ ),
787
1401
  machine_learning=cleanrooms.CfnCollaboration.MLPaymentConfigProperty(
788
1402
  model_inference=cleanrooms.CfnCollaboration.ModelInferencePaymentConfigProperty(
789
1403
  is_responsible=False
@@ -808,6 +1422,9 @@ class CfnCollaboration(
808
1422
  ),
809
1423
 
810
1424
  # the properties below are optional
1425
+ job_compute=cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty(
1426
+ is_responsible=False
1427
+ ),
811
1428
  machine_learning=cleanrooms.CfnCollaboration.MLPaymentConfigProperty(
812
1429
  model_inference=cleanrooms.CfnCollaboration.ModelInferencePaymentConfigProperty(
813
1430
  is_responsible=False
@@ -823,6 +1440,7 @@ class CfnCollaboration(
823
1440
  allow_joins_on_columns_with_different_names=False,
824
1441
  preserve_nulls=False
825
1442
  ),
1443
+ job_log_status="jobLogStatus",
826
1444
  tags=[CfnTag(
827
1445
  key="key",
828
1446
  value="value"
@@ -845,13 +1463,14 @@ class CfnCollaboration(
845
1463
  creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.MLMemberAbilitiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
846
1464
  creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.PaymentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
847
1465
  data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.DataEncryptionMetadataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1466
+ job_log_status: typing.Optional[builtins.str] = None,
848
1467
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
849
1468
  ) -> None:
850
1469
  '''
851
1470
  :param scope: Scope in which this resource is defined.
852
1471
  :param id: Construct identifier for this resource (unique in its scope).
853
1472
  :param creator_display_name: A display name of the collaboration creator.
854
- :param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS``
1473
+ :param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS`` | ``CAN_RUN_JOB``
855
1474
  :param description: A description of the collaboration provided by the collaboration owner.
856
1475
  :param members: A list of initial members, not including the creator. This list is immutable.
857
1476
  :param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
@@ -860,6 +1479,7 @@ class CfnCollaboration(
860
1479
  :param creator_ml_member_abilities: The ML member abilities for a collaboration member.
861
1480
  :param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
862
1481
  :param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
1482
+ :param job_log_status: An indicator as to whether job logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
863
1483
  :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.
864
1484
  '''
865
1485
  if __debug__:
@@ -877,6 +1497,7 @@ class CfnCollaboration(
877
1497
  creator_ml_member_abilities=creator_ml_member_abilities,
878
1498
  creator_payment_configuration=creator_payment_configuration,
879
1499
  data_encryption_metadata=data_encryption_metadata,
1500
+ job_log_status=job_log_status,
880
1501
  tags=tags,
881
1502
  )
882
1503
 
@@ -1095,6 +1716,19 @@ class CfnCollaboration(
1095
1716
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1096
1717
  jsii.set(self, "dataEncryptionMetadata", value) # pyright: ignore[reportArgumentType]
1097
1718
 
1719
+ @builtins.property
1720
+ @jsii.member(jsii_name="jobLogStatus")
1721
+ def job_log_status(self) -> typing.Optional[builtins.str]:
1722
+ '''An indicator as to whether job logging has been enabled or disabled for the collaboration.'''
1723
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "jobLogStatus"))
1724
+
1725
+ @job_log_status.setter
1726
+ def job_log_status(self, value: typing.Optional[builtins.str]) -> None:
1727
+ if __debug__:
1728
+ type_hints = typing.get_type_hints(_typecheckingstub__b4417cba39dba6b058b8e9e8165e109039205858f8f1e7237cc3fa2e9f60ee5c)
1729
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1730
+ jsii.set(self, "jobLogStatus", value) # pyright: ignore[reportArgumentType]
1731
+
1098
1732
  @builtins.property
1099
1733
  @jsii.member(jsii_name="tags")
1100
1734
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
@@ -1218,6 +1852,66 @@ class CfnCollaboration(
1218
1852
  k + "=" + repr(v) for k, v in self._values.items()
1219
1853
  )
1220
1854
 
1855
+ @jsii.data_type(
1856
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty",
1857
+ jsii_struct_bases=[],
1858
+ name_mapping={"is_responsible": "isResponsible"},
1859
+ )
1860
+ class JobComputePaymentConfigProperty:
1861
+ def __init__(
1862
+ self,
1863
+ *,
1864
+ is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
1865
+ ) -> None:
1866
+ '''An object representing the collaboration member's payment responsibilities set by the collaboration creator for query and job compute costs.
1867
+
1868
+ :param is_responsible: Indicates whether the collaboration creator has configured the collaboration member to pay for query and job compute costs ( ``TRUE`` ) or has not configured the collaboration member to pay for query and job compute costs ( ``FALSE`` ). Exactly one member can be configured to pay for query and job compute costs. An error is returned if the collaboration creator sets a ``TRUE`` value for more than one member in the collaboration. An error is returned if the collaboration creator sets a ``FALSE`` value for the member who can run queries and jobs.
1869
+
1870
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-jobcomputepaymentconfig.html
1871
+ :exampleMetadata: fixture=_generated
1872
+
1873
+ Example::
1874
+
1875
+ # The code below shows an example of how to instantiate this type.
1876
+ # The values are placeholders you should change.
1877
+ from aws_cdk import aws_cleanrooms as cleanrooms
1878
+
1879
+ job_compute_payment_config_property = cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty(
1880
+ is_responsible=False
1881
+ )
1882
+ '''
1883
+ if __debug__:
1884
+ type_hints = typing.get_type_hints(_typecheckingstub__c083b467c80242022df99766953c94b800010fa09b9890251c092ef48906a8d6)
1885
+ check_type(argname="argument is_responsible", value=is_responsible, expected_type=type_hints["is_responsible"])
1886
+ self._values: typing.Dict[builtins.str, typing.Any] = {
1887
+ "is_responsible": is_responsible,
1888
+ }
1889
+
1890
+ @builtins.property
1891
+ def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
1892
+ '''Indicates whether the collaboration creator has configured the collaboration member to pay for query and job compute costs ( ``TRUE`` ) or has not configured the collaboration member to pay for query and job compute costs ( ``FALSE`` ).
1893
+
1894
+ Exactly one member can be configured to pay for query and job compute costs. An error is returned if the collaboration creator sets a ``TRUE`` value for more than one member in the collaboration.
1895
+
1896
+ An error is returned if the collaboration creator sets a ``FALSE`` value for the member who can run queries and jobs.
1897
+
1898
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-jobcomputepaymentconfig.html#cfn-cleanrooms-collaboration-jobcomputepaymentconfig-isresponsible
1899
+ '''
1900
+ result = self._values.get("is_responsible")
1901
+ assert result is not None, "Required property 'is_responsible' is missing"
1902
+ return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], result)
1903
+
1904
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1905
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1906
+
1907
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1908
+ return not (rhs == self)
1909
+
1910
+ def __repr__(self) -> str:
1911
+ return "JobComputePaymentConfigProperty(%s)" % ", ".join(
1912
+ k + "=" + repr(v) for k, v in self._values.items()
1913
+ )
1914
+
1221
1915
  @jsii.data_type(
1222
1916
  jsii_type="aws-cdk-lib.aws_cleanrooms.CfnCollaboration.MLMemberAbilitiesProperty",
1223
1917
  jsii_struct_bases=[],
@@ -1408,6 +2102,9 @@ class CfnCollaboration(
1408
2102
  ),
1409
2103
 
1410
2104
  # the properties below are optional
2105
+ job_compute=cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty(
2106
+ is_responsible=False
2107
+ ),
1411
2108
  machine_learning=cleanrooms.CfnCollaboration.MLPaymentConfigProperty(
1412
2109
  model_inference=cleanrooms.CfnCollaboration.ModelInferencePaymentConfigProperty(
1413
2110
  is_responsible=False
@@ -1630,6 +2327,7 @@ class CfnCollaboration(
1630
2327
  jsii_struct_bases=[],
1631
2328
  name_mapping={
1632
2329
  "query_compute": "queryCompute",
2330
+ "job_compute": "jobCompute",
1633
2331
  "machine_learning": "machineLearning",
1634
2332
  },
1635
2333
  )
@@ -1638,11 +2336,13 @@ class CfnCollaboration(
1638
2336
  self,
1639
2337
  *,
1640
2338
  query_compute: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.QueryComputePaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]],
2339
+ job_compute: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.JobComputePaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1641
2340
  machine_learning: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.MLPaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1642
2341
  ) -> None:
1643
2342
  '''An object representing the collaboration member's payment responsibilities set by the collaboration creator.
1644
2343
 
1645
2344
  :param query_compute: The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.
2345
+ :param job_compute: The compute configuration for the job.
1646
2346
  :param machine_learning: An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
1647
2347
 
1648
2348
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html
@@ -1660,6 +2360,9 @@ class CfnCollaboration(
1660
2360
  ),
1661
2361
 
1662
2362
  # the properties below are optional
2363
+ job_compute=cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty(
2364
+ is_responsible=False
2365
+ ),
1663
2366
  machine_learning=cleanrooms.CfnCollaboration.MLPaymentConfigProperty(
1664
2367
  model_inference=cleanrooms.CfnCollaboration.ModelInferencePaymentConfigProperty(
1665
2368
  is_responsible=False
@@ -1673,10 +2376,13 @@ class CfnCollaboration(
1673
2376
  if __debug__:
1674
2377
  type_hints = typing.get_type_hints(_typecheckingstub__4bb111eda28dfc76cbd93dac49286726320cc654bfb530550f97b9ec4cf32cbf)
1675
2378
  check_type(argname="argument query_compute", value=query_compute, expected_type=type_hints["query_compute"])
2379
+ check_type(argname="argument job_compute", value=job_compute, expected_type=type_hints["job_compute"])
1676
2380
  check_type(argname="argument machine_learning", value=machine_learning, expected_type=type_hints["machine_learning"])
1677
2381
  self._values: typing.Dict[builtins.str, typing.Any] = {
1678
2382
  "query_compute": query_compute,
1679
2383
  }
2384
+ if job_compute is not None:
2385
+ self._values["job_compute"] = job_compute
1680
2386
  if machine_learning is not None:
1681
2387
  self._values["machine_learning"] = machine_learning
1682
2388
 
@@ -1692,6 +2398,17 @@ class CfnCollaboration(
1692
2398
  assert result is not None, "Required property 'query_compute' is missing"
1693
2399
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnCollaboration.QueryComputePaymentConfigProperty"], result)
1694
2400
 
2401
+ @builtins.property
2402
+ def job_compute(
2403
+ self,
2404
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.JobComputePaymentConfigProperty"]]:
2405
+ '''The compute configuration for the job.
2406
+
2407
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html#cfn-cleanrooms-collaboration-paymentconfiguration-jobcompute
2408
+ '''
2409
+ result = self._values.get("job_compute")
2410
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCollaboration.JobComputePaymentConfigProperty"]], result)
2411
+
1695
2412
  @builtins.property
1696
2413
  def machine_learning(
1697
2414
  self,
@@ -1789,6 +2506,7 @@ class CfnCollaboration(
1789
2506
  "creator_ml_member_abilities": "creatorMlMemberAbilities",
1790
2507
  "creator_payment_configuration": "creatorPaymentConfiguration",
1791
2508
  "data_encryption_metadata": "dataEncryptionMetadata",
2509
+ "job_log_status": "jobLogStatus",
1792
2510
  "tags": "tags",
1793
2511
  },
1794
2512
  )
@@ -1806,12 +2524,13 @@ class CfnCollaborationProps:
1806
2524
  creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MLMemberAbilitiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1807
2525
  creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1808
2526
  data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.DataEncryptionMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2527
+ job_log_status: typing.Optional[builtins.str] = None,
1809
2528
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1810
2529
  ) -> None:
1811
2530
  '''Properties for defining a ``CfnCollaboration``.
1812
2531
 
1813
2532
  :param creator_display_name: A display name of the collaboration creator.
1814
- :param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS``
2533
+ :param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS`` | ``CAN_RUN_JOB``
1815
2534
  :param description: A description of the collaboration provided by the collaboration owner.
1816
2535
  :param members: A list of initial members, not including the creator. This list is immutable.
1817
2536
  :param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
@@ -1820,6 +2539,7 @@ class CfnCollaborationProps:
1820
2539
  :param creator_ml_member_abilities: The ML member abilities for a collaboration member.
1821
2540
  :param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
1822
2541
  :param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
2542
+ :param job_log_status: An indicator as to whether job logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
1823
2543
  :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.
1824
2544
 
1825
2545
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html
@@ -1850,6 +2570,9 @@ class CfnCollaborationProps:
1850
2570
  ),
1851
2571
 
1852
2572
  # the properties below are optional
2573
+ job_compute=cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty(
2574
+ is_responsible=False
2575
+ ),
1853
2576
  machine_learning=cleanrooms.CfnCollaboration.MLPaymentConfigProperty(
1854
2577
  model_inference=cleanrooms.CfnCollaboration.ModelInferencePaymentConfigProperty(
1855
2578
  is_responsible=False
@@ -1874,6 +2597,9 @@ class CfnCollaborationProps:
1874
2597
  ),
1875
2598
 
1876
2599
  # the properties below are optional
2600
+ job_compute=cleanrooms.CfnCollaboration.JobComputePaymentConfigProperty(
2601
+ is_responsible=False
2602
+ ),
1877
2603
  machine_learning=cleanrooms.CfnCollaboration.MLPaymentConfigProperty(
1878
2604
  model_inference=cleanrooms.CfnCollaboration.ModelInferencePaymentConfigProperty(
1879
2605
  is_responsible=False
@@ -1889,6 +2615,7 @@ class CfnCollaborationProps:
1889
2615
  allow_joins_on_columns_with_different_names=False,
1890
2616
  preserve_nulls=False
1891
2617
  ),
2618
+ job_log_status="jobLogStatus",
1892
2619
  tags=[CfnTag(
1893
2620
  key="key",
1894
2621
  value="value"
@@ -1907,6 +2634,7 @@ class CfnCollaborationProps:
1907
2634
  check_type(argname="argument creator_ml_member_abilities", value=creator_ml_member_abilities, expected_type=type_hints["creator_ml_member_abilities"])
1908
2635
  check_type(argname="argument creator_payment_configuration", value=creator_payment_configuration, expected_type=type_hints["creator_payment_configuration"])
1909
2636
  check_type(argname="argument data_encryption_metadata", value=data_encryption_metadata, expected_type=type_hints["data_encryption_metadata"])
2637
+ check_type(argname="argument job_log_status", value=job_log_status, expected_type=type_hints["job_log_status"])
1910
2638
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
1911
2639
  self._values: typing.Dict[builtins.str, typing.Any] = {
1912
2640
  "creator_display_name": creator_display_name,
@@ -1924,6 +2652,8 @@ class CfnCollaborationProps:
1924
2652
  self._values["creator_payment_configuration"] = creator_payment_configuration
1925
2653
  if data_encryption_metadata is not None:
1926
2654
  self._values["data_encryption_metadata"] = data_encryption_metadata
2655
+ if job_log_status is not None:
2656
+ self._values["job_log_status"] = job_log_status
1927
2657
  if tags is not None:
1928
2658
  self._values["tags"] = tags
1929
2659
 
@@ -1941,7 +2671,7 @@ class CfnCollaborationProps:
1941
2671
  def creator_member_abilities(self) -> typing.List[builtins.str]:
1942
2672
  '''The abilities granted to the collaboration creator.
1943
2673
 
1944
- *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS``
2674
+ *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS`` | ``CAN_RUN_JOB``
1945
2675
 
1946
2676
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatormemberabilities
1947
2677
  '''
@@ -2039,6 +2769,17 @@ class CfnCollaborationProps:
2039
2769
  result = self._values.get("data_encryption_metadata")
2040
2770
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCollaboration.DataEncryptionMetadataProperty]], result)
2041
2771
 
2772
+ @builtins.property
2773
+ def job_log_status(self) -> typing.Optional[builtins.str]:
2774
+ '''An indicator as to whether job logging has been enabled or disabled for the collaboration.
2775
+
2776
+ When ``ENABLED`` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
2777
+
2778
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-joblogstatus
2779
+ '''
2780
+ result = self._values.get("job_log_status")
2781
+ return typing.cast(typing.Optional[builtins.str], result)
2782
+
2042
2783
  @builtins.property
2043
2784
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
2044
2785
  '''An optional label that you can assign to a resource when you create it.
@@ -2161,6 +2902,7 @@ class CfnConfiguredTable(
2161
2902
  type="type"
2162
2903
  )],
2163
2904
  description="description",
2905
+ selected_analysis_methods=["selectedAnalysisMethods"],
2164
2906
  tags=[CfnTag(
2165
2907
  key="key",
2166
2908
  value="value"
@@ -2179,6 +2921,7 @@ class CfnConfiguredTable(
2179
2921
  table_reference: typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.TableReferenceProperty", typing.Dict[builtins.str, typing.Any]]],
2180
2922
  analysis_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.AnalysisRuleProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
2181
2923
  description: typing.Optional[builtins.str] = None,
2924
+ selected_analysis_methods: typing.Optional[typing.Sequence[builtins.str]] = None,
2182
2925
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2183
2926
  ) -> None:
2184
2927
  '''
@@ -2190,6 +2933,7 @@ class CfnConfiguredTable(
2190
2933
  :param table_reference: The table that this configured table represents.
2191
2934
  :param analysis_rules: The analysis rule that was created for the configured table.
2192
2935
  :param description: A description for the configured table.
2936
+ :param selected_analysis_methods: The selected analysis methods for the configured table.
2193
2937
  :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.
2194
2938
  '''
2195
2939
  if __debug__:
@@ -2203,6 +2947,7 @@ class CfnConfiguredTable(
2203
2947
  table_reference=table_reference,
2204
2948
  analysis_rules=analysis_rules,
2205
2949
  description=description,
2950
+ selected_analysis_methods=selected_analysis_methods,
2206
2951
  tags=tags,
2207
2952
  )
2208
2953
 
@@ -2359,6 +3104,22 @@ class CfnConfiguredTable(
2359
3104
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2360
3105
  jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
2361
3106
 
3107
+ @builtins.property
3108
+ @jsii.member(jsii_name="selectedAnalysisMethods")
3109
+ def selected_analysis_methods(self) -> typing.Optional[typing.List[builtins.str]]:
3110
+ '''The selected analysis methods for the configured table.'''
3111
+ return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "selectedAnalysisMethods"))
3112
+
3113
+ @selected_analysis_methods.setter
3114
+ def selected_analysis_methods(
3115
+ self,
3116
+ value: typing.Optional[typing.List[builtins.str]],
3117
+ ) -> None:
3118
+ if __debug__:
3119
+ type_hints = typing.get_type_hints(_typecheckingstub__8c04ca44ac5848879bc3057033050f0e47ffad283431a7189392ca761ec64d2d)
3120
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3121
+ jsii.set(self, "selectedAnalysisMethods", value) # pyright: ignore[reportArgumentType]
3122
+
2362
3123
  @builtins.property
2363
3124
  @jsii.member(jsii_name="tags")
2364
3125
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
@@ -4967,6 +5728,7 @@ class CfnConfiguredTableAssociationProps:
4967
5728
  "table_reference": "tableReference",
4968
5729
  "analysis_rules": "analysisRules",
4969
5730
  "description": "description",
5731
+ "selected_analysis_methods": "selectedAnalysisMethods",
4970
5732
  "tags": "tags",
4971
5733
  },
4972
5734
  )
@@ -4980,6 +5742,7 @@ class CfnConfiguredTableProps:
4980
5742
  table_reference: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.TableReferenceProperty, typing.Dict[builtins.str, typing.Any]]],
4981
5743
  analysis_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.AnalysisRuleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
4982
5744
  description: typing.Optional[builtins.str] = None,
5745
+ selected_analysis_methods: typing.Optional[typing.Sequence[builtins.str]] = None,
4983
5746
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
4984
5747
  ) -> None:
4985
5748
  '''Properties for defining a ``CfnConfiguredTable``.
@@ -4990,6 +5753,7 @@ class CfnConfiguredTableProps:
4990
5753
  :param table_reference: The table that this configured table represents.
4991
5754
  :param analysis_rules: The analysis rule that was created for the configured table.
4992
5755
  :param description: A description for the configured table.
5756
+ :param selected_analysis_methods: The selected analysis methods for the configured table.
4993
5757
  :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.
4994
5758
 
4995
5759
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html
@@ -5082,6 +5846,7 @@ class CfnConfiguredTableProps:
5082
5846
  type="type"
5083
5847
  )],
5084
5848
  description="description",
5849
+ selected_analysis_methods=["selectedAnalysisMethods"],
5085
5850
  tags=[CfnTag(
5086
5851
  key="key",
5087
5852
  value="value"
@@ -5096,6 +5861,7 @@ class CfnConfiguredTableProps:
5096
5861
  check_type(argname="argument table_reference", value=table_reference, expected_type=type_hints["table_reference"])
5097
5862
  check_type(argname="argument analysis_rules", value=analysis_rules, expected_type=type_hints["analysis_rules"])
5098
5863
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
5864
+ check_type(argname="argument selected_analysis_methods", value=selected_analysis_methods, expected_type=type_hints["selected_analysis_methods"])
5099
5865
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
5100
5866
  self._values: typing.Dict[builtins.str, typing.Any] = {
5101
5867
  "allowed_columns": allowed_columns,
@@ -5107,6 +5873,8 @@ class CfnConfiguredTableProps:
5107
5873
  self._values["analysis_rules"] = analysis_rules
5108
5874
  if description is not None:
5109
5875
  self._values["description"] = description
5876
+ if selected_analysis_methods is not None:
5877
+ self._values["selected_analysis_methods"] = selected_analysis_methods
5110
5878
  if tags is not None:
5111
5879
  self._values["tags"] = tags
5112
5880
 
@@ -5178,6 +5946,15 @@ class CfnConfiguredTableProps:
5178
5946
  result = self._values.get("description")
5179
5947
  return typing.cast(typing.Optional[builtins.str], result)
5180
5948
 
5949
+ @builtins.property
5950
+ def selected_analysis_methods(self) -> typing.Optional[typing.List[builtins.str]]:
5951
+ '''The selected analysis methods for the configured table.
5952
+
5953
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-selectedanalysismethods
5954
+ '''
5955
+ result = self._values.get("selected_analysis_methods")
5956
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
5957
+
5181
5958
  @builtins.property
5182
5959
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
5183
5960
  '''An optional label that you can assign to a resource when you create it.
@@ -6471,6 +7248,17 @@ class CfnMembership(
6471
7248
  query_log_status="queryLogStatus",
6472
7249
 
6473
7250
  # the properties below are optional
7251
+ default_job_result_configuration=cleanrooms.CfnMembership.MembershipProtectedJobResultConfigurationProperty(
7252
+ output_configuration=cleanrooms.CfnMembership.MembershipProtectedJobOutputConfigurationProperty(
7253
+ s3=cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty(
7254
+ bucket="bucket",
7255
+
7256
+ # the properties below are optional
7257
+ key_prefix="keyPrefix"
7258
+ )
7259
+ ),
7260
+ role_arn="roleArn"
7261
+ ),
6474
7262
  default_result_configuration=cleanrooms.CfnMembership.MembershipProtectedQueryResultConfigurationProperty(
6475
7263
  output_configuration=cleanrooms.CfnMembership.MembershipProtectedQueryOutputConfigurationProperty(
6476
7264
  s3=cleanrooms.CfnMembership.ProtectedQueryS3OutputConfigurationProperty(
@@ -6486,12 +7274,16 @@ class CfnMembership(
6486
7274
  # the properties below are optional
6487
7275
  role_arn="roleArn"
6488
7276
  ),
7277
+ job_log_status="jobLogStatus",
6489
7278
  payment_configuration=cleanrooms.CfnMembership.MembershipPaymentConfigurationProperty(
6490
7279
  query_compute=cleanrooms.CfnMembership.MembershipQueryComputePaymentConfigProperty(
6491
7280
  is_responsible=False
6492
7281
  ),
6493
7282
 
6494
7283
  # the properties below are optional
7284
+ job_compute=cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty(
7285
+ is_responsible=False
7286
+ ),
6495
7287
  machine_learning=cleanrooms.CfnMembership.MembershipMLPaymentConfigProperty(
6496
7288
  model_inference=cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty(
6497
7289
  is_responsible=False
@@ -6515,7 +7307,9 @@ class CfnMembership(
6515
7307
  *,
6516
7308
  collaboration_identifier: builtins.str,
6517
7309
  query_log_status: builtins.str,
7310
+ default_job_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipProtectedJobResultConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6518
7311
  default_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipProtectedQueryResultConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7312
+ job_log_status: typing.Optional[builtins.str] = None,
6519
7313
  payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipPaymentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6520
7314
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
6521
7315
  ) -> None:
@@ -6524,7 +7318,9 @@ class CfnMembership(
6524
7318
  :param id: Construct identifier for this resource (unique in its scope).
6525
7319
  :param collaboration_identifier: The unique ID for the associated collaboration.
6526
7320
  :param query_log_status: An indicator as to whether query logging has been enabled or disabled for the membership. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
7321
+ :param default_job_result_configuration: The default job result configuration for the membership.
6527
7322
  :param default_result_configuration: The default protected query result configuration as specified by the member who can receive results.
7323
+ :param job_log_status: An indicator as to whether job logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
6528
7324
  :param payment_configuration: The payment responsibilities accepted by the collaboration member.
6529
7325
  :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.
6530
7326
  '''
@@ -6535,7 +7331,9 @@ class CfnMembership(
6535
7331
  props = CfnMembershipProps(
6536
7332
  collaboration_identifier=collaboration_identifier,
6537
7333
  query_log_status=query_log_status,
7334
+ default_job_result_configuration=default_job_result_configuration,
6538
7335
  default_result_configuration=default_result_configuration,
7336
+ job_log_status=job_log_status,
6539
7337
  payment_configuration=payment_configuration,
6540
7338
  tags=tags,
6541
7339
  )
@@ -6653,6 +7451,24 @@ class CfnMembership(
6653
7451
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6654
7452
  jsii.set(self, "queryLogStatus", value) # pyright: ignore[reportArgumentType]
6655
7453
 
7454
+ @builtins.property
7455
+ @jsii.member(jsii_name="defaultJobResultConfiguration")
7456
+ def default_job_result_configuration(
7457
+ self,
7458
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipProtectedJobResultConfigurationProperty"]]:
7459
+ '''The default job result configuration for the membership.'''
7460
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipProtectedJobResultConfigurationProperty"]], jsii.get(self, "defaultJobResultConfiguration"))
7461
+
7462
+ @default_job_result_configuration.setter
7463
+ def default_job_result_configuration(
7464
+ self,
7465
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipProtectedJobResultConfigurationProperty"]],
7466
+ ) -> None:
7467
+ if __debug__:
7468
+ type_hints = typing.get_type_hints(_typecheckingstub__fae73e4481dcc5cfeba1d7ce37a48095412d812d6a76939d24017d3e50e600fb)
7469
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7470
+ jsii.set(self, "defaultJobResultConfiguration", value) # pyright: ignore[reportArgumentType]
7471
+
6656
7472
  @builtins.property
6657
7473
  @jsii.member(jsii_name="defaultResultConfiguration")
6658
7474
  def default_result_configuration(
@@ -6671,6 +7487,19 @@ class CfnMembership(
6671
7487
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6672
7488
  jsii.set(self, "defaultResultConfiguration", value) # pyright: ignore[reportArgumentType]
6673
7489
 
7490
+ @builtins.property
7491
+ @jsii.member(jsii_name="jobLogStatus")
7492
+ def job_log_status(self) -> typing.Optional[builtins.str]:
7493
+ '''An indicator as to whether job logging has been enabled or disabled for the collaboration.'''
7494
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "jobLogStatus"))
7495
+
7496
+ @job_log_status.setter
7497
+ def job_log_status(self, value: typing.Optional[builtins.str]) -> None:
7498
+ if __debug__:
7499
+ type_hints = typing.get_type_hints(_typecheckingstub__38062eee31563e49c149bef3fc9159c7dcbe0d1c37a73eb1b26fde91bcde4dd9)
7500
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7501
+ jsii.set(self, "jobLogStatus", value) # pyright: ignore[reportArgumentType]
7502
+
6674
7503
  @builtins.property
6675
7504
  @jsii.member(jsii_name="paymentConfiguration")
6676
7505
  def payment_configuration(
@@ -6702,6 +7531,69 @@ class CfnMembership(
6702
7531
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6703
7532
  jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
6704
7533
 
7534
+ @jsii.data_type(
7535
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty",
7536
+ jsii_struct_bases=[],
7537
+ name_mapping={"is_responsible": "isResponsible"},
7538
+ )
7539
+ class MembershipJobComputePaymentConfigProperty:
7540
+ def __init__(
7541
+ self,
7542
+ *,
7543
+ is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
7544
+ ) -> None:
7545
+ '''An object representing the payment responsibilities accepted by the collaboration member for query and job compute costs.
7546
+
7547
+ :param is_responsible: Indicates whether the collaboration member has accepted to pay for job compute costs ( ``TRUE`` ) or has not accepted to pay for query and job compute costs ( ``FALSE`` ). There is only one member who pays for queries and jobs. An error message is returned for the following reasons: - If you set the value to ``FALSE`` but you are responsible to pay for query and job compute costs. - If you set the value to ``TRUE`` but you are not responsible to pay for query and job compute costs.
7548
+
7549
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipjobcomputepaymentconfig.html
7550
+ :exampleMetadata: fixture=_generated
7551
+
7552
+ Example::
7553
+
7554
+ # The code below shows an example of how to instantiate this type.
7555
+ # The values are placeholders you should change.
7556
+ from aws_cdk import aws_cleanrooms as cleanrooms
7557
+
7558
+ membership_job_compute_payment_config_property = cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty(
7559
+ is_responsible=False
7560
+ )
7561
+ '''
7562
+ if __debug__:
7563
+ type_hints = typing.get_type_hints(_typecheckingstub__e65ed6ced5134c54f82464bc8236090d903d3f26a591c4dc337a7344c43ce7e8)
7564
+ check_type(argname="argument is_responsible", value=is_responsible, expected_type=type_hints["is_responsible"])
7565
+ self._values: typing.Dict[builtins.str, typing.Any] = {
7566
+ "is_responsible": is_responsible,
7567
+ }
7568
+
7569
+ @builtins.property
7570
+ def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
7571
+ '''Indicates whether the collaboration member has accepted to pay for job compute costs ( ``TRUE`` ) or has not accepted to pay for query and job compute costs ( ``FALSE`` ).
7572
+
7573
+ There is only one member who pays for queries and jobs.
7574
+
7575
+ An error message is returned for the following reasons:
7576
+
7577
+ - If you set the value to ``FALSE`` but you are responsible to pay for query and job compute costs.
7578
+ - If you set the value to ``TRUE`` but you are not responsible to pay for query and job compute costs.
7579
+
7580
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipjobcomputepaymentconfig.html#cfn-cleanrooms-membership-membershipjobcomputepaymentconfig-isresponsible
7581
+ '''
7582
+ result = self._values.get("is_responsible")
7583
+ assert result is not None, "Required property 'is_responsible' is missing"
7584
+ return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], result)
7585
+
7586
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7587
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7588
+
7589
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7590
+ return not (rhs == self)
7591
+
7592
+ def __repr__(self) -> str:
7593
+ return "MembershipJobComputePaymentConfigProperty(%s)" % ", ".join(
7594
+ k + "=" + repr(v) for k, v in self._values.items()
7595
+ )
7596
+
6705
7597
  @jsii.data_type(
6706
7598
  jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.MembershipMLPaymentConfigProperty",
6707
7599
  jsii_struct_bases=[],
@@ -6855,13 +7747,185 @@ class CfnMembership(
6855
7747
  def __init__(
6856
7748
  self,
6857
7749
  *,
6858
- is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
7750
+ is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
7751
+ ) -> None:
7752
+ '''An object representing the collaboration member's model training payment responsibilities set by the collaboration creator.
7753
+
7754
+ :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.
7755
+
7756
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html
7757
+ :exampleMetadata: fixture=_generated
7758
+
7759
+ Example::
7760
+
7761
+ # The code below shows an example of how to instantiate this type.
7762
+ # The values are placeholders you should change.
7763
+ from aws_cdk import aws_cleanrooms as cleanrooms
7764
+
7765
+ membership_model_training_payment_config_property = cleanrooms.CfnMembership.MembershipModelTrainingPaymentConfigProperty(
7766
+ is_responsible=False
7767
+ )
7768
+ '''
7769
+ if __debug__:
7770
+ type_hints = typing.get_type_hints(_typecheckingstub__8e5c7b5216c60ffcb694e1961e057ff77a03ba6ae0c1cd13b03497dc0f0df235)
7771
+ check_type(argname="argument is_responsible", value=is_responsible, expected_type=type_hints["is_responsible"])
7772
+ self._values: typing.Dict[builtins.str, typing.Any] = {
7773
+ "is_responsible": is_responsible,
7774
+ }
7775
+
7776
+ @builtins.property
7777
+ def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
7778
+ '''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`` ).
7779
+
7780
+ If the collaboration creator has not specified anyone to pay for model training costs, then the member who can query is the default payer.
7781
+
7782
+ An error message is returned for the following reasons:
7783
+
7784
+ - If you set the value to ``FALSE`` but you are responsible to pay for model training costs.
7785
+ - If you set the value to ``TRUE`` but you are not responsible to pay for model training costs.
7786
+
7787
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html#cfn-cleanrooms-membership-membershipmodeltrainingpaymentconfig-isresponsible
7788
+ '''
7789
+ result = self._values.get("is_responsible")
7790
+ assert result is not None, "Required property 'is_responsible' is missing"
7791
+ return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], result)
7792
+
7793
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7794
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7795
+
7796
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7797
+ return not (rhs == self)
7798
+
7799
+ def __repr__(self) -> str:
7800
+ return "MembershipModelTrainingPaymentConfigProperty(%s)" % ", ".join(
7801
+ k + "=" + repr(v) for k, v in self._values.items()
7802
+ )
7803
+
7804
+ @jsii.data_type(
7805
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.MembershipPaymentConfigurationProperty",
7806
+ jsii_struct_bases=[],
7807
+ name_mapping={
7808
+ "query_compute": "queryCompute",
7809
+ "job_compute": "jobCompute",
7810
+ "machine_learning": "machineLearning",
7811
+ },
7812
+ )
7813
+ class MembershipPaymentConfigurationProperty:
7814
+ def __init__(
7815
+ self,
7816
+ *,
7817
+ query_compute: typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipQueryComputePaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]],
7818
+ job_compute: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipJobComputePaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7819
+ machine_learning: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipMLPaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7820
+ ) -> None:
7821
+ '''An object representing the payment responsibilities accepted by the collaboration member.
7822
+
7823
+ :param query_compute: The payment responsibilities accepted by the collaboration member for query compute costs.
7824
+ :param job_compute: The payment responsibilities accepted by the collaboration member for job compute costs.
7825
+ :param machine_learning: The payment responsibilities accepted by the collaboration member for machine learning costs.
7826
+
7827
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html
7828
+ :exampleMetadata: fixture=_generated
7829
+
7830
+ Example::
7831
+
7832
+ # The code below shows an example of how to instantiate this type.
7833
+ # The values are placeholders you should change.
7834
+ from aws_cdk import aws_cleanrooms as cleanrooms
7835
+
7836
+ membership_payment_configuration_property = cleanrooms.CfnMembership.MembershipPaymentConfigurationProperty(
7837
+ query_compute=cleanrooms.CfnMembership.MembershipQueryComputePaymentConfigProperty(
7838
+ is_responsible=False
7839
+ ),
7840
+
7841
+ # the properties below are optional
7842
+ job_compute=cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty(
7843
+ is_responsible=False
7844
+ ),
7845
+ machine_learning=cleanrooms.CfnMembership.MembershipMLPaymentConfigProperty(
7846
+ model_inference=cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty(
7847
+ is_responsible=False
7848
+ ),
7849
+ model_training=cleanrooms.CfnMembership.MembershipModelTrainingPaymentConfigProperty(
7850
+ is_responsible=False
7851
+ )
7852
+ )
7853
+ )
7854
+ '''
7855
+ if __debug__:
7856
+ type_hints = typing.get_type_hints(_typecheckingstub__ff9b623af3a2e12d6db7063d2191f9dad178b00c5e761d332496d6065f45dfe6)
7857
+ check_type(argname="argument query_compute", value=query_compute, expected_type=type_hints["query_compute"])
7858
+ check_type(argname="argument job_compute", value=job_compute, expected_type=type_hints["job_compute"])
7859
+ check_type(argname="argument machine_learning", value=machine_learning, expected_type=type_hints["machine_learning"])
7860
+ self._values: typing.Dict[builtins.str, typing.Any] = {
7861
+ "query_compute": query_compute,
7862
+ }
7863
+ if job_compute is not None:
7864
+ self._values["job_compute"] = job_compute
7865
+ if machine_learning is not None:
7866
+ self._values["machine_learning"] = machine_learning
7867
+
7868
+ @builtins.property
7869
+ def query_compute(
7870
+ self,
7871
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipQueryComputePaymentConfigProperty"]:
7872
+ '''The payment responsibilities accepted by the collaboration member for query compute costs.
7873
+
7874
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-querycompute
7875
+ '''
7876
+ result = self._values.get("query_compute")
7877
+ assert result is not None, "Required property 'query_compute' is missing"
7878
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipQueryComputePaymentConfigProperty"], result)
7879
+
7880
+ @builtins.property
7881
+ def job_compute(
7882
+ self,
7883
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipJobComputePaymentConfigProperty"]]:
7884
+ '''The payment responsibilities accepted by the collaboration member for job compute costs.
7885
+
7886
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-jobcompute
7887
+ '''
7888
+ result = self._values.get("job_compute")
7889
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipJobComputePaymentConfigProperty"]], result)
7890
+
7891
+ @builtins.property
7892
+ def machine_learning(
7893
+ self,
7894
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipMLPaymentConfigProperty"]]:
7895
+ '''The payment responsibilities accepted by the collaboration member for machine learning costs.
7896
+
7897
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-machinelearning
7898
+ '''
7899
+ result = self._values.get("machine_learning")
7900
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipMLPaymentConfigProperty"]], result)
7901
+
7902
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7903
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7904
+
7905
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7906
+ return not (rhs == self)
7907
+
7908
+ def __repr__(self) -> str:
7909
+ return "MembershipPaymentConfigurationProperty(%s)" % ", ".join(
7910
+ k + "=" + repr(v) for k, v in self._values.items()
7911
+ )
7912
+
7913
+ @jsii.data_type(
7914
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.MembershipProtectedJobOutputConfigurationProperty",
7915
+ jsii_struct_bases=[],
7916
+ name_mapping={"s3": "s3"},
7917
+ )
7918
+ class MembershipProtectedJobOutputConfigurationProperty:
7919
+ def __init__(
7920
+ self,
7921
+ *,
7922
+ s3: typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.ProtectedJobS3OutputConfigurationInputProperty", typing.Dict[builtins.str, typing.Any]]],
6859
7923
  ) -> None:
6860
- '''An object representing the collaboration member's model training payment responsibilities set by the collaboration creator.
7924
+ '''Contains configurations for protected job results.
6861
7925
 
6862
- :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.
7926
+ :param s3: Contains the configuration to write the job results to S3.
6863
7927
 
6864
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html
7928
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjoboutputconfiguration.html
6865
7929
  :exampleMetadata: fixture=_generated
6866
7930
 
6867
7931
  Example::
@@ -6870,33 +7934,33 @@ class CfnMembership(
6870
7934
  # The values are placeholders you should change.
6871
7935
  from aws_cdk import aws_cleanrooms as cleanrooms
6872
7936
 
6873
- membership_model_training_payment_config_property = cleanrooms.CfnMembership.MembershipModelTrainingPaymentConfigProperty(
6874
- is_responsible=False
7937
+ membership_protected_job_output_configuration_property = cleanrooms.CfnMembership.MembershipProtectedJobOutputConfigurationProperty(
7938
+ s3=cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty(
7939
+ bucket="bucket",
7940
+
7941
+ # the properties below are optional
7942
+ key_prefix="keyPrefix"
7943
+ )
6875
7944
  )
6876
7945
  '''
6877
7946
  if __debug__:
6878
- type_hints = typing.get_type_hints(_typecheckingstub__8e5c7b5216c60ffcb694e1961e057ff77a03ba6ae0c1cd13b03497dc0f0df235)
6879
- check_type(argname="argument is_responsible", value=is_responsible, expected_type=type_hints["is_responsible"])
7947
+ type_hints = typing.get_type_hints(_typecheckingstub__04b0307caf7eb009735af65a413fe8c877c870d384cffc49ef1a36d9699ba548)
7948
+ check_type(argname="argument s3", value=s3, expected_type=type_hints["s3"])
6880
7949
  self._values: typing.Dict[builtins.str, typing.Any] = {
6881
- "is_responsible": is_responsible,
7950
+ "s3": s3,
6882
7951
  }
6883
7952
 
6884
7953
  @builtins.property
6885
- def is_responsible(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
6886
- '''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`` ).
6887
-
6888
- If the collaboration creator has not specified anyone to pay for model training costs, then the member who can query is the default payer.
6889
-
6890
- An error message is returned for the following reasons:
6891
-
6892
- - If you set the value to ``FALSE`` but you are responsible to pay for model training costs.
6893
- - If you set the value to ``TRUE`` but you are not responsible to pay for model training costs.
7954
+ def s3(
7955
+ self,
7956
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnMembership.ProtectedJobS3OutputConfigurationInputProperty"]:
7957
+ '''Contains the configuration to write the job results to S3.
6894
7958
 
6895
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html#cfn-cleanrooms-membership-membershipmodeltrainingpaymentconfig-isresponsible
7959
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjoboutputconfiguration.html#cfn-cleanrooms-membership-membershipprotectedjoboutputconfiguration-s3
6896
7960
  '''
6897
- result = self._values.get("is_responsible")
6898
- assert result is not None, "Required property 'is_responsible' is missing"
6899
- return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], result)
7961
+ result = self._values.get("s3")
7962
+ assert result is not None, "Required property 's3' is missing"
7963
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnMembership.ProtectedJobS3OutputConfigurationInputProperty"], result)
6900
7964
 
6901
7965
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
6902
7966
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -6905,31 +7969,31 @@ class CfnMembership(
6905
7969
  return not (rhs == self)
6906
7970
 
6907
7971
  def __repr__(self) -> str:
6908
- return "MembershipModelTrainingPaymentConfigProperty(%s)" % ", ".join(
7972
+ return "MembershipProtectedJobOutputConfigurationProperty(%s)" % ", ".join(
6909
7973
  k + "=" + repr(v) for k, v in self._values.items()
6910
7974
  )
6911
7975
 
6912
7976
  @jsii.data_type(
6913
- jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.MembershipPaymentConfigurationProperty",
7977
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.MembershipProtectedJobResultConfigurationProperty",
6914
7978
  jsii_struct_bases=[],
6915
7979
  name_mapping={
6916
- "query_compute": "queryCompute",
6917
- "machine_learning": "machineLearning",
7980
+ "output_configuration": "outputConfiguration",
7981
+ "role_arn": "roleArn",
6918
7982
  },
6919
7983
  )
6920
- class MembershipPaymentConfigurationProperty:
7984
+ class MembershipProtectedJobResultConfigurationProperty:
6921
7985
  def __init__(
6922
7986
  self,
6923
7987
  *,
6924
- query_compute: typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipQueryComputePaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]],
6925
- machine_learning: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipMLPaymentConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7988
+ output_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnMembership.MembershipProtectedJobOutputConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
7989
+ role_arn: builtins.str,
6926
7990
  ) -> None:
6927
- '''An object representing the payment responsibilities accepted by the collaboration member.
7991
+ '''Contains configurations for protected job results.
6928
7992
 
6929
- :param query_compute: The payment responsibilities accepted by the collaboration member for query compute costs.
6930
- :param machine_learning: The payment responsibilities accepted by the collaboration member for machine learning costs.
7993
+ :param output_configuration: The output configuration for a protected job result.
7994
+ :param role_arn: The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected job results to the result location, given by the member who can receive results.
6931
7995
 
6932
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html
7996
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjobresultconfiguration.html
6933
7997
  :exampleMetadata: fixture=_generated
6934
7998
 
6935
7999
  Example::
@@ -6938,54 +8002,48 @@ class CfnMembership(
6938
8002
  # The values are placeholders you should change.
6939
8003
  from aws_cdk import aws_cleanrooms as cleanrooms
6940
8004
 
6941
- membership_payment_configuration_property = cleanrooms.CfnMembership.MembershipPaymentConfigurationProperty(
6942
- query_compute=cleanrooms.CfnMembership.MembershipQueryComputePaymentConfigProperty(
6943
- is_responsible=False
6944
- ),
8005
+ membership_protected_job_result_configuration_property = cleanrooms.CfnMembership.MembershipProtectedJobResultConfigurationProperty(
8006
+ output_configuration=cleanrooms.CfnMembership.MembershipProtectedJobOutputConfigurationProperty(
8007
+ s3=cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty(
8008
+ bucket="bucket",
6945
8009
 
6946
- # the properties below are optional
6947
- machine_learning=cleanrooms.CfnMembership.MembershipMLPaymentConfigProperty(
6948
- model_inference=cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty(
6949
- is_responsible=False
6950
- ),
6951
- model_training=cleanrooms.CfnMembership.MembershipModelTrainingPaymentConfigProperty(
6952
- is_responsible=False
8010
+ # the properties below are optional
8011
+ key_prefix="keyPrefix"
6953
8012
  )
6954
- )
8013
+ ),
8014
+ role_arn="roleArn"
6955
8015
  )
6956
8016
  '''
6957
8017
  if __debug__:
6958
- type_hints = typing.get_type_hints(_typecheckingstub__ff9b623af3a2e12d6db7063d2191f9dad178b00c5e761d332496d6065f45dfe6)
6959
- check_type(argname="argument query_compute", value=query_compute, expected_type=type_hints["query_compute"])
6960
- check_type(argname="argument machine_learning", value=machine_learning, expected_type=type_hints["machine_learning"])
8018
+ type_hints = typing.get_type_hints(_typecheckingstub__b28ab623b930079e7e4df6a230e428f58f7ad919a987f38ecf686a4238ab5b47)
8019
+ check_type(argname="argument output_configuration", value=output_configuration, expected_type=type_hints["output_configuration"])
8020
+ check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
6961
8021
  self._values: typing.Dict[builtins.str, typing.Any] = {
6962
- "query_compute": query_compute,
8022
+ "output_configuration": output_configuration,
8023
+ "role_arn": role_arn,
6963
8024
  }
6964
- if machine_learning is not None:
6965
- self._values["machine_learning"] = machine_learning
6966
8025
 
6967
8026
  @builtins.property
6968
- def query_compute(
8027
+ def output_configuration(
6969
8028
  self,
6970
- ) -> typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipQueryComputePaymentConfigProperty"]:
6971
- '''The payment responsibilities accepted by the collaboration member for query compute costs.
8029
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipProtectedJobOutputConfigurationProperty"]:
8030
+ '''The output configuration for a protected job result.
6972
8031
 
6973
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-querycompute
8032
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjobresultconfiguration.html#cfn-cleanrooms-membership-membershipprotectedjobresultconfiguration-outputconfiguration
6974
8033
  '''
6975
- result = self._values.get("query_compute")
6976
- assert result is not None, "Required property 'query_compute' is missing"
6977
- return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipQueryComputePaymentConfigProperty"], result)
8034
+ result = self._values.get("output_configuration")
8035
+ assert result is not None, "Required property 'output_configuration' is missing"
8036
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipProtectedJobOutputConfigurationProperty"], result)
6978
8037
 
6979
8038
  @builtins.property
6980
- def machine_learning(
6981
- self,
6982
- ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipMLPaymentConfigProperty"]]:
6983
- '''The payment responsibilities accepted by the collaboration member for machine learning costs.
8039
+ def role_arn(self) -> builtins.str:
8040
+ '''The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected job results to the result location, given by the member who can receive results.
6984
8041
 
6985
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-machinelearning
8042
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjobresultconfiguration.html#cfn-cleanrooms-membership-membershipprotectedjobresultconfiguration-rolearn
6986
8043
  '''
6987
- result = self._values.get("machine_learning")
6988
- return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMembership.MembershipMLPaymentConfigProperty"]], result)
8044
+ result = self._values.get("role_arn")
8045
+ assert result is not None, "Required property 'role_arn' is missing"
8046
+ return typing.cast(builtins.str, result)
6989
8047
 
6990
8048
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
6991
8049
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -6994,7 +8052,7 @@ class CfnMembership(
6994
8052
  return not (rhs == self)
6995
8053
 
6996
8054
  def __repr__(self) -> str:
6997
- return "MembershipPaymentConfigurationProperty(%s)" % ", ".join(
8055
+ return "MembershipProtectedJobResultConfigurationProperty(%s)" % ", ".join(
6998
8056
  k + "=" + repr(v) for k, v in self._values.items()
6999
8057
  )
7000
8058
 
@@ -7213,6 +8271,79 @@ class CfnMembership(
7213
8271
  k + "=" + repr(v) for k, v in self._values.items()
7214
8272
  )
7215
8273
 
8274
+ @jsii.data_type(
8275
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty",
8276
+ jsii_struct_bases=[],
8277
+ name_mapping={"bucket": "bucket", "key_prefix": "keyPrefix"},
8278
+ )
8279
+ class ProtectedJobS3OutputConfigurationInputProperty:
8280
+ def __init__(
8281
+ self,
8282
+ *,
8283
+ bucket: builtins.str,
8284
+ key_prefix: typing.Optional[builtins.str] = None,
8285
+ ) -> None:
8286
+ '''Contains input information for protected jobs with an S3 output type.
8287
+
8288
+ :param bucket: The S3 bucket for job output.
8289
+ :param key_prefix: The S3 prefix to unload the protected job results.
8290
+
8291
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html
8292
+ :exampleMetadata: fixture=_generated
8293
+
8294
+ Example::
8295
+
8296
+ # The code below shows an example of how to instantiate this type.
8297
+ # The values are placeholders you should change.
8298
+ from aws_cdk import aws_cleanrooms as cleanrooms
8299
+
8300
+ protected_job_s3_output_configuration_input_property = cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty(
8301
+ bucket="bucket",
8302
+
8303
+ # the properties below are optional
8304
+ key_prefix="keyPrefix"
8305
+ )
8306
+ '''
8307
+ if __debug__:
8308
+ type_hints = typing.get_type_hints(_typecheckingstub__d3e8066041ab5d5ba65ac44f96738cb04449874735750f11b6331de6bf9fda0c)
8309
+ check_type(argname="argument bucket", value=bucket, expected_type=type_hints["bucket"])
8310
+ check_type(argname="argument key_prefix", value=key_prefix, expected_type=type_hints["key_prefix"])
8311
+ self._values: typing.Dict[builtins.str, typing.Any] = {
8312
+ "bucket": bucket,
8313
+ }
8314
+ if key_prefix is not None:
8315
+ self._values["key_prefix"] = key_prefix
8316
+
8317
+ @builtins.property
8318
+ def bucket(self) -> builtins.str:
8319
+ '''The S3 bucket for job output.
8320
+
8321
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html#cfn-cleanrooms-membership-protectedjobs3outputconfigurationinput-bucket
8322
+ '''
8323
+ result = self._values.get("bucket")
8324
+ assert result is not None, "Required property 'bucket' is missing"
8325
+ return typing.cast(builtins.str, result)
8326
+
8327
+ @builtins.property
8328
+ def key_prefix(self) -> typing.Optional[builtins.str]:
8329
+ '''The S3 prefix to unload the protected job results.
8330
+
8331
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html#cfn-cleanrooms-membership-protectedjobs3outputconfigurationinput-keyprefix
8332
+ '''
8333
+ result = self._values.get("key_prefix")
8334
+ return typing.cast(typing.Optional[builtins.str], result)
8335
+
8336
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8337
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
8338
+
8339
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8340
+ return not (rhs == self)
8341
+
8342
+ def __repr__(self) -> str:
8343
+ return "ProtectedJobS3OutputConfigurationInputProperty(%s)" % ", ".join(
8344
+ k + "=" + repr(v) for k, v in self._values.items()
8345
+ )
8346
+
7216
8347
  @jsii.data_type(
7217
8348
  jsii_type="aws-cdk-lib.aws_cleanrooms.CfnMembership.ProtectedQueryS3OutputConfigurationProperty",
7218
8349
  jsii_struct_bases=[],
@@ -7332,7 +8463,9 @@ class CfnMembership(
7332
8463
  name_mapping={
7333
8464
  "collaboration_identifier": "collaborationIdentifier",
7334
8465
  "query_log_status": "queryLogStatus",
8466
+ "default_job_result_configuration": "defaultJobResultConfiguration",
7335
8467
  "default_result_configuration": "defaultResultConfiguration",
8468
+ "job_log_status": "jobLogStatus",
7336
8469
  "payment_configuration": "paymentConfiguration",
7337
8470
  "tags": "tags",
7338
8471
  },
@@ -7343,7 +8476,9 @@ class CfnMembershipProps:
7343
8476
  *,
7344
8477
  collaboration_identifier: builtins.str,
7345
8478
  query_log_status: builtins.str,
8479
+ default_job_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipProtectedJobResultConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7346
8480
  default_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipProtectedQueryResultConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8481
+ job_log_status: typing.Optional[builtins.str] = None,
7347
8482
  payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipPaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7348
8483
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
7349
8484
  ) -> None:
@@ -7351,7 +8486,9 @@ class CfnMembershipProps:
7351
8486
 
7352
8487
  :param collaboration_identifier: The unique ID for the associated collaboration.
7353
8488
  :param query_log_status: An indicator as to whether query logging has been enabled or disabled for the membership. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
8489
+ :param default_job_result_configuration: The default job result configuration for the membership.
7354
8490
  :param default_result_configuration: The default protected query result configuration as specified by the member who can receive results.
8491
+ :param job_log_status: An indicator as to whether job logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
7355
8492
  :param payment_configuration: The payment responsibilities accepted by the collaboration member.
7356
8493
  :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.
7357
8494
 
@@ -7369,6 +8506,17 @@ class CfnMembershipProps:
7369
8506
  query_log_status="queryLogStatus",
7370
8507
 
7371
8508
  # the properties below are optional
8509
+ default_job_result_configuration=cleanrooms.CfnMembership.MembershipProtectedJobResultConfigurationProperty(
8510
+ output_configuration=cleanrooms.CfnMembership.MembershipProtectedJobOutputConfigurationProperty(
8511
+ s3=cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty(
8512
+ bucket="bucket",
8513
+
8514
+ # the properties below are optional
8515
+ key_prefix="keyPrefix"
8516
+ )
8517
+ ),
8518
+ role_arn="roleArn"
8519
+ ),
7372
8520
  default_result_configuration=cleanrooms.CfnMembership.MembershipProtectedQueryResultConfigurationProperty(
7373
8521
  output_configuration=cleanrooms.CfnMembership.MembershipProtectedQueryOutputConfigurationProperty(
7374
8522
  s3=cleanrooms.CfnMembership.ProtectedQueryS3OutputConfigurationProperty(
@@ -7384,12 +8532,16 @@ class CfnMembershipProps:
7384
8532
  # the properties below are optional
7385
8533
  role_arn="roleArn"
7386
8534
  ),
8535
+ job_log_status="jobLogStatus",
7387
8536
  payment_configuration=cleanrooms.CfnMembership.MembershipPaymentConfigurationProperty(
7388
8537
  query_compute=cleanrooms.CfnMembership.MembershipQueryComputePaymentConfigProperty(
7389
8538
  is_responsible=False
7390
8539
  ),
7391
8540
 
7392
8541
  # the properties below are optional
8542
+ job_compute=cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty(
8543
+ is_responsible=False
8544
+ ),
7393
8545
  machine_learning=cleanrooms.CfnMembership.MembershipMLPaymentConfigProperty(
7394
8546
  model_inference=cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty(
7395
8547
  is_responsible=False
@@ -7409,15 +8561,21 @@ class CfnMembershipProps:
7409
8561
  type_hints = typing.get_type_hints(_typecheckingstub__2a7030966bdb99200cf7aff97662a2ef1e02754d2c014bc030475065ea06e0da)
7410
8562
  check_type(argname="argument collaboration_identifier", value=collaboration_identifier, expected_type=type_hints["collaboration_identifier"])
7411
8563
  check_type(argname="argument query_log_status", value=query_log_status, expected_type=type_hints["query_log_status"])
8564
+ check_type(argname="argument default_job_result_configuration", value=default_job_result_configuration, expected_type=type_hints["default_job_result_configuration"])
7412
8565
  check_type(argname="argument default_result_configuration", value=default_result_configuration, expected_type=type_hints["default_result_configuration"])
8566
+ check_type(argname="argument job_log_status", value=job_log_status, expected_type=type_hints["job_log_status"])
7413
8567
  check_type(argname="argument payment_configuration", value=payment_configuration, expected_type=type_hints["payment_configuration"])
7414
8568
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
7415
8569
  self._values: typing.Dict[builtins.str, typing.Any] = {
7416
8570
  "collaboration_identifier": collaboration_identifier,
7417
8571
  "query_log_status": query_log_status,
7418
8572
  }
8573
+ if default_job_result_configuration is not None:
8574
+ self._values["default_job_result_configuration"] = default_job_result_configuration
7419
8575
  if default_result_configuration is not None:
7420
8576
  self._values["default_result_configuration"] = default_result_configuration
8577
+ if job_log_status is not None:
8578
+ self._values["job_log_status"] = job_log_status
7421
8579
  if payment_configuration is not None:
7422
8580
  self._values["payment_configuration"] = payment_configuration
7423
8581
  if tags is not None:
@@ -7445,6 +8603,17 @@ class CfnMembershipProps:
7445
8603
  assert result is not None, "Required property 'query_log_status' is missing"
7446
8604
  return typing.cast(builtins.str, result)
7447
8605
 
8606
+ @builtins.property
8607
+ def default_job_result_configuration(
8608
+ self,
8609
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMembership.MembershipProtectedJobResultConfigurationProperty]]:
8610
+ '''The default job result configuration for the membership.
8611
+
8612
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-defaultjobresultconfiguration
8613
+ '''
8614
+ result = self._values.get("default_job_result_configuration")
8615
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMembership.MembershipProtectedJobResultConfigurationProperty]], result)
8616
+
7448
8617
  @builtins.property
7449
8618
  def default_result_configuration(
7450
8619
  self,
@@ -7456,6 +8625,17 @@ class CfnMembershipProps:
7456
8625
  result = self._values.get("default_result_configuration")
7457
8626
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMembership.MembershipProtectedQueryResultConfigurationProperty]], result)
7458
8627
 
8628
+ @builtins.property
8629
+ def job_log_status(self) -> typing.Optional[builtins.str]:
8630
+ '''An indicator as to whether job logging has been enabled or disabled for the collaboration.
8631
+
8632
+ When ``ENABLED`` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
8633
+
8634
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-joblogstatus
8635
+ '''
8636
+ result = self._values.get("job_log_status")
8637
+ return typing.cast(typing.Optional[builtins.str], result)
8638
+
7459
8639
  @builtins.property
7460
8640
  def payment_configuration(
7461
8641
  self,
@@ -7964,6 +9144,8 @@ def _typecheckingstub__0e650aead4f74afeaf90193249293bee92f9a4eb687f4f9678e1a1368
7964
9144
  source: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceProperty, typing.Dict[builtins.str, typing.Any]]],
7965
9145
  analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7966
9146
  description: typing.Optional[builtins.str] = None,
9147
+ schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSchemaProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9148
+ source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7967
9149
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
7968
9150
  ) -> None:
7969
9151
  """Type checking stubs"""
@@ -8017,6 +9199,18 @@ def _typecheckingstub__a8ea0f1530d49d0cf3ea112be450d6887b42e42d18ffdc9233aac3656
8017
9199
  """Type checking stubs"""
8018
9200
  pass
8019
9201
 
9202
+ def _typecheckingstub__b08707b577f4e2e4847fc726614c034787b0608c33e3b6db3ed058d8262f49f5(
9203
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.AnalysisSchemaProperty]],
9204
+ ) -> None:
9205
+ """Type checking stubs"""
9206
+ pass
9207
+
9208
+ def _typecheckingstub__9971674aa89ce0d927eab26c4a51b41fc5fd99b53e08ed11b02d3b3b8d184899(
9209
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.AnalysisSourceMetadataProperty]],
9210
+ ) -> None:
9211
+ """Type checking stubs"""
9212
+ pass
9213
+
8020
9214
  def _typecheckingstub__b6d8c0e267965c3e8d9449c75e721dc4e1bccb98212af3c5be762ebb7322d8e8(
8021
9215
  value: typing.Optional[typing.List[_CfnTag_f6864754]],
8022
9216
  ) -> None:
@@ -8039,9 +9233,56 @@ def _typecheckingstub__8f1f3d4aa401aad65536409e9f991c86250c627594c1b918fe7c42b5a
8039
9233
  """Type checking stubs"""
8040
9234
  pass
8041
9235
 
9236
+ def _typecheckingstub__142df4b782054f1f02b59fba238cf11ed294493aa487afe8597ffefc23299578(
9237
+ *,
9238
+ artifacts: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty, typing.Dict[builtins.str, typing.Any]]],
9239
+ ) -> None:
9240
+ """Type checking stubs"""
9241
+ pass
9242
+
8042
9243
  def _typecheckingstub__bbdd92f3241147ec8ad458564c84f6695d3a3e85f93b5190554663d6327c512f(
8043
9244
  *,
8044
- text: builtins.str,
9245
+ artifacts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9246
+ text: typing.Optional[builtins.str] = None,
9247
+ ) -> None:
9248
+ """Type checking stubs"""
9249
+ pass
9250
+
9251
+ def _typecheckingstub__987e835d80cb906f68846a5d130091f8db0105378671d39598489b7cabd5fb36(
9252
+ *,
9253
+ entry_point_hash: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.HashProperty, typing.Dict[builtins.str, typing.Any]]],
9254
+ additional_artifact_hashes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.HashProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
9255
+ ) -> None:
9256
+ """Type checking stubs"""
9257
+ pass
9258
+
9259
+ def _typecheckingstub__7f833b582ec423809f565e96fc9ba5d49349ac881791d343e35df1673b1c9644(
9260
+ *,
9261
+ location: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.S3LocationProperty, typing.Dict[builtins.str, typing.Any]]],
9262
+ ) -> None:
9263
+ """Type checking stubs"""
9264
+ pass
9265
+
9266
+ def _typecheckingstub__de78ae9ecad686157204e702611c0cf015331e3aa099f1e87ab18d5cd854abfb(
9267
+ *,
9268
+ entry_point: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisTemplateArtifactProperty, typing.Dict[builtins.str, typing.Any]]],
9269
+ role_arn: builtins.str,
9270
+ additional_artifacts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisTemplateArtifactProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
9271
+ ) -> None:
9272
+ """Type checking stubs"""
9273
+ pass
9274
+
9275
+ def _typecheckingstub__43be85fff22ad377febb791857a9bfd90b262e37e83d363df6adfb5783ea6cb5(
9276
+ *,
9277
+ sha256: typing.Optional[builtins.str] = None,
9278
+ ) -> None:
9279
+ """Type checking stubs"""
9280
+ pass
9281
+
9282
+ def _typecheckingstub__7bb4aaebbf6530b26619974d56993c72a085bd8e9326904d3e54412c155e81e3(
9283
+ *,
9284
+ bucket: builtins.str,
9285
+ key: builtins.str,
8045
9286
  ) -> None:
8046
9287
  """Type checking stubs"""
8047
9288
  pass
@@ -8054,6 +9295,8 @@ def _typecheckingstub__e1c797e3fa5f8683aa0eb66424f00b6b29c5014d5c45e7771fe0c5b1e
8054
9295
  source: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceProperty, typing.Dict[builtins.str, typing.Any]]],
8055
9296
  analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
8056
9297
  description: typing.Optional[builtins.str] = None,
9298
+ schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSchemaProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9299
+ source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8057
9300
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
8058
9301
  ) -> None:
8059
9302
  """Type checking stubs"""
@@ -8073,6 +9316,7 @@ def _typecheckingstub__a8995527da9ce4212caf3c1fdf601e4947c02ff1e364e92811ac8635b
8073
9316
  creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MLMemberAbilitiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8074
9317
  creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8075
9318
  data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.DataEncryptionMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9319
+ job_log_status: typing.Optional[builtins.str] = None,
8076
9320
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
8077
9321
  ) -> None:
8078
9322
  """Type checking stubs"""
@@ -8150,6 +9394,12 @@ def _typecheckingstub__a86b18a30aac6a5afc1830c4adb282d4f0f3199f7c3d3ce99ffb24dad
8150
9394
  """Type checking stubs"""
8151
9395
  pass
8152
9396
 
9397
+ def _typecheckingstub__b4417cba39dba6b058b8e9e8165e109039205858f8f1e7237cc3fa2e9f60ee5c(
9398
+ value: typing.Optional[builtins.str],
9399
+ ) -> None:
9400
+ """Type checking stubs"""
9401
+ pass
9402
+
8153
9403
  def _typecheckingstub__06877122efbe5bc41c92999ba727597f48590c383378ee73a94c91fe43305e60(
8154
9404
  value: typing.Optional[typing.List[_CfnTag_f6864754]],
8155
9405
  ) -> None:
@@ -8166,6 +9416,13 @@ def _typecheckingstub__b1d5c25162d0eabd19a06fd0a1ec26adcd8d8a0d12434d6ee8fbec8e2
8166
9416
  """Type checking stubs"""
8167
9417
  pass
8168
9418
 
9419
+ def _typecheckingstub__c083b467c80242022df99766953c94b800010fa09b9890251c092ef48906a8d6(
9420
+ *,
9421
+ is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
9422
+ ) -> None:
9423
+ """Type checking stubs"""
9424
+ pass
9425
+
8169
9426
  def _typecheckingstub__1d12c181790032dcf002dcacb31cb4e50bd00d2ab068f38065b4ad7d1319d80c(
8170
9427
  *,
8171
9428
  custom_ml_member_abilities: typing.Sequence[builtins.str],
@@ -8209,6 +9466,7 @@ def _typecheckingstub__35cebaf540e2e0f273400ebe690d288c30c23dab0b643fcadc0b6fa47
8209
9466
  def _typecheckingstub__4bb111eda28dfc76cbd93dac49286726320cc654bfb530550f97b9ec4cf32cbf(
8210
9467
  *,
8211
9468
  query_compute: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.QueryComputePaymentConfigProperty, typing.Dict[builtins.str, typing.Any]]],
9469
+ job_compute: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.JobComputePaymentConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8212
9470
  machine_learning: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MLPaymentConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8213
9471
  ) -> None:
8214
9472
  """Type checking stubs"""
@@ -8233,6 +9491,7 @@ def _typecheckingstub__2049291a9933df94c4258b33838a3aa8100d0214a4519c3d84e6d70ed
8233
9491
  creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MLMemberAbilitiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8234
9492
  creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8235
9493
  data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.DataEncryptionMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9494
+ job_log_status: typing.Optional[builtins.str] = None,
8236
9495
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
8237
9496
  ) -> None:
8238
9497
  """Type checking stubs"""
@@ -8248,6 +9507,7 @@ def _typecheckingstub__6da68c3fc7e3c0674ddb5e2082cfb964074dd6f86f1df6dfcede15001
8248
9507
  table_reference: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.TableReferenceProperty, typing.Dict[builtins.str, typing.Any]]],
8249
9508
  analysis_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.AnalysisRuleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
8250
9509
  description: typing.Optional[builtins.str] = None,
9510
+ selected_analysis_methods: typing.Optional[typing.Sequence[builtins.str]] = None,
8251
9511
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
8252
9512
  ) -> None:
8253
9513
  """Type checking stubs"""
@@ -8301,6 +9561,12 @@ def _typecheckingstub__1c8634d59e391cfec8341b7e4b408bb2c2335c7e17e4ff15bc5f5d8ab
8301
9561
  """Type checking stubs"""
8302
9562
  pass
8303
9563
 
9564
+ def _typecheckingstub__8c04ca44ac5848879bc3057033050f0e47ffad283431a7189392ca761ec64d2d(
9565
+ value: typing.Optional[typing.List[builtins.str]],
9566
+ ) -> None:
9567
+ """Type checking stubs"""
9568
+ pass
9569
+
8304
9570
  def _typecheckingstub__b3a9395564381a20388411d14ffd2bda7a4d604b2cf7bf643f5e5bd129bdd0f0(
8305
9571
  value: typing.Optional[typing.List[_CfnTag_f6864754]],
8306
9572
  ) -> None:
@@ -8589,6 +9855,7 @@ def _typecheckingstub__881d5bc014e7a9ce8400d21437644071526768629f4ac0f4414f60ba9
8589
9855
  table_reference: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.TableReferenceProperty, typing.Dict[builtins.str, typing.Any]]],
8590
9856
  analysis_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.AnalysisRuleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
8591
9857
  description: typing.Optional[builtins.str] = None,
9858
+ selected_analysis_methods: typing.Optional[typing.Sequence[builtins.str]] = None,
8592
9859
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
8593
9860
  ) -> None:
8594
9861
  """Type checking stubs"""
@@ -8794,7 +10061,9 @@ def _typecheckingstub__74d43efdc8d8359f9de6878ad0f2d25ff79e584d96e5ca863178e6f14
8794
10061
  *,
8795
10062
  collaboration_identifier: builtins.str,
8796
10063
  query_log_status: builtins.str,
10064
+ default_job_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipProtectedJobResultConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8797
10065
  default_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipProtectedQueryResultConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
10066
+ job_log_status: typing.Optional[builtins.str] = None,
8798
10067
  payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipPaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8799
10068
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
8800
10069
  ) -> None:
@@ -8825,12 +10094,24 @@ def _typecheckingstub__bee80a156c452c78946d81f28dfee88d47d5702e2d1eeb7a5c7aeb167
8825
10094
  """Type checking stubs"""
8826
10095
  pass
8827
10096
 
10097
+ def _typecheckingstub__fae73e4481dcc5cfeba1d7ce37a48095412d812d6a76939d24017d3e50e600fb(
10098
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMembership.MembershipProtectedJobResultConfigurationProperty]],
10099
+ ) -> None:
10100
+ """Type checking stubs"""
10101
+ pass
10102
+
8828
10103
  def _typecheckingstub__ad055649202ffbf3de067877d88fa96b564e1efb0b59d9afaceb04f351ce0c65(
8829
10104
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMembership.MembershipProtectedQueryResultConfigurationProperty]],
8830
10105
  ) -> None:
8831
10106
  """Type checking stubs"""
8832
10107
  pass
8833
10108
 
10109
+ def _typecheckingstub__38062eee31563e49c149bef3fc9159c7dcbe0d1c37a73eb1b26fde91bcde4dd9(
10110
+ value: typing.Optional[builtins.str],
10111
+ ) -> None:
10112
+ """Type checking stubs"""
10113
+ pass
10114
+
8834
10115
  def _typecheckingstub__8f2d4b43043fdc1c0f794c725e0fa34d3d42d2b231edc34464fcc237ea7aa6d6(
8835
10116
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMembership.MembershipPaymentConfigurationProperty]],
8836
10117
  ) -> None:
@@ -8843,6 +10124,13 @@ def _typecheckingstub__efad84033de32d67e94b9ac23a8d3176e7fc904203e000dac066b2879
8843
10124
  """Type checking stubs"""
8844
10125
  pass
8845
10126
 
10127
+ def _typecheckingstub__e65ed6ced5134c54f82464bc8236090d903d3f26a591c4dc337a7344c43ce7e8(
10128
+ *,
10129
+ is_responsible: typing.Union[builtins.bool, _IResolvable_da3f097b],
10130
+ ) -> None:
10131
+ """Type checking stubs"""
10132
+ pass
10133
+
8846
10134
  def _typecheckingstub__13dd2d08b2612b2890adb3362ea4e5bebe48abd3cfb27c026a48fcd95bd347dd(
8847
10135
  *,
8848
10136
  model_inference: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipModelInferencePaymentConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -8868,11 +10156,27 @@ def _typecheckingstub__8e5c7b5216c60ffcb694e1961e057ff77a03ba6ae0c1cd13b03497dc0
8868
10156
  def _typecheckingstub__ff9b623af3a2e12d6db7063d2191f9dad178b00c5e761d332496d6065f45dfe6(
8869
10157
  *,
8870
10158
  query_compute: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipQueryComputePaymentConfigProperty, typing.Dict[builtins.str, typing.Any]]],
10159
+ job_compute: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipJobComputePaymentConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8871
10160
  machine_learning: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipMLPaymentConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8872
10161
  ) -> None:
8873
10162
  """Type checking stubs"""
8874
10163
  pass
8875
10164
 
10165
+ def _typecheckingstub__04b0307caf7eb009735af65a413fe8c877c870d384cffc49ef1a36d9699ba548(
10166
+ *,
10167
+ s3: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.ProtectedJobS3OutputConfigurationInputProperty, typing.Dict[builtins.str, typing.Any]]],
10168
+ ) -> None:
10169
+ """Type checking stubs"""
10170
+ pass
10171
+
10172
+ def _typecheckingstub__b28ab623b930079e7e4df6a230e428f58f7ad919a987f38ecf686a4238ab5b47(
10173
+ *,
10174
+ output_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipProtectedJobOutputConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
10175
+ role_arn: builtins.str,
10176
+ ) -> None:
10177
+ """Type checking stubs"""
10178
+ pass
10179
+
8876
10180
  def _typecheckingstub__95a2754aa7d946646d057afbcf1d05c839a09b522b0215f8c6ff427a564f624b(
8877
10181
  *,
8878
10182
  s3: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.ProtectedQueryS3OutputConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
@@ -8895,6 +10199,14 @@ def _typecheckingstub__3a0b18d278e5a5581d13248fe664b26d08f194e496fc961110d71d330
8895
10199
  """Type checking stubs"""
8896
10200
  pass
8897
10201
 
10202
+ def _typecheckingstub__d3e8066041ab5d5ba65ac44f96738cb04449874735750f11b6331de6bf9fda0c(
10203
+ *,
10204
+ bucket: builtins.str,
10205
+ key_prefix: typing.Optional[builtins.str] = None,
10206
+ ) -> None:
10207
+ """Type checking stubs"""
10208
+ pass
10209
+
8898
10210
  def _typecheckingstub__a9188eb901d25d30e10ffe45a67a0477e30fc05a712c633d687872210f716c3a(
8899
10211
  *,
8900
10212
  bucket: builtins.str,
@@ -8909,7 +10221,9 @@ def _typecheckingstub__2a7030966bdb99200cf7aff97662a2ef1e02754d2c014bc030475065e
8909
10221
  *,
8910
10222
  collaboration_identifier: builtins.str,
8911
10223
  query_log_status: builtins.str,
10224
+ default_job_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipProtectedJobResultConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8912
10225
  default_result_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipProtectedQueryResultConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
10226
+ job_log_status: typing.Optional[builtins.str] = None,
8913
10227
  payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMembership.MembershipPaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8914
10228
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
8915
10229
  ) -> None: