aws-sdk-cleanrooms 1.34.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -488,7 +488,7 @@ module Aws::CleanRooms
488
488
  # resp.collaboration_analysis_templates[0].source.text #=> String
489
489
  # resp.collaboration_analysis_templates[0].analysis_parameters #=> Array
490
490
  # resp.collaboration_analysis_templates[0].analysis_parameters[0].name #=> String
491
- # resp.collaboration_analysis_templates[0].analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
491
+ # resp.collaboration_analysis_templates[0].analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE", "BINARY", "BYTE", "CHARACTER", "DOUBLE", "FLOAT", "INT", "LONG", "NUMERIC", "SHORT", "STRING", "TIMESTAMP_LTZ", "TIMESTAMP_NTZ", "TINYINT"
492
492
  # resp.collaboration_analysis_templates[0].analysis_parameters[0].default_value #=> String
493
493
  # resp.collaboration_analysis_templates[0].validations #=> Array
494
494
  # resp.collaboration_analysis_templates[0].validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
@@ -713,7 +713,7 @@ module Aws::CleanRooms
713
713
  # analysis_parameters: [
714
714
  # {
715
715
  # name: "ParameterName", # required
716
- # type: "SMALLINT", # required, accepts SMALLINT, INTEGER, BIGINT, DECIMAL, REAL, DOUBLE_PRECISION, BOOLEAN, CHAR, VARCHAR, DATE, TIMESTAMP, TIMESTAMPTZ, TIME, TIMETZ, VARBYTE
716
+ # type: "SMALLINT", # required, accepts SMALLINT, INTEGER, BIGINT, DECIMAL, REAL, DOUBLE_PRECISION, BOOLEAN, CHAR, VARCHAR, DATE, TIMESTAMP, TIMESTAMPTZ, TIME, TIMETZ, VARBYTE, BINARY, BYTE, CHARACTER, DOUBLE, FLOAT, INT, LONG, NUMERIC, SHORT, STRING, TIMESTAMP_LTZ, TIMESTAMP_NTZ, TINYINT
717
717
  # default_value: "ParameterValue",
718
718
  # },
719
719
  # ],
@@ -737,7 +737,7 @@ module Aws::CleanRooms
737
737
  # resp.analysis_template.source.text #=> String
738
738
  # resp.analysis_template.analysis_parameters #=> Array
739
739
  # resp.analysis_template.analysis_parameters[0].name #=> String
740
- # resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
740
+ # resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE", "BINARY", "BYTE", "CHARACTER", "DOUBLE", "FLOAT", "INT", "LONG", "NUMERIC", "SHORT", "STRING", "TIMESTAMP_LTZ", "TIMESTAMP_NTZ", "TINYINT"
741
741
  # resp.analysis_template.analysis_parameters[0].default_value #=> String
742
742
  # resp.analysis_template.validations #=> Array
743
743
  # resp.analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
@@ -770,6 +770,17 @@ module Aws::CleanRooms
770
770
  # @option params [required, Array<String>] :creator_member_abilities
771
771
  # The abilities granted to the collaboration creator.
772
772
  #
773
+ # @option params [Types::MLMemberAbilities] :creator_ml_member_abilities
774
+ # The ML abilities granted to the collaboration creator.
775
+ #
776
+ # Custom ML modeling is in beta release and is subject to change. For
777
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon Web
778
+ # Services Service Terms][1].
779
+ #
780
+ #
781
+ #
782
+ # [1]: https://aws.amazon.com/service-terms/
783
+ #
773
784
  # @option params [required, String] :creator_display_name
774
785
  # The display name of the collaboration creator.
775
786
  #
@@ -795,6 +806,9 @@ module Aws::CleanRooms
795
806
  # paying for query compute costs, then the member who can query is the
796
807
  # default payer.
797
808
  #
809
+ # @option params [String] :analytics_engine
810
+ # The analytics engine.
811
+ #
798
812
  # @return [Types::CreateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
799
813
  #
800
814
  # * {Types::CreateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -806,17 +820,31 @@ module Aws::CleanRooms
806
820
  # {
807
821
  # account_id: "AccountId", # required
808
822
  # member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS
823
+ # ml_member_abilities: {
824
+ # custom_ml_member_abilities: ["CAN_RECEIVE_MODEL_OUTPUT"], # required, accepts CAN_RECEIVE_MODEL_OUTPUT, CAN_RECEIVE_INFERENCE_OUTPUT
825
+ # },
809
826
  # display_name: "DisplayName", # required
810
827
  # payment_configuration: {
811
828
  # query_compute: { # required
812
829
  # is_responsible: false, # required
813
830
  # },
831
+ # machine_learning: {
832
+ # model_training: {
833
+ # is_responsible: false, # required
834
+ # },
835
+ # model_inference: {
836
+ # is_responsible: false, # required
837
+ # },
838
+ # },
814
839
  # },
815
840
  # },
816
841
  # ],
817
842
  # name: "CollaborationName", # required
818
843
  # description: "CollaborationDescription", # required
819
844
  # creator_member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS
845
+ # creator_ml_member_abilities: {
846
+ # custom_ml_member_abilities: ["CAN_RECEIVE_MODEL_OUTPUT"], # required, accepts CAN_RECEIVE_MODEL_OUTPUT, CAN_RECEIVE_INFERENCE_OUTPUT
847
+ # },
820
848
  # creator_display_name: "DisplayName", # required
821
849
  # data_encryption_metadata: {
822
850
  # allow_cleartext: false, # required
@@ -832,7 +860,16 @@ module Aws::CleanRooms
832
860
  # query_compute: { # required
833
861
  # is_responsible: false, # required
834
862
  # },
863
+ # machine_learning: {
864
+ # model_training: {
865
+ # is_responsible: false, # required
866
+ # },
867
+ # model_inference: {
868
+ # is_responsible: false, # required
869
+ # },
870
+ # },
835
871
  # },
872
+ # analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
836
873
  # })
837
874
  #
838
875
  # @example Response structure
@@ -853,6 +890,7 @@ module Aws::CleanRooms
853
890
  # resp.collaboration.data_encryption_metadata.allow_joins_on_columns_with_different_names #=> Boolean
854
891
  # resp.collaboration.data_encryption_metadata.preserve_nulls #=> Boolean
855
892
  # resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
893
+ # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
856
894
  #
857
895
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaboration AWS API Documentation
858
896
  #
@@ -1476,6 +1514,7 @@ module Aws::CleanRooms
1476
1514
  # result_format: "CSV", # required, accepts CSV, PARQUET
1477
1515
  # bucket: "ProtectedQueryS3OutputConfigurationBucketString", # required
1478
1516
  # key_prefix: "KeyPrefix",
1517
+ # single_file_output: false,
1479
1518
  # },
1480
1519
  # },
1481
1520
  # role_arn: "RoleArn",
@@ -1484,6 +1523,14 @@ module Aws::CleanRooms
1484
1523
  # query_compute: { # required
1485
1524
  # is_responsible: false, # required
1486
1525
  # },
1526
+ # machine_learning: {
1527
+ # model_training: {
1528
+ # is_responsible: false, # required
1529
+ # },
1530
+ # model_inference: {
1531
+ # is_responsible: false, # required
1532
+ # },
1533
+ # },
1487
1534
  # },
1488
1535
  # })
1489
1536
  #
@@ -1501,12 +1548,17 @@ module Aws::CleanRooms
1501
1548
  # resp.membership.status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
1502
1549
  # resp.membership.member_abilities #=> Array
1503
1550
  # resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
1551
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities #=> Array
1552
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
1504
1553
  # resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
1505
1554
  # resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
1506
1555
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
1507
1556
  # resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
1557
+ # resp.membership.default_result_configuration.output_configuration.s3.single_file_output #=> Boolean
1508
1558
  # resp.membership.default_result_configuration.role_arn #=> String
1509
1559
  # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
1560
+ # resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
1561
+ # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
1510
1562
  #
1511
1563
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership AWS API Documentation
1512
1564
  #
@@ -1956,7 +2008,7 @@ module Aws::CleanRooms
1956
2008
  # resp.analysis_template.source.text #=> String
1957
2009
  # resp.analysis_template.analysis_parameters #=> Array
1958
2010
  # resp.analysis_template.analysis_parameters[0].name #=> String
1959
- # resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
2011
+ # resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE", "BINARY", "BYTE", "CHARACTER", "DOUBLE", "FLOAT", "INT", "LONG", "NUMERIC", "SHORT", "STRING", "TIMESTAMP_LTZ", "TIMESTAMP_NTZ", "TINYINT"
1960
2012
  # resp.analysis_template.analysis_parameters[0].default_value #=> String
1961
2013
  # resp.analysis_template.validations #=> Array
1962
2014
  # resp.analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
@@ -2006,6 +2058,7 @@ module Aws::CleanRooms
2006
2058
  # resp.collaboration.data_encryption_metadata.allow_joins_on_columns_with_different_names #=> Boolean
2007
2059
  # resp.collaboration.data_encryption_metadata.preserve_nulls #=> Boolean
2008
2060
  # resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
2061
+ # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
2009
2062
  #
2010
2063
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaboration AWS API Documentation
2011
2064
  #
@@ -2054,7 +2107,7 @@ module Aws::CleanRooms
2054
2107
  # resp.collaboration_analysis_template.source.text #=> String
2055
2108
  # resp.collaboration_analysis_template.analysis_parameters #=> Array
2056
2109
  # resp.collaboration_analysis_template.analysis_parameters[0].name #=> String
2057
- # resp.collaboration_analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
2110
+ # resp.collaboration_analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE", "BINARY", "BYTE", "CHARACTER", "DOUBLE", "FLOAT", "INT", "LONG", "NUMERIC", "SHORT", "STRING", "TIMESTAMP_LTZ", "TIMESTAMP_NTZ", "TINYINT"
2058
2111
  # resp.collaboration_analysis_template.analysis_parameters[0].default_value #=> String
2059
2112
  # resp.collaboration_analysis_template.validations #=> Array
2060
2113
  # resp.collaboration_analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
@@ -2589,12 +2642,17 @@ module Aws::CleanRooms
2589
2642
  # resp.membership.status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
2590
2643
  # resp.membership.member_abilities #=> Array
2591
2644
  # resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
2645
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities #=> Array
2646
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
2592
2647
  # resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
2593
2648
  # resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
2594
2649
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
2595
2650
  # resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
2651
+ # resp.membership.default_result_configuration.output_configuration.s3.single_file_output #=> Boolean
2596
2652
  # resp.membership.default_result_configuration.role_arn #=> String
2597
2653
  # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
2654
+ # resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
2655
+ # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
2598
2656
  #
2599
2657
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership AWS API Documentation
2600
2658
  #
@@ -2683,8 +2741,10 @@ module Aws::CleanRooms
2683
2741
  # resp.protected_query.result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
2684
2742
  # resp.protected_query.result_configuration.output_configuration.s3.bucket #=> String
2685
2743
  # resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
2744
+ # resp.protected_query.result_configuration.output_configuration.s3.single_file_output #=> Boolean
2686
2745
  # resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
2687
2746
  # resp.protected_query.statistics.total_duration_in_millis #=> Integer
2747
+ # resp.protected_query.statistics.billed_resource_utilization.units #=> Float
2688
2748
  # resp.protected_query.result.output.s3.location #=> String
2689
2749
  # resp.protected_query.result.output.member_list #=> Array
2690
2750
  # resp.protected_query.result.output.member_list[0].account_id #=> String
@@ -2696,6 +2756,8 @@ module Aws::CleanRooms
2696
2756
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].user_contribution_limit #=> Integer
2697
2757
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].min_column_value #=> Float
2698
2758
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].max_column_value #=> Float
2759
+ # resp.protected_query.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
2760
+ # resp.protected_query.compute_configuration.worker.number #=> Integer
2699
2761
  #
2700
2762
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetProtectedQuery AWS API Documentation
2701
2763
  #
@@ -2857,11 +2919,13 @@ module Aws::CleanRooms
2857
2919
  # The identifier for a membership resource.
2858
2920
  #
2859
2921
  # @option params [String] :next_token
2860
- # The token value retrieved from a previous call to access the next page
2861
- # of results.
2922
+ # The pagination token that's used to fetch the next set of results.
2862
2923
  #
2863
2924
  # @option params [Integer] :max_results
2864
- # The maximum size of the results that is returned per call.
2925
+ # The maximum number of results that are returned for an API request
2926
+ # call. The service chooses a default number if you don't set one. The
2927
+ # service might return a `nextToken` even if the `maxResults` value
2928
+ # has not been met.
2865
2929
  #
2866
2930
  # @return [Types::ListAnalysisTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2867
2931
  #
@@ -2909,11 +2973,13 @@ module Aws::CleanRooms
2909
2973
  # belong to. Currently accepts collaboration ID.
2910
2974
  #
2911
2975
  # @option params [String] :next_token
2912
- # The token value retrieved from a previous call to access the next page
2913
- # of results.
2976
+ # The pagination token that's used to fetch the next set of results.
2914
2977
  #
2915
2978
  # @option params [Integer] :max_results
2916
- # The maximum size of the results that is returned per call.
2979
+ # The maximum number of results that are returned for an API request
2980
+ # call. The service chooses a default number if you don't set one. The
2981
+ # service might return a `nextToken` even if the `maxResults` value
2982
+ # has not been met.
2917
2983
  #
2918
2984
  # @return [Types::ListCollaborationAnalysisTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2919
2985
  #
@@ -2960,11 +3026,13 @@ module Aws::CleanRooms
2960
3026
  # model association belongs to. Accepts a collaboration ID.
2961
3027
  #
2962
3028
  # @option params [String] :next_token
2963
- # The token value retrieved from a previous call to access the next page
2964
- # of results.
3029
+ # The pagination token that's used to fetch the next set of results.
2965
3030
  #
2966
3031
  # @option params [Integer] :max_results
2967
- # The maximum size of the results that is returned per call.
3032
+ # The maximum number of results that are returned for an API request
3033
+ # call. The service chooses a default number if you don't set one. The
3034
+ # service might return a `nextToken` even if the `maxResults` value
3035
+ # has not been met.
2968
3036
  #
2969
3037
  # @return [Types::ListCollaborationConfiguredAudienceModelAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2970
3038
  #
@@ -3066,13 +3134,13 @@ module Aws::CleanRooms
3066
3134
  # A unique identifier for one of your collaborations.
3067
3135
  #
3068
3136
  # @option params [String] :next_token
3069
- # The token value retrieved from a previous call to access the next page
3070
- # of results.
3137
+ # The pagination token that's used to fetch the next set of results.
3071
3138
  #
3072
3139
  # @option params [Integer] :max_results
3073
- # The maximum size of the results that is returned per call. Service
3074
- # chooses a default if it has not been set. Service may return a
3075
- # nextToken even if the maximum results has not been met.
3140
+ # The maximum number of results that are returned for an API request
3141
+ # call. The service chooses a default number if you don't set one. The
3142
+ # service might return a `nextToken` even if the `maxResults` value
3143
+ # has not been met.
3076
3144
  #
3077
3145
  # @return [Types::ListCollaborationPrivacyBudgetTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3078
3146
  #
@@ -3122,13 +3190,13 @@ module Aws::CleanRooms
3122
3190
  # Specifies the type of the privacy budget.
3123
3191
  #
3124
3192
  # @option params [Integer] :max_results
3125
- # The maximum size of the results that is returned per call. Service
3126
- # chooses a default if it has not been set. Service may return a
3127
- # nextToken even if the maximum results has not been met.
3193
+ # The maximum number of results that are returned for an API request
3194
+ # call. The service chooses a default number if you don't set one. The
3195
+ # service might return a `nextToken` even if the `maxResults` value
3196
+ # has not been met.
3128
3197
  #
3129
3198
  # @option params [String] :next_token
3130
- # The token value retrieved from a previous call to access the next page
3131
- # of results.
3199
+ # The pagination token that's used to fetch the next set of results.
3132
3200
  #
3133
3201
  # @return [Types::ListCollaborationPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3134
3202
  #
@@ -3178,13 +3246,13 @@ module Aws::CleanRooms
3178
3246
  # invited to.
3179
3247
  #
3180
3248
  # @option params [String] :next_token
3181
- # The token value retrieved from a previous call to access the next page
3182
- # of results.
3249
+ # The pagination token that's used to fetch the next set of results.
3183
3250
  #
3184
3251
  # @option params [Integer] :max_results
3185
- # The maximum size of the results that is returned per call. Service
3186
- # chooses a default if it has not been set. Service may return a
3187
- # nextToken even if the maximum results has not been met.
3252
+ # The maximum number of results that are returned for an API request
3253
+ # call. The service chooses a default number if you don't set one. The
3254
+ # service might return a `nextToken` even if the `maxResults` value
3255
+ # has not been met.
3188
3256
  #
3189
3257
  # @option params [String] :member_status
3190
3258
  # The caller's status in a collaboration.
@@ -3218,6 +3286,7 @@ module Aws::CleanRooms
3218
3286
  # resp.collaboration_list[0].member_status #=> String, one of "INVITED", "ACTIVE", "LEFT", "REMOVED"
3219
3287
  # resp.collaboration_list[0].membership_id #=> String
3220
3288
  # resp.collaboration_list[0].membership_arn #=> String
3289
+ # resp.collaboration_list[0].analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
3221
3290
  #
3222
3291
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborations AWS API Documentation
3223
3292
  #
@@ -3236,13 +3305,13 @@ module Aws::CleanRooms
3236
3305
  # audience model associations that you want to retrieve.
3237
3306
  #
3238
3307
  # @option params [String] :next_token
3239
- # The token value retrieved from a previous call to access the next page
3240
- # of results.
3308
+ # The pagination token that's used to fetch the next set of results.
3241
3309
  #
3242
3310
  # @option params [Integer] :max_results
3243
- # The maximum size of the results that is returned per call. Service
3244
- # chooses a default if it has not been set. Service may return a
3245
- # nextToken even if the maximum results has not been met.
3311
+ # The maximum number of results that are returned for an API request
3312
+ # call. The service chooses a default number if you don't set one. The
3313
+ # service might return a `nextToken` even if the `maxResults` value
3314
+ # has not been met.
3246
3315
  #
3247
3316
  # @return [Types::ListConfiguredAudienceModelAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3248
3317
  #
@@ -3291,11 +3360,13 @@ module Aws::CleanRooms
3291
3360
  # associations for. Currently accepts the membership ID.
3292
3361
  #
3293
3362
  # @option params [String] :next_token
3294
- # The token value retrieved from a previous call to access the next page
3295
- # of results.
3363
+ # The pagination token that's used to fetch the next set of results.
3296
3364
  #
3297
3365
  # @option params [Integer] :max_results
3298
- # The maximum size of the results that is returned per call.
3366
+ # The maximum number of results that are returned for an API request
3367
+ # call. The service chooses a default number if you don't set one. The
3368
+ # service might return a `nextToken` even if the `maxResults` value
3369
+ # has not been met.
3299
3370
  #
3300
3371
  # @return [Types::ListConfiguredTableAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3301
3372
  #
@@ -3337,11 +3408,13 @@ module Aws::CleanRooms
3337
3408
  # Lists configured tables.
3338
3409
  #
3339
3410
  # @option params [String] :next_token
3340
- # The token value retrieved from a previous call to access the next page
3341
- # of results.
3411
+ # The pagination token that's used to fetch the next set of results.
3342
3412
  #
3343
3413
  # @option params [Integer] :max_results
3344
- # The maximum size of the results that is returned per call.
3414
+ # The maximum number of results that are returned for an API request
3415
+ # call. The service chooses a default number if you don't set one. The
3416
+ # service might return a `nextToken` even if the `maxResults` value
3417
+ # has not been met.
3345
3418
  #
3346
3419
  # @return [Types::ListConfiguredTablesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3347
3420
  #
@@ -3496,11 +3569,13 @@ module Aws::CleanRooms
3496
3569
  # The identifier of the collaboration in which the members are listed.
3497
3570
  #
3498
3571
  # @option params [String] :next_token
3499
- # The token value retrieved from a previous call to access the next page
3500
- # of results.
3572
+ # The pagination token that's used to fetch the next set of results.
3501
3573
  #
3502
3574
  # @option params [Integer] :max_results
3503
- # The maximum size of the results that is returned per call.
3575
+ # The maximum number of results that are returned for an API request
3576
+ # call. The service chooses a default number if you don't set one. The
3577
+ # service might return a `nextToken` even if the `maxResults` value
3578
+ # has not been met.
3504
3579
  #
3505
3580
  # @return [Types::ListMembersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3506
3581
  #
@@ -3526,11 +3601,15 @@ module Aws::CleanRooms
3526
3601
  # resp.member_summaries[0].display_name #=> String
3527
3602
  # resp.member_summaries[0].abilities #=> Array
3528
3603
  # resp.member_summaries[0].abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
3604
+ # resp.member_summaries[0].ml_abilities.custom_ml_member_abilities #=> Array
3605
+ # resp.member_summaries[0].ml_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
3529
3606
  # resp.member_summaries[0].create_time #=> Time
3530
3607
  # resp.member_summaries[0].update_time #=> Time
3531
3608
  # resp.member_summaries[0].membership_id #=> String
3532
3609
  # resp.member_summaries[0].membership_arn #=> String
3533
3610
  # resp.member_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
3611
+ # resp.member_summaries[0].payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
3612
+ # resp.member_summaries[0].payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
3534
3613
  #
3535
3614
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembers AWS API Documentation
3536
3615
  #
@@ -3544,11 +3623,13 @@ module Aws::CleanRooms
3544
3623
  # Lists all memberships resources within the caller's account.
3545
3624
  #
3546
3625
  # @option params [String] :next_token
3547
- # The token value retrieved from a previous call to access the next page
3548
- # of results.
3626
+ # The pagination token that's used to fetch the next set of results.
3549
3627
  #
3550
3628
  # @option params [Integer] :max_results
3551
- # The maximum size of the results that is returned per call.
3629
+ # The maximum number of results that are returned for an API request
3630
+ # call. The service chooses a default number if you don't set one. The
3631
+ # service might return a `nextToken` even if the `maxResults` value
3632
+ # has not been met.
3552
3633
  #
3553
3634
  # @option params [String] :status
3554
3635
  # A filter which will return only memberships in the specified status.
@@ -3584,7 +3665,11 @@ module Aws::CleanRooms
3584
3665
  # resp.membership_summaries[0].status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
3585
3666
  # resp.membership_summaries[0].member_abilities #=> Array
3586
3667
  # resp.membership_summaries[0].member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
3668
+ # resp.membership_summaries[0].ml_member_abilities.custom_ml_member_abilities #=> Array
3669
+ # resp.membership_summaries[0].ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
3587
3670
  # resp.membership_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
3671
+ # resp.membership_summaries[0].payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
3672
+ # resp.membership_summaries[0].payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
3588
3673
  #
3589
3674
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMemberships AWS API Documentation
3590
3675
  #
@@ -3604,13 +3689,13 @@ module Aws::CleanRooms
3604
3689
  # this membership belongs to. Accepts a membership ID.
3605
3690
  #
3606
3691
  # @option params [String] :next_token
3607
- # The token value retrieved from a previous call to access the next page
3608
- # of results.
3692
+ # The pagination token that's used to fetch the next set of results.
3609
3693
  #
3610
3694
  # @option params [Integer] :max_results
3611
- # The maximum size of the results that is returned per call. Service
3612
- # chooses a default if it has not been set. Service may return a
3613
- # nextToken even if the maximum results has not been met.
3695
+ # The maximum number of results that are returned for an API request
3696
+ # call. The service chooses a default number if you don't set one. The
3697
+ # service might return a `nextToken` even if the `maxResults` value
3698
+ # has not been met.
3614
3699
  #
3615
3700
  # @return [Types::ListPrivacyBudgetTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3616
3701
  #
@@ -3662,13 +3747,13 @@ module Aws::CleanRooms
3662
3747
  # The privacy budget type.
3663
3748
  #
3664
3749
  # @option params [String] :next_token
3665
- # The token value retrieved from a previous call to access the next page
3666
- # of results.
3750
+ # The pagination token that's used to fetch the next set of results.
3667
3751
  #
3668
3752
  # @option params [Integer] :max_results
3669
- # The maximum size of the results that is returned per call. Service
3670
- # chooses a default if it has not been set. Service may return a
3671
- # nextToken even if the maximum results has not been met.
3753
+ # The maximum number of results that are returned for an API request
3754
+ # call. The service chooses a default number if you don't set one. The
3755
+ # service might return a `nextToken` even if the `maxResults` value
3756
+ # has not been met.
3672
3757
  #
3673
3758
  # @return [Types::ListPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3674
3759
  #
@@ -3724,13 +3809,13 @@ module Aws::CleanRooms
3724
3809
  # A filter on the status of the protected query.
3725
3810
  #
3726
3811
  # @option params [String] :next_token
3727
- # The token value retrieved from a previous call to access the next page
3728
- # of results.
3812
+ # The pagination token that's used to fetch the next set of results.
3729
3813
  #
3730
3814
  # @option params [Integer] :max_results
3731
- # The maximum size of the results that is returned per call. Service
3732
- # chooses a default if it has not been set. Service can return a
3733
- # nextToken even if the maximum results has not been met.
3815
+ # The maximum number of results that are returned for an API request
3816
+ # call. The service chooses a default number if you don't set one. The
3817
+ # service might return a `nextToken` even if the `maxResults` value
3818
+ # has not been met.
3734
3819
  #
3735
3820
  # @return [Types::ListProtectedQueriesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3736
3821
  #
@@ -3778,15 +3863,16 @@ module Aws::CleanRooms
3778
3863
  # Currently accepts a collaboration ID.
3779
3864
  #
3780
3865
  # @option params [String] :schema_type
3781
- # If present, filter schemas by schema type. The only valid schema type
3782
- # is currently `TABLE`.
3866
+ # If present, filter schemas by schema type.
3783
3867
  #
3784
3868
  # @option params [String] :next_token
3785
- # The token value retrieved from a previous call to access the next page
3786
- # of results.
3869
+ # The pagination token that's used to fetch the next set of results.
3787
3870
  #
3788
3871
  # @option params [Integer] :max_results
3789
- # The maximum size of the results that is returned per call.
3872
+ # The maximum number of results that are returned for an API request
3873
+ # call. The service chooses a default number if you don't set one. The
3874
+ # service might return a `nextToken` even if the `maxResults` value
3875
+ # has not been met.
3790
3876
  #
3791
3877
  # @return [Types::ListSchemasOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3792
3878
  #
@@ -3949,6 +4035,9 @@ module Aws::CleanRooms
3949
4035
  # @option params [Types::ProtectedQueryResultConfiguration] :result_configuration
3950
4036
  # The details needed to write the query results.
3951
4037
  #
4038
+ # @option params [Types::ComputeConfiguration] :compute_configuration
4039
+ # The compute configuration for the protected query.
4040
+ #
3952
4041
  # @return [Types::StartProtectedQueryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3953
4042
  #
3954
4043
  # * {Types::StartProtectedQueryOutput#protected_query #protected_query} => Types::ProtectedQuery
@@ -3971,12 +4060,19 @@ module Aws::CleanRooms
3971
4060
  # result_format: "CSV", # required, accepts CSV, PARQUET
3972
4061
  # bucket: "ProtectedQueryS3OutputConfigurationBucketString", # required
3973
4062
  # key_prefix: "KeyPrefix",
4063
+ # single_file_output: false,
3974
4064
  # },
3975
4065
  # member: {
3976
4066
  # account_id: "AccountId", # required
3977
4067
  # },
3978
4068
  # },
3979
4069
  # },
4070
+ # compute_configuration: {
4071
+ # worker: {
4072
+ # type: "CR.1X", # accepts CR.1X, CR.4X
4073
+ # number: 1,
4074
+ # },
4075
+ # },
3980
4076
  # })
3981
4077
  #
3982
4078
  # @example Response structure
@@ -3993,8 +4089,10 @@ module Aws::CleanRooms
3993
4089
  # resp.protected_query.result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
3994
4090
  # resp.protected_query.result_configuration.output_configuration.s3.bucket #=> String
3995
4091
  # resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
4092
+ # resp.protected_query.result_configuration.output_configuration.s3.single_file_output #=> Boolean
3996
4093
  # resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
3997
4094
  # resp.protected_query.statistics.total_duration_in_millis #=> Integer
4095
+ # resp.protected_query.statistics.billed_resource_utilization.units #=> Float
3998
4096
  # resp.protected_query.result.output.s3.location #=> String
3999
4097
  # resp.protected_query.result.output.member_list #=> Array
4000
4098
  # resp.protected_query.result.output.member_list[0].account_id #=> String
@@ -4006,6 +4104,8 @@ module Aws::CleanRooms
4006
4104
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].user_contribution_limit #=> Integer
4007
4105
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].min_column_value #=> Float
4008
4106
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].max_column_value #=> Float
4107
+ # resp.protected_query.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
4108
+ # resp.protected_query.compute_configuration.worker.number #=> Integer
4009
4109
  #
4010
4110
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedQuery AWS API Documentation
4011
4111
  #
@@ -4113,7 +4213,7 @@ module Aws::CleanRooms
4113
4213
  # resp.analysis_template.source.text #=> String
4114
4214
  # resp.analysis_template.analysis_parameters #=> Array
4115
4215
  # resp.analysis_template.analysis_parameters[0].name #=> String
4116
- # resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
4216
+ # resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE", "BINARY", "BYTE", "CHARACTER", "DOUBLE", "FLOAT", "INT", "LONG", "NUMERIC", "SHORT", "STRING", "TIMESTAMP_LTZ", "TIMESTAMP_NTZ", "TINYINT"
4117
4217
  # resp.analysis_template.analysis_parameters[0].default_value #=> String
4118
4218
  # resp.analysis_template.validations #=> Array
4119
4219
  # resp.analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
@@ -4173,6 +4273,7 @@ module Aws::CleanRooms
4173
4273
  # resp.collaboration.data_encryption_metadata.allow_joins_on_columns_with_different_names #=> Boolean
4174
4274
  # resp.collaboration.data_encryption_metadata.preserve_nulls #=> Boolean
4175
4275
  # resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
4276
+ # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
4176
4277
  #
4177
4278
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaboration AWS API Documentation
4178
4279
  #
@@ -4681,6 +4782,7 @@ module Aws::CleanRooms
4681
4782
  # result_format: "CSV", # required, accepts CSV, PARQUET
4682
4783
  # bucket: "ProtectedQueryS3OutputConfigurationBucketString", # required
4683
4784
  # key_prefix: "KeyPrefix",
4785
+ # single_file_output: false,
4684
4786
  # },
4685
4787
  # },
4686
4788
  # role_arn: "RoleArn",
@@ -4701,12 +4803,17 @@ module Aws::CleanRooms
4701
4803
  # resp.membership.status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
4702
4804
  # resp.membership.member_abilities #=> Array
4703
4805
  # resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
4806
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities #=> Array
4807
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
4704
4808
  # resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
4705
4809
  # resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
4706
4810
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
4707
4811
  # resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
4812
+ # resp.membership.default_result_configuration.output_configuration.s3.single_file_output #=> Boolean
4708
4813
  # resp.membership.default_result_configuration.role_arn #=> String
4709
4814
  # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
4815
+ # resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
4816
+ # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
4710
4817
  #
4711
4818
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership AWS API Documentation
4712
4819
  #
@@ -4815,8 +4922,10 @@ module Aws::CleanRooms
4815
4922
  # resp.protected_query.result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
4816
4923
  # resp.protected_query.result_configuration.output_configuration.s3.bucket #=> String
4817
4924
  # resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
4925
+ # resp.protected_query.result_configuration.output_configuration.s3.single_file_output #=> Boolean
4818
4926
  # resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
4819
4927
  # resp.protected_query.statistics.total_duration_in_millis #=> Integer
4928
+ # resp.protected_query.statistics.billed_resource_utilization.units #=> Float
4820
4929
  # resp.protected_query.result.output.s3.location #=> String
4821
4930
  # resp.protected_query.result.output.member_list #=> Array
4822
4931
  # resp.protected_query.result.output.member_list[0].account_id #=> String
@@ -4828,6 +4937,8 @@ module Aws::CleanRooms
4828
4937
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].user_contribution_limit #=> Integer
4829
4938
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].min_column_value #=> Float
4830
4939
  # resp.protected_query.differential_privacy.sensitivity_parameters[0].max_column_value #=> Float
4940
+ # resp.protected_query.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
4941
+ # resp.protected_query.compute_configuration.worker.number #=> Integer
4831
4942
  #
4832
4943
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateProtectedQuery AWS API Documentation
4833
4944
  #
@@ -4856,7 +4967,7 @@ module Aws::CleanRooms
4856
4967
  tracer: tracer
4857
4968
  )
4858
4969
  context[:gem_name] = 'aws-sdk-cleanrooms'
4859
- context[:gem_version] = '1.34.0'
4970
+ context[:gem_version] = '1.36.0'
4860
4971
  Seahorse::Client::Request.new(handlers, context)
4861
4972
  end
4862
4973