aws-sdk-cleanrooms 1.35.0 → 1.37.0

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.
@@ -615,6 +615,35 @@ module Aws::CleanRooms
615
615
  include Aws::Structure
616
616
  end
617
617
 
618
+ # A reference to a table within Athena.
619
+ #
620
+ # @!attribute [rw] work_group
621
+ # The workgroup of the Athena table reference.
622
+ # @return [String]
623
+ #
624
+ # @!attribute [rw] output_location
625
+ # The output location for the Athena table.
626
+ # @return [String]
627
+ #
628
+ # @!attribute [rw] database_name
629
+ # The database name.
630
+ # @return [String]
631
+ #
632
+ # @!attribute [rw] table_name
633
+ # The table reference.
634
+ # @return [String]
635
+ #
636
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AthenaTableReference AWS API Documentation
637
+ #
638
+ class AthenaTableReference < Struct.new(
639
+ :work_group,
640
+ :output_location,
641
+ :database_name,
642
+ :table_name)
643
+ SENSITIVE = []
644
+ include Aws::Structure
645
+ end
646
+
618
647
  # Details of errors thrown by the call to retrieve multiple analysis
619
648
  # templates within a collaboration by their identifiers.
620
649
  #
@@ -1581,8 +1610,7 @@ module Aws::CleanRooms
1581
1610
  include Aws::Structure
1582
1611
  end
1583
1612
 
1584
- # A column within a schema relation, derived from the underlying Glue
1585
- # table.
1613
+ # A column within a schema relation, derived from the underlying table.
1586
1614
  #
1587
1615
  # @!attribute [rw] name
1588
1616
  # The name of the column.
@@ -1818,7 +1846,7 @@ module Aws::CleanRooms
1818
1846
  # @return [String]
1819
1847
  #
1820
1848
  # @!attribute [rw] table_reference
1821
- # The Glue table that this configured table represents.
1849
+ # The table that this configured table represents.
1822
1850
  # @return [Types::TableReference]
1823
1851
  #
1824
1852
  # @!attribute [rw] create_time
@@ -2431,6 +2459,18 @@ module Aws::CleanRooms
2431
2459
  # The abilities granted to the collaboration creator.
2432
2460
  # @return [Array<String>]
2433
2461
  #
2462
+ # @!attribute [rw] creator_ml_member_abilities
2463
+ # The ML abilities granted to the collaboration creator.
2464
+ #
2465
+ # Custom ML modeling is in beta release and is subject to change. For
2466
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon
2467
+ # Web Services Service Terms][1].
2468
+ #
2469
+ #
2470
+ #
2471
+ # [1]: https://aws.amazon.com/service-terms/
2472
+ # @return [Types::MLMemberAbilities]
2473
+ #
2434
2474
  # @!attribute [rw] creator_display_name
2435
2475
  # The display name of the collaboration creator.
2436
2476
  # @return [String]
@@ -2472,6 +2512,7 @@ module Aws::CleanRooms
2472
2512
  :name,
2473
2513
  :description,
2474
2514
  :creator_member_abilities,
2515
+ :creator_ml_member_abilities,
2475
2516
  :creator_display_name,
2476
2517
  :data_encryption_metadata,
2477
2518
  :query_log_status,
@@ -2705,7 +2746,7 @@ module Aws::CleanRooms
2705
2746
  # @return [String]
2706
2747
  #
2707
2748
  # @!attribute [rw] table_reference
2708
- # A reference to the Glue table being configured.
2749
+ # A reference to the table being configured.
2709
2750
  # @return [Types::TableReference]
2710
2751
  #
2711
2752
  # @!attribute [rw] allowed_columns
@@ -5388,6 +5429,59 @@ module Aws::CleanRooms
5388
5429
  include Aws::Structure
5389
5430
  end
5390
5431
 
5432
+ # The ML member abilities for a collaboration member.
5433
+ #
5434
+ # Custom ML modeling is in beta release and is subject to change. For
5435
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon Web
5436
+ # Services Service Terms][1].
5437
+ #
5438
+ #
5439
+ #
5440
+ # [1]: https://aws.amazon.com/service-terms/
5441
+ #
5442
+ # @!attribute [rw] custom_ml_member_abilities
5443
+ # The custom ML member abilities for a collaboration member. The
5444
+ # inference feature is not available in the custom ML modeling beta.
5445
+ #
5446
+ # Custom ML modeling is in beta release and is subject to change. For
5447
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon
5448
+ # Web Services Service Terms][1].
5449
+ #
5450
+ #
5451
+ #
5452
+ # [1]: https://aws.amazon.com/service-terms/
5453
+ # @return [Array<String>]
5454
+ #
5455
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLMemberAbilities AWS API Documentation
5456
+ #
5457
+ class MLMemberAbilities < Struct.new(
5458
+ :custom_ml_member_abilities)
5459
+ SENSITIVE = []
5460
+ include Aws::Structure
5461
+ end
5462
+
5463
+ # An object representing the collaboration member's machine learning
5464
+ # payment responsibilities set by the collaboration creator.
5465
+ #
5466
+ # @!attribute [rw] model_training
5467
+ # The payment responsibilities accepted by the member for model
5468
+ # training.
5469
+ # @return [Types::ModelTrainingPaymentConfig]
5470
+ #
5471
+ # @!attribute [rw] model_inference
5472
+ # The payment responsibilities accepted by the member for model
5473
+ # inference.
5474
+ # @return [Types::ModelInferencePaymentConfig]
5475
+ #
5476
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLPaymentConfig AWS API Documentation
5477
+ #
5478
+ class MLPaymentConfig < Struct.new(
5479
+ :model_training,
5480
+ :model_inference)
5481
+ SENSITIVE = []
5482
+ include Aws::Structure
5483
+ end
5484
+
5391
5485
  # Basic metadata used to construct a new member.
5392
5486
  #
5393
5487
  # @!attribute [rw] account_id
@@ -5399,6 +5493,18 @@ module Aws::CleanRooms
5399
5493
  # The abilities granted to the collaboration member.
5400
5494
  # @return [Array<String>]
5401
5495
  #
5496
+ # @!attribute [rw] ml_member_abilities
5497
+ # The ML abilities granted to the collaboration member.
5498
+ #
5499
+ # Custom ML modeling is in beta release and is subject to change. For
5500
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon
5501
+ # Web Services Service Terms][1].
5502
+ #
5503
+ #
5504
+ #
5505
+ # [1]: https://aws.amazon.com/service-terms/
5506
+ # @return [Types::MLMemberAbilities]
5507
+ #
5402
5508
  # @!attribute [rw] display_name
5403
5509
  # The member's display name.
5404
5510
  # @return [String]
@@ -5417,6 +5523,7 @@ module Aws::CleanRooms
5417
5523
  class MemberSpecification < Struct.new(
5418
5524
  :account_id,
5419
5525
  :member_abilities,
5526
+ :ml_member_abilities,
5420
5527
  :display_name,
5421
5528
  :payment_configuration)
5422
5529
  SENSITIVE = []
@@ -5442,6 +5549,18 @@ module Aws::CleanRooms
5442
5549
  # The abilities granted to the collaboration member.
5443
5550
  # @return [Array<String>]
5444
5551
  #
5552
+ # @!attribute [rw] ml_abilities
5553
+ # Provides a summary of the ML abilities for the collaboration member.
5554
+ #
5555
+ # Custom ML modeling is in beta release and is subject to change. For
5556
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon
5557
+ # Web Services Service Terms][1].
5558
+ #
5559
+ #
5560
+ #
5561
+ # [1]: https://aws.amazon.com/service-terms/
5562
+ # @return [Types::MLMemberAbilities]
5563
+ #
5445
5564
  # @!attribute [rw] create_time
5446
5565
  # The time when the member was created.
5447
5566
  # @return [Time]
@@ -5470,6 +5589,7 @@ module Aws::CleanRooms
5470
5589
  :status,
5471
5590
  :display_name,
5472
5591
  :abilities,
5592
+ :ml_abilities,
5473
5593
  :create_time,
5474
5594
  :update_time,
5475
5595
  :membership_id,
@@ -5526,6 +5646,19 @@ module Aws::CleanRooms
5526
5646
  # The abilities granted to the collaboration member.
5527
5647
  # @return [Array<String>]
5528
5648
  #
5649
+ # @!attribute [rw] ml_member_abilities
5650
+ # Specifies the ML member abilities that are granted to a
5651
+ # collaboration member.
5652
+ #
5653
+ # Custom ML modeling is in beta release and is subject to change. For
5654
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon
5655
+ # Web Services Service Terms][1].
5656
+ #
5657
+ #
5658
+ #
5659
+ # [1]: https://aws.amazon.com/service-terms/
5660
+ # @return [Types::MLMemberAbilities]
5661
+ #
5529
5662
  # @!attribute [rw] query_log_status
5530
5663
  # An indicator as to whether query logging has been enabled or
5531
5664
  # disabled for the membership.
@@ -5554,6 +5687,7 @@ module Aws::CleanRooms
5554
5687
  :update_time,
5555
5688
  :status,
5556
5689
  :member_abilities,
5690
+ :ml_member_abilities,
5557
5691
  :query_log_status,
5558
5692
  :default_result_configuration,
5559
5693
  :payment_configuration)
@@ -5561,6 +5695,86 @@ module Aws::CleanRooms
5561
5695
  include Aws::Structure
5562
5696
  end
5563
5697
 
5698
+ # An object representing the collaboration member's machine learning
5699
+ # payment responsibilities set by the collaboration creator.
5700
+ #
5701
+ # @!attribute [rw] model_training
5702
+ # The payment responsibilities accepted by the member for model
5703
+ # training.
5704
+ # @return [Types::MembershipModelTrainingPaymentConfig]
5705
+ #
5706
+ # @!attribute [rw] model_inference
5707
+ # The payment responsibilities accepted by the member for model
5708
+ # inference.
5709
+ # @return [Types::MembershipModelInferencePaymentConfig]
5710
+ #
5711
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipMLPaymentConfig AWS API Documentation
5712
+ #
5713
+ class MembershipMLPaymentConfig < Struct.new(
5714
+ :model_training,
5715
+ :model_inference)
5716
+ SENSITIVE = []
5717
+ include Aws::Structure
5718
+ end
5719
+
5720
+ # An object representing the collaboration member's model inference
5721
+ # payment responsibilities set by the collaboration creator.
5722
+ #
5723
+ # @!attribute [rw] is_responsible
5724
+ # Indicates whether the collaboration member has accepted to pay for
5725
+ # model inference costs (`TRUE`) or has not accepted to pay for model
5726
+ # inference costs (`FALSE`).
5727
+ #
5728
+ # If the collaboration creator has not specified anyone to pay for
5729
+ # model inference costs, then the member who can query is the default
5730
+ # payer.
5731
+ #
5732
+ # An error message is returned for the following reasons:
5733
+ #
5734
+ # * If you set the value to `FALSE` but you are responsible to pay for
5735
+ # model inference costs.
5736
+ #
5737
+ # * If you set the value to `TRUE` but you are not responsible to pay
5738
+ # for model inference costs.
5739
+ # @return [Boolean]
5740
+ #
5741
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipModelInferencePaymentConfig AWS API Documentation
5742
+ #
5743
+ class MembershipModelInferencePaymentConfig < Struct.new(
5744
+ :is_responsible)
5745
+ SENSITIVE = []
5746
+ include Aws::Structure
5747
+ end
5748
+
5749
+ # An object representing the collaboration member's model training
5750
+ # payment responsibilities set by the collaboration creator.
5751
+ #
5752
+ # @!attribute [rw] is_responsible
5753
+ # Indicates whether the collaboration member has accepted to pay for
5754
+ # model training costs (`TRUE`) or has not accepted to pay for model
5755
+ # training costs (`FALSE`).
5756
+ #
5757
+ # If the collaboration creator has not specified anyone to pay for
5758
+ # model training costs, then the member who can query is the default
5759
+ # payer.
5760
+ #
5761
+ # An error message is returned for the following reasons:
5762
+ #
5763
+ # * If you set the value to `FALSE` but you are responsible to pay for
5764
+ # model training costs.
5765
+ #
5766
+ # * If you set the value to `TRUE` but you are not responsible to pay
5767
+ # for model training costs.
5768
+ # @return [Boolean]
5769
+ #
5770
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipModelTrainingPaymentConfig AWS API Documentation
5771
+ #
5772
+ class MembershipModelTrainingPaymentConfig < Struct.new(
5773
+ :is_responsible)
5774
+ SENSITIVE = []
5775
+ include Aws::Structure
5776
+ end
5777
+
5564
5778
  # An object representing the payment responsibilities accepted by the
5565
5779
  # collaboration member.
5566
5780
  #
@@ -5569,10 +5783,16 @@ module Aws::CleanRooms
5569
5783
  # for query compute costs.
5570
5784
  # @return [Types::MembershipQueryComputePaymentConfig]
5571
5785
  #
5786
+ # @!attribute [rw] machine_learning
5787
+ # The payment responsibilities accepted by the collaboration member
5788
+ # for machine learning costs.
5789
+ # @return [Types::MembershipMLPaymentConfig]
5790
+ #
5572
5791
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipPaymentConfiguration AWS API Documentation
5573
5792
  #
5574
5793
  class MembershipPaymentConfiguration < Struct.new(
5575
- :query_compute)
5794
+ :query_compute,
5795
+ :machine_learning)
5576
5796
  SENSITIVE = []
5577
5797
  include Aws::Structure
5578
5798
  end
@@ -5698,6 +5918,18 @@ module Aws::CleanRooms
5698
5918
  # The abilities granted to the collaboration member.
5699
5919
  # @return [Array<String>]
5700
5920
  #
5921
+ # @!attribute [rw] ml_member_abilities
5922
+ # Provides a summary of the ML abilities for the collaboration member.
5923
+ #
5924
+ # Custom ML modeling is in beta release and is subject to change. For
5925
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon
5926
+ # Web Services Service Terms][1].
5927
+ #
5928
+ #
5929
+ #
5930
+ # [1]: https://aws.amazon.com/service-terms/
5931
+ # @return [Types::MLMemberAbilities]
5932
+ #
5701
5933
  # @!attribute [rw] payment_configuration
5702
5934
  # The payment responsibilities accepted by the collaboration member.
5703
5935
  # @return [Types::MembershipPaymentConfiguration]
@@ -5716,11 +5948,66 @@ module Aws::CleanRooms
5716
5948
  :update_time,
5717
5949
  :status,
5718
5950
  :member_abilities,
5951
+ :ml_member_abilities,
5719
5952
  :payment_configuration)
5720
5953
  SENSITIVE = []
5721
5954
  include Aws::Structure
5722
5955
  end
5723
5956
 
5957
+ # An object representing the collaboration member's model inference
5958
+ # payment responsibilities set by the collaboration creator.
5959
+ #
5960
+ # @!attribute [rw] is_responsible
5961
+ # Indicates whether the collaboration creator has configured the
5962
+ # collaboration member to pay for model inference costs (`TRUE`) or
5963
+ # has not configured the collaboration member to pay for model
5964
+ # inference costs (`FALSE`).
5965
+ #
5966
+ # Exactly one member can be configured to pay for model inference
5967
+ # costs. An error is returned if the collaboration creator sets a
5968
+ # `TRUE` value for more than one member in the collaboration.
5969
+ #
5970
+ # If the collaboration creator hasn't specified anyone as the member
5971
+ # paying for model inference costs, then the member who can query is
5972
+ # the default payer. An error is returned if the collaboration creator
5973
+ # sets a `FALSE` value for the member who can query.
5974
+ # @return [Boolean]
5975
+ #
5976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ModelInferencePaymentConfig AWS API Documentation
5977
+ #
5978
+ class ModelInferencePaymentConfig < Struct.new(
5979
+ :is_responsible)
5980
+ SENSITIVE = []
5981
+ include Aws::Structure
5982
+ end
5983
+
5984
+ # An object representing the collaboration member's model training
5985
+ # payment responsibilities set by the collaboration creator.
5986
+ #
5987
+ # @!attribute [rw] is_responsible
5988
+ # Indicates whether the collaboration creator has configured the
5989
+ # collaboration member to pay for model training costs (`TRUE`) or has
5990
+ # not configured the collaboration member to pay for model training
5991
+ # costs (`FALSE`).
5992
+ #
5993
+ # Exactly one member can be configured to pay for model training
5994
+ # costs. An error is returned if the collaboration creator sets a
5995
+ # `TRUE` value for more than one member in the collaboration.
5996
+ #
5997
+ # If the collaboration creator hasn't specified anyone as the member
5998
+ # paying for model training costs, then the member who can query is
5999
+ # the default payer. An error is returned if the collaboration creator
6000
+ # sets a `FALSE` value for the member who can query.
6001
+ # @return [Boolean]
6002
+ #
6003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ModelTrainingPaymentConfig AWS API Documentation
6004
+ #
6005
+ class ModelTrainingPaymentConfig < Struct.new(
6006
+ :is_responsible)
6007
+ SENSITIVE = []
6008
+ include Aws::Structure
6009
+ end
6010
+
5724
6011
  # An object representing the collaboration member's payment
5725
6012
  # responsibilities set by the collaboration creator.
5726
6013
  #
@@ -5729,10 +6016,16 @@ module Aws::CleanRooms
5729
6016
  # collaboration creator for query compute costs.
5730
6017
  # @return [Types::QueryComputePaymentConfig]
5731
6018
  #
6019
+ # @!attribute [rw] machine_learning
6020
+ # An object representing the collaboration member's machine learning
6021
+ # payment responsibilities set by the collaboration creator.
6022
+ # @return [Types::MLPaymentConfig]
6023
+ #
5732
6024
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PaymentConfiguration AWS API Documentation
5733
6025
  #
5734
6026
  class PaymentConfiguration < Struct.new(
5735
- :query_compute)
6027
+ :query_compute,
6028
+ :machine_learning)
5736
6029
  SENSITIVE = []
5737
6030
  include Aws::Structure
5738
6031
  end
@@ -6859,6 +7152,92 @@ module Aws::CleanRooms
6859
7152
  include Aws::Structure
6860
7153
  end
6861
7154
 
7155
+ # A reference to a table within Snowflake.
7156
+ #
7157
+ # @!attribute [rw] secret_arn
7158
+ # The secret ARN of the Snowflake table reference.
7159
+ # @return [String]
7160
+ #
7161
+ # @!attribute [rw] account_identifier
7162
+ # The account identifier for the Snowflake table reference.
7163
+ # @return [String]
7164
+ #
7165
+ # @!attribute [rw] database_name
7166
+ # The name of the database the Snowflake table belongs to.
7167
+ # @return [String]
7168
+ #
7169
+ # @!attribute [rw] table_name
7170
+ # The name of the Snowflake table.
7171
+ # @return [String]
7172
+ #
7173
+ # @!attribute [rw] schema_name
7174
+ # The schema name of the Snowflake table reference.
7175
+ # @return [String]
7176
+ #
7177
+ # @!attribute [rw] table_schema
7178
+ # The schema of the Snowflake table.
7179
+ # @return [Types::SnowflakeTableSchema]
7180
+ #
7181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SnowflakeTableReference AWS API Documentation
7182
+ #
7183
+ class SnowflakeTableReference < Struct.new(
7184
+ :secret_arn,
7185
+ :account_identifier,
7186
+ :database_name,
7187
+ :table_name,
7188
+ :schema_name,
7189
+ :table_schema)
7190
+ SENSITIVE = []
7191
+ include Aws::Structure
7192
+ end
7193
+
7194
+ # The schema of a Snowflake table.
7195
+ #
7196
+ # @note SnowflakeTableSchema is a union - when making an API calls you must set exactly one of the members.
7197
+ #
7198
+ # @note SnowflakeTableSchema is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SnowflakeTableSchema corresponding to the set member.
7199
+ #
7200
+ # @!attribute [rw] v1
7201
+ # The schema of a Snowflake table.
7202
+ # @return [Array<Types::SnowflakeTableSchemaV1>]
7203
+ #
7204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SnowflakeTableSchema AWS API Documentation
7205
+ #
7206
+ class SnowflakeTableSchema < Struct.new(
7207
+ :v1,
7208
+ :unknown)
7209
+ SENSITIVE = []
7210
+ include Aws::Structure
7211
+ include Aws::Structure::Union
7212
+
7213
+ class V1 < SnowflakeTableSchema; end
7214
+ class Unknown < SnowflakeTableSchema; end
7215
+ end
7216
+
7217
+ # The Snowflake table schema.
7218
+ #
7219
+ # @!attribute [rw] column_name
7220
+ # The column name.
7221
+ # @return [String]
7222
+ #
7223
+ # @!attribute [rw] column_type
7224
+ # The column's data type. Supported data types: `ARRAY`, `BIGINT`,
7225
+ # `BOOLEAN`, `CHAR`, `DATE`, `DECIMAL`, `DOUBLE`, `DOUBLE PRECISION`,
7226
+ # `FLOAT`, `FLOAT4`, `INT`, `INTEGER`, `MAP`, `NUMERIC`, `NUMBER`,
7227
+ # `REAL`, `SMALLINT`, `STRING`, `TIMESTAMP`, `TIMESTAMP_LTZ`,
7228
+ # `TIMESTAMP_NTZ`, `DATETIME`, `TINYINT`, `VARCHAR`, `TEXT`,
7229
+ # `CHARACTER`.
7230
+ # @return [String]
7231
+ #
7232
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SnowflakeTableSchemaV1 AWS API Documentation
7233
+ #
7234
+ class SnowflakeTableSchemaV1 < Struct.new(
7235
+ :column_name,
7236
+ :column_type)
7237
+ SENSITIVE = []
7238
+ include Aws::Structure
7239
+ end
7240
+
6862
7241
  # @!attribute [rw] type
6863
7242
  # The type of the protected query to be started.
6864
7243
  # @return [String]
@@ -6904,8 +7283,7 @@ module Aws::CleanRooms
6904
7283
  include Aws::Structure
6905
7284
  end
6906
7285
 
6907
- # A pointer to the dataset that underlies this table. Currently, this
6908
- # can only be an Glue table.
7286
+ # A pointer to the dataset that underlies this table.
6909
7287
  #
6910
7288
  # @note TableReference is a union - when making an API calls you must set exactly one of the members.
6911
7289
  #
@@ -6916,16 +7294,30 @@ module Aws::CleanRooms
6916
7294
  # reference.
6917
7295
  # @return [Types::GlueTableReference]
6918
7296
  #
7297
+ # @!attribute [rw] snowflake
7298
+ # If present, a reference to the Snowflake table referred to by this
7299
+ # table reference.
7300
+ # @return [Types::SnowflakeTableReference]
7301
+ #
7302
+ # @!attribute [rw] athena
7303
+ # If present, a reference to the Athena table referred to by this
7304
+ # table reference.
7305
+ # @return [Types::AthenaTableReference]
7306
+ #
6919
7307
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/TableReference AWS API Documentation
6920
7308
  #
6921
7309
  class TableReference < Struct.new(
6922
7310
  :glue,
7311
+ :snowflake,
7312
+ :athena,
6923
7313
  :unknown)
6924
7314
  SENSITIVE = []
6925
7315
  include Aws::Structure
6926
7316
  include Aws::Structure::Union
6927
7317
 
6928
7318
  class Glue < TableReference; end
7319
+ class Snowflake < TableReference; end
7320
+ class Athena < TableReference; end
6929
7321
  class Unknown < TableReference; end
6930
7322
  end
6931
7323
 
@@ -55,7 +55,7 @@ module Aws::CleanRooms
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanrooms/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanrooms/endpoints'
57
57
 
58
- GEM_VERSION = '1.35.0'
58
+ GEM_VERSION = '1.37.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -150,17 +150,31 @@ module Aws
150
150
  {
151
151
  account_id: ::String,
152
152
  member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")],
153
+ ml_member_abilities: {
154
+ custom_ml_member_abilities: Array[("CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT")]
155
+ }?,
153
156
  display_name: ::String,
154
157
  payment_configuration: {
155
158
  query_compute: {
156
159
  is_responsible: bool
157
- }
160
+ },
161
+ machine_learning: {
162
+ model_training: {
163
+ is_responsible: bool
164
+ }?,
165
+ model_inference: {
166
+ is_responsible: bool
167
+ }?
168
+ }?
158
169
  }?
159
170
  },
160
171
  ],
161
172
  name: ::String,
162
173
  description: ::String,
163
174
  creator_member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")],
175
+ ?creator_ml_member_abilities: {
176
+ custom_ml_member_abilities: Array[("CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT")]
177
+ },
164
178
  creator_display_name: ::String,
165
179
  ?data_encryption_metadata: {
166
180
  allow_cleartext: bool,
@@ -173,7 +187,15 @@ module Aws
173
187
  ?creator_payment_configuration: {
174
188
  query_compute: {
175
189
  is_responsible: bool
176
- }
190
+ },
191
+ machine_learning: {
192
+ model_training: {
193
+ is_responsible: bool
194
+ }?,
195
+ model_inference: {
196
+ is_responsible: bool
197
+ }?
198
+ }?
177
199
  },
178
200
  ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
179
201
  ) -> _CreateCollaborationResponseSuccess
@@ -206,6 +228,27 @@ module Aws
206
228
  glue: {
207
229
  table_name: ::String,
208
230
  database_name: ::String
231
+ }?,
232
+ snowflake: {
233
+ secret_arn: ::String,
234
+ account_identifier: ::String,
235
+ database_name: ::String,
236
+ table_name: ::String,
237
+ schema_name: ::String,
238
+ table_schema: {
239
+ v1: Array[
240
+ {
241
+ column_name: ::String,
242
+ column_type: ::String
243
+ },
244
+ ]?
245
+ }
246
+ }?,
247
+ athena: {
248
+ work_group: ::String,
249
+ output_location: ::String?,
250
+ database_name: ::String,
251
+ table_name: ::String
209
252
  }?
210
253
  },
211
254
  allowed_columns: Array[::String],
@@ -373,7 +416,15 @@ module Aws
373
416
  ?payment_configuration: {
374
417
  query_compute: {
375
418
  is_responsible: bool
376
- }
419
+ },
420
+ machine_learning: {
421
+ model_training: {
422
+ is_responsible: bool
423
+ }?,
424
+ model_inference: {
425
+ is_responsible: bool
426
+ }?
427
+ }?
377
428
  }
378
429
  ) -> _CreateMembershipResponseSuccess
379
430
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMembershipResponseSuccess