aws-sdk-cleanroomsml 1.18.0 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -447,6 +447,61 @@ module Aws::CleanRoomsML
447
447
 
448
448
  # @!group API Operations
449
449
 
450
+ # Submits a request to cancel the trained model job.
451
+ #
452
+ # @option params [required, String] :membership_identifier
453
+ # The membership ID of the trained model job that you want to cancel.
454
+ #
455
+ # @option params [required, String] :trained_model_arn
456
+ # The Amazon Resource Name (ARN) of the trained model job that you want
457
+ # to cancel.
458
+ #
459
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
460
+ #
461
+ # @example Request syntax with placeholder values
462
+ #
463
+ # resp = client.cancel_trained_model({
464
+ # membership_identifier: "UUID", # required
465
+ # trained_model_arn: "TrainedModelArn", # required
466
+ # })
467
+ #
468
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CancelTrainedModel AWS API Documentation
469
+ #
470
+ # @overload cancel_trained_model(params = {})
471
+ # @param [Hash] params ({})
472
+ def cancel_trained_model(params = {}, options = {})
473
+ req = build_request(:cancel_trained_model, params)
474
+ req.send_request(options)
475
+ end
476
+
477
+ # Submits a request to cancel a trained model inference job.
478
+ #
479
+ # @option params [required, String] :membership_identifier
480
+ # The membership ID of the trained model inference job that you want to
481
+ # cancel.
482
+ #
483
+ # @option params [required, String] :trained_model_inference_job_arn
484
+ # The Amazon Resource Name (ARN) of the trained model inference job that
485
+ # you want to cancel.
486
+ #
487
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
488
+ #
489
+ # @example Request syntax with placeholder values
490
+ #
491
+ # resp = client.cancel_trained_model_inference_job({
492
+ # membership_identifier: "UUID", # required
493
+ # trained_model_inference_job_arn: "TrainedModelInferenceJobArn", # required
494
+ # })
495
+ #
496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CancelTrainedModelInferenceJob AWS API Documentation
497
+ #
498
+ # @overload cancel_trained_model_inference_job(params = {})
499
+ # @param [Hash] params ({})
500
+ def cancel_trained_model_inference_job(params = {}, options = {})
501
+ req = build_request(:cancel_trained_model_inference_job, params)
502
+ req.send_request(options)
503
+ end
504
+
450
505
  # Defines the information necessary to create an audience model. An
451
506
  # audience model is a machine learning model that Clean Rooms ML trains
452
507
  # to measure similarity between users. Clean Rooms ML manages training
@@ -663,25 +718,26 @@ module Aws::CleanRoomsML
663
718
  req.send_request(options)
664
719
  end
665
720
 
666
- # Defines the information necessary to create a training dataset. In
667
- # Clean Rooms ML, the `TrainingDataset` is metadata that points to a
668
- # Glue table, which is read only during `AudienceModel` creation.
721
+ # Creates a configured model algorithm using a container image stored in
722
+ # an ECR repository.
669
723
  #
670
724
  # @option params [required, String] :name
671
- # The name of the training dataset. This name must be unique in your
672
- # account and region.
725
+ # The name of the configured model algorithm.
726
+ #
727
+ # @option params [String] :description
728
+ # The description of the configured model algorithm.
673
729
  #
674
730
  # @option params [required, String] :role_arn
675
- # The ARN of the IAM role that Clean Rooms ML can assume to read the
676
- # data referred to in the `dataSource` field of each dataset.
731
+ # The Amazon Resource Name (ARN) of the role that is used to access the
732
+ # repository.
677
733
  #
678
- # Passing a role across AWS accounts is not allowed. If you pass a role
679
- # that isn't in your account, you get an `AccessDeniedException` error.
734
+ # @option params [Types::ContainerConfig] :training_container_config
735
+ # Configuration information for the training container, including
736
+ # entrypoints and arguments.
680
737
  #
681
- # @option params [required, Array<Types::Dataset>] :training_data
682
- # An array of information that lists the Dataset objects, which
683
- # specifies the dataset type and details on its location and schema. You
684
- # must provide a role that has read access to these tables.
738
+ # @option params [Types::InferenceContainerConfig] :inference_container_config
739
+ # Configuration information for the inference container that is used
740
+ # when you run an inference job on a configured model algorithm.
685
741
  #
686
742
  # @option params [Hash<String,String>] :tags
687
743
  # The optional metadata that you apply to the resource to help you
@@ -715,450 +771,2065 @@ module Aws::CleanRoomsML
715
771
  # limit of 50 tags. Tags with only the key prefix of aws do not count
716
772
  # against your tags per resource limit.
717
773
  #
718
- # @option params [String] :description
719
- # The description of the training dataset.
774
+ # @option params [String] :kms_key_arn
775
+ # The Amazon Resource Name (ARN) of the KMS key. This key is used to
776
+ # encrypt and decrypt customer-owned data in the configured ML model
777
+ # algorithm and associated data.
720
778
  #
721
- # @return [Types::CreateTrainingDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
779
+ # @return [Types::CreateConfiguredModelAlgorithmResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
722
780
  #
723
- # * {Types::CreateTrainingDatasetResponse#training_dataset_arn #training_dataset_arn} => String
781
+ # * {Types::CreateConfiguredModelAlgorithmResponse#configured_model_algorithm_arn #configured_model_algorithm_arn} => String
724
782
  #
725
783
  # @example Request syntax with placeholder values
726
784
  #
727
- # resp = client.create_training_dataset({
785
+ # resp = client.create_configured_model_algorithm({
728
786
  # name: "NameString", # required
787
+ # description: "ResourceDescription",
729
788
  # role_arn: "IamRoleArn", # required
730
- # training_data: [ # required
731
- # {
732
- # type: "INTERACTIONS", # required, accepts INTERACTIONS
733
- # input_config: { # required
734
- # schema: [ # required
735
- # {
736
- # column_name: "ColumnName", # required
737
- # column_types: ["USER_ID"], # required, accepts USER_ID, ITEM_ID, TIMESTAMP, CATEGORICAL_FEATURE, NUMERICAL_FEATURE
738
- # },
739
- # ],
740
- # data_source: { # required
741
- # glue_data_source: { # required
742
- # table_name: "GlueTableName", # required
743
- # database_name: "GlueDatabaseName", # required
744
- # catalog_id: "AccountId",
745
- # },
746
- # },
789
+ # training_container_config: {
790
+ # image_uri: "AlgorithmImage", # required
791
+ # entrypoint: ["ContainerEntrypointString"],
792
+ # arguments: ["ContainerArgument"],
793
+ # metric_definitions: [
794
+ # {
795
+ # name: "MetricName", # required
796
+ # regex: "MetricRegex", # required
747
797
  # },
748
- # },
749
- # ],
798
+ # ],
799
+ # },
800
+ # inference_container_config: {
801
+ # image_uri: "AlgorithmImage", # required
802
+ # },
750
803
  # tags: {
751
804
  # "TagKey" => "TagValue",
752
805
  # },
753
- # description: "ResourceDescription",
806
+ # kms_key_arn: "KmsKeyArn",
754
807
  # })
755
808
  #
756
809
  # @example Response structure
757
810
  #
758
- # resp.training_dataset_arn #=> String
811
+ # resp.configured_model_algorithm_arn #=> String
759
812
  #
760
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateTrainingDataset AWS API Documentation
813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateConfiguredModelAlgorithm AWS API Documentation
761
814
  #
762
- # @overload create_training_dataset(params = {})
815
+ # @overload create_configured_model_algorithm(params = {})
763
816
  # @param [Hash] params ({})
764
- def create_training_dataset(params = {}, options = {})
765
- req = build_request(:create_training_dataset, params)
817
+ def create_configured_model_algorithm(params = {}, options = {})
818
+ req = build_request(:create_configured_model_algorithm, params)
766
819
  req.send_request(options)
767
820
  end
768
821
 
769
- # Deletes the specified audience generation job, and removes all data
770
- # associated with the job.
822
+ # Associates a configured model algorithm to a collaboration for use by
823
+ # any member of the collaboration.
771
824
  #
772
- # @option params [required, String] :audience_generation_job_arn
773
- # The Amazon Resource Name (ARN) of the audience generation job that you
774
- # want to delete.
825
+ # @option params [required, String] :membership_identifier
826
+ # The membership ID of the member who is associating this configured
827
+ # model algorithm.
775
828
  #
776
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
829
+ # @option params [required, String] :configured_model_algorithm_arn
830
+ # The Amazon Resource Name (ARN) of the configured model algorithm that
831
+ # you want to associate.
777
832
  #
778
- # @example Request syntax with placeholder values
833
+ # @option params [required, String] :name
834
+ # The name of the configured model algorithm association.
779
835
  #
780
- # resp = client.delete_audience_generation_job({
781
- # audience_generation_job_arn: "AudienceGenerationJobArn", # required
782
- # })
836
+ # @option params [String] :description
837
+ # The description of the configured model algorithm association.
783
838
  #
784
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteAudienceGenerationJob AWS API Documentation
839
+ # @option params [Types::PrivacyConfiguration] :privacy_configuration
840
+ # Specifies the privacy configuration information for the configured
841
+ # model algorithm association. This information includes the maximum
842
+ # data size that can be exported.
785
843
  #
786
- # @overload delete_audience_generation_job(params = {})
787
- # @param [Hash] params ({})
788
- def delete_audience_generation_job(params = {}, options = {})
789
- req = build_request(:delete_audience_generation_job, params)
790
- req.send_request(options)
791
- end
792
-
793
- # Specifies an audience model that you want to delete. You can't delete
794
- # an audience model if there are any configured audience models that
795
- # depend on the audience model.
844
+ # @option params [Hash<String,String>] :tags
845
+ # The optional metadata that you apply to the resource to help you
846
+ # categorize and organize them. Each tag consists of a key and an
847
+ # optional value, both of which you define.
796
848
  #
797
- # @option params [required, String] :audience_model_arn
798
- # The Amazon Resource Name (ARN) of the audience model that you want to
799
- # delete.
849
+ # The following basic restrictions apply to tags:
800
850
  #
801
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
851
+ # * Maximum number of tags per resource - 50.
802
852
  #
803
- # @example Request syntax with placeholder values
853
+ # * For each resource, each tag key must be unique, and each tag key can
854
+ # have only one value.
804
855
  #
805
- # resp = client.delete_audience_model({
806
- # audience_model_arn: "AudienceModelArn", # required
807
- # })
856
+ # * Maximum key length - 128 Unicode characters in UTF-8.
808
857
  #
809
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteAudienceModel AWS API Documentation
858
+ # * Maximum value length - 256 Unicode characters in UTF-8.
810
859
  #
811
- # @overload delete_audience_model(params = {})
812
- # @param [Hash] params ({})
813
- def delete_audience_model(params = {}, options = {})
814
- req = build_request(:delete_audience_model, params)
815
- req.send_request(options)
816
- end
817
-
818
- # Deletes the specified configured audience model. You can't delete a
819
- # configured audience model if there are any lookalike models that use
820
- # the configured audience model. If you delete a configured audience
821
- # model, it will be removed from any collaborations that it is
822
- # associated to.
860
+ # * If your tagging schema is used across multiple services and
861
+ # resources, remember that other services may have restrictions on
862
+ # allowed characters. Generally allowed characters are: letters,
863
+ # numbers, and spaces representable in UTF-8, and the following
864
+ # characters: + - = . \_ : / @.
823
865
  #
824
- # @option params [required, String] :configured_audience_model_arn
825
- # The Amazon Resource Name (ARN) of the configured audience model that
826
- # you want to delete.
866
+ # * Tag keys and values are case sensitive.
827
867
  #
828
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
868
+ # * Do not use aws:, AWS:, or any upper or lowercase combination of such
869
+ # as a prefix for keys as it is reserved for AWS use. You cannot edit
870
+ # or delete tag keys with this prefix. Values can have this prefix. If
871
+ # a tag value has aws as its prefix but the key does not, then Clean
872
+ # Rooms ML considers it to be a user tag and will count against the
873
+ # limit of 50 tags. Tags with only the key prefix of aws do not count
874
+ # against your tags per resource limit.
875
+ #
876
+ # @return [Types::CreateConfiguredModelAlgorithmAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
877
+ #
878
+ # * {Types::CreateConfiguredModelAlgorithmAssociationResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
829
879
  #
830
880
  # @example Request syntax with placeholder values
831
881
  #
832
- # resp = client.delete_configured_audience_model({
833
- # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
882
+ # resp = client.create_configured_model_algorithm_association({
883
+ # membership_identifier: "UUID", # required
884
+ # configured_model_algorithm_arn: "ConfiguredModelAlgorithmArn", # required
885
+ # name: "NameString", # required
886
+ # description: "ResourceDescription",
887
+ # privacy_configuration: {
888
+ # policies: { # required
889
+ # trained_models: {
890
+ # container_logs: [
891
+ # {
892
+ # allowed_account_ids: ["String"], # required
893
+ # filter_pattern: "LogsConfigurationPolicyFilterPatternString",
894
+ # },
895
+ # ],
896
+ # container_metrics: {
897
+ # noise_level: "HIGH", # required, accepts HIGH, MEDIUM, LOW, NONE
898
+ # },
899
+ # },
900
+ # trained_model_exports: {
901
+ # max_size: { # required
902
+ # unit: "GB", # required, accepts GB
903
+ # value: 1.0, # required
904
+ # },
905
+ # files_to_export: ["MODEL"], # required, accepts MODEL, OUTPUT
906
+ # },
907
+ # trained_model_inference_jobs: {
908
+ # container_logs: [
909
+ # {
910
+ # allowed_account_ids: ["String"], # required
911
+ # filter_pattern: "LogsConfigurationPolicyFilterPatternString",
912
+ # },
913
+ # ],
914
+ # max_output_size: {
915
+ # unit: "GB", # required, accepts GB
916
+ # value: 1.0, # required
917
+ # },
918
+ # },
919
+ # },
920
+ # },
921
+ # tags: {
922
+ # "TagKey" => "TagValue",
923
+ # },
834
924
  # })
835
925
  #
836
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteConfiguredAudienceModel AWS API Documentation
926
+ # @example Response structure
837
927
  #
838
- # @overload delete_configured_audience_model(params = {})
928
+ # resp.configured_model_algorithm_association_arn #=> String
929
+ #
930
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateConfiguredModelAlgorithmAssociation AWS API Documentation
931
+ #
932
+ # @overload create_configured_model_algorithm_association(params = {})
839
933
  # @param [Hash] params ({})
840
- def delete_configured_audience_model(params = {}, options = {})
841
- req = build_request(:delete_configured_audience_model, params)
934
+ def create_configured_model_algorithm_association(params = {}, options = {})
935
+ req = build_request(:create_configured_model_algorithm_association, params)
842
936
  req.send_request(options)
843
937
  end
844
938
 
845
- # Deletes the specified configured audience model policy.
939
+ # Provides the information to create an ML input channel. An ML input
940
+ # channel is the result of a query that can be used for ML modeling.
846
941
  #
847
- # @option params [required, String] :configured_audience_model_arn
848
- # The Amazon Resource Name (ARN) of the configured audience model policy
849
- # that you want to delete.
942
+ # @option params [required, String] :membership_identifier
943
+ # The membership ID of the member that is creating the ML input channel.
850
944
  #
851
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
945
+ # @option params [required, Array<String>] :configured_model_algorithm_associations
946
+ # The associated configured model algorithms that are necessary to
947
+ # create this ML input channel.
852
948
  #
853
- # @example Request syntax with placeholder values
949
+ # @option params [required, Types::InputChannel] :input_channel
950
+ # The input data that is used to create this ML input channel.
854
951
  #
855
- # resp = client.delete_configured_audience_model_policy({
856
- # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
857
- # })
952
+ # @option params [required, String] :name
953
+ # The name of the ML input channel.
858
954
  #
859
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteConfiguredAudienceModelPolicy AWS API Documentation
955
+ # @option params [required, Integer] :retention_in_days
956
+ # The number of days that the data in the ML input channel is retained.
860
957
  #
861
- # @overload delete_configured_audience_model_policy(params = {})
862
- # @param [Hash] params ({})
863
- def delete_configured_audience_model_policy(params = {}, options = {})
864
- req = build_request(:delete_configured_audience_model_policy, params)
865
- req.send_request(options)
866
- end
867
-
868
- # Specifies a training dataset that you want to delete. You can't
869
- # delete a training dataset if there are any audience models that depend
870
- # on the training dataset. In Clean Rooms ML, the `TrainingDataset` is
871
- # metadata that points to a Glue table, which is read only during
872
- # `AudienceModel` creation. This action deletes the metadata.
958
+ # @option params [String] :description
959
+ # The description of the ML input channel.
873
960
  #
874
- # @option params [required, String] :training_dataset_arn
875
- # The Amazon Resource Name (ARN) of the training dataset that you want
876
- # to delete.
961
+ # @option params [String] :kms_key_arn
962
+ # The Amazon Resource Name (ARN) of the KMS key that is used to access
963
+ # the input channel.
877
964
  #
878
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
965
+ # @option params [Hash<String,String>] :tags
966
+ # The optional metadata that you apply to the resource to help you
967
+ # categorize and organize them. Each tag consists of a key and an
968
+ # optional value, both of which you define.
879
969
  #
880
- # @example Request syntax with placeholder values
970
+ # The following basic restrictions apply to tags:
881
971
  #
882
- # resp = client.delete_training_dataset({
883
- # training_dataset_arn: "TrainingDatasetArn", # required
884
- # })
972
+ # * Maximum number of tags per resource - 50.
885
973
  #
886
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteTrainingDataset AWS API Documentation
974
+ # * For each resource, each tag key must be unique, and each tag key can
975
+ # have only one value.
887
976
  #
888
- # @overload delete_training_dataset(params = {})
889
- # @param [Hash] params ({})
890
- def delete_training_dataset(params = {}, options = {})
891
- req = build_request(:delete_training_dataset, params)
892
- req.send_request(options)
893
- end
894
-
895
- # Returns information about an audience generation job.
977
+ # * Maximum key length - 128 Unicode characters in UTF-8.
896
978
  #
897
- # @option params [required, String] :audience_generation_job_arn
898
- # The Amazon Resource Name (ARN) of the audience generation job that you
899
- # are interested in.
979
+ # * Maximum value length - 256 Unicode characters in UTF-8.
900
980
  #
901
- # @return [Types::GetAudienceGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
981
+ # * If your tagging schema is used across multiple services and
982
+ # resources, remember that other services may have restrictions on
983
+ # allowed characters. Generally allowed characters are: letters,
984
+ # numbers, and spaces representable in UTF-8, and the following
985
+ # characters: + - = . \_ : / @.
902
986
  #
903
- # * {Types::GetAudienceGenerationJobResponse#create_time #create_time} => Time
904
- # * {Types::GetAudienceGenerationJobResponse#update_time #update_time} => Time
905
- # * {Types::GetAudienceGenerationJobResponse#audience_generation_job_arn #audience_generation_job_arn} => String
906
- # * {Types::GetAudienceGenerationJobResponse#name #name} => String
907
- # * {Types::GetAudienceGenerationJobResponse#description #description} => String
908
- # * {Types::GetAudienceGenerationJobResponse#status #status} => String
909
- # * {Types::GetAudienceGenerationJobResponse#status_details #status_details} => Types::StatusDetails
910
- # * {Types::GetAudienceGenerationJobResponse#configured_audience_model_arn #configured_audience_model_arn} => String
911
- # * {Types::GetAudienceGenerationJobResponse#seed_audience #seed_audience} => Types::AudienceGenerationJobDataSource
912
- # * {Types::GetAudienceGenerationJobResponse#include_seed_in_output #include_seed_in_output} => Boolean
913
- # * {Types::GetAudienceGenerationJobResponse#collaboration_id #collaboration_id} => String
914
- # * {Types::GetAudienceGenerationJobResponse#metrics #metrics} => Types::AudienceQualityMetrics
915
- # * {Types::GetAudienceGenerationJobResponse#started_by #started_by} => String
916
- # * {Types::GetAudienceGenerationJobResponse#tags #tags} => Hash&lt;String,String&gt;
917
- # * {Types::GetAudienceGenerationJobResponse#protected_query_identifier #protected_query_identifier} => String
987
+ # * Tag keys and values are case sensitive.
988
+ #
989
+ # * Do not use aws:, AWS:, or any upper or lowercase combination of such
990
+ # as a prefix for keys as it is reserved for AWS use. You cannot edit
991
+ # or delete tag keys with this prefix. Values can have this prefix. If
992
+ # a tag value has aws as its prefix but the key does not, then Clean
993
+ # Rooms ML considers it to be a user tag and will count against the
994
+ # limit of 50 tags. Tags with only the key prefix of aws do not count
995
+ # against your tags per resource limit.
996
+ #
997
+ # @return [Types::CreateMLInputChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
998
+ #
999
+ # * {Types::CreateMLInputChannelResponse#ml_input_channel_arn #ml_input_channel_arn} => String
1000
+ #
1001
+ # @example Request syntax with placeholder values
1002
+ #
1003
+ # resp = client.create_ml_input_channel({
1004
+ # membership_identifier: "UUID", # required
1005
+ # configured_model_algorithm_associations: ["ConfiguredModelAlgorithmAssociationArn"], # required
1006
+ # input_channel: { # required
1007
+ # data_source: { # required
1008
+ # protected_query_input_parameters: {
1009
+ # sql_parameters: { # required
1010
+ # query_string: "ProtectedQuerySQLParametersQueryStringString",
1011
+ # analysis_template_arn: "AnalysisTemplateArn",
1012
+ # parameters: {
1013
+ # "ParameterKey" => "ParameterValue",
1014
+ # },
1015
+ # },
1016
+ # compute_configuration: {
1017
+ # worker: {
1018
+ # type: "CR.1X", # accepts CR.1X, CR.4X
1019
+ # number: 1,
1020
+ # },
1021
+ # },
1022
+ # },
1023
+ # },
1024
+ # role_arn: "IamRoleArn", # required
1025
+ # },
1026
+ # name: "NameString", # required
1027
+ # retention_in_days: 1, # required
1028
+ # description: "ResourceDescription",
1029
+ # kms_key_arn: "KmsKeyArn",
1030
+ # tags: {
1031
+ # "TagKey" => "TagValue",
1032
+ # },
1033
+ # })
1034
+ #
1035
+ # @example Response structure
1036
+ #
1037
+ # resp.ml_input_channel_arn #=> String
1038
+ #
1039
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateMLInputChannel AWS API Documentation
1040
+ #
1041
+ # @overload create_ml_input_channel(params = {})
1042
+ # @param [Hash] params ({})
1043
+ def create_ml_input_channel(params = {}, options = {})
1044
+ req = build_request(:create_ml_input_channel, params)
1045
+ req.send_request(options)
1046
+ end
1047
+
1048
+ # Creates a trained model from an associated configured model algorithm
1049
+ # using data from any member of the collaboration.
1050
+ #
1051
+ # @option params [required, String] :membership_identifier
1052
+ # The membership ID of the member that is creating the trained model.
1053
+ #
1054
+ # @option params [required, String] :name
1055
+ # The name of the trained model.
1056
+ #
1057
+ # @option params [required, String] :configured_model_algorithm_association_arn
1058
+ # The associated configured model algorithm used to train this model.
1059
+ #
1060
+ # @option params [Hash<String,String>] :hyperparameters
1061
+ # Algorithm-specific parameters that influence the quality of the model.
1062
+ # You set hyperparameters before you start the learning process.
1063
+ #
1064
+ # @option params [Hash<String,String>] :environment
1065
+ # The environment variables to set in the Docker container.
1066
+ #
1067
+ # @option params [required, Types::ResourceConfig] :resource_config
1068
+ # Information about the EC2 resources that are used to train this model.
1069
+ #
1070
+ # @option params [Types::StoppingCondition] :stopping_condition
1071
+ # The criteria that is used to stop model training.
1072
+ #
1073
+ # @option params [required, Array<Types::ModelTrainingDataChannel>] :data_channels
1074
+ # Defines the data channels that are used as input for the trained model
1075
+ # request.
1076
+ #
1077
+ # @option params [String] :description
1078
+ # The description of the trained model.
1079
+ #
1080
+ # @option params [String] :kms_key_arn
1081
+ # The Amazon Resource Name (ARN) of the KMS key. This key is used to
1082
+ # encrypt and decrypt customer-owned data in the trained ML model and
1083
+ # the associated data.
1084
+ #
1085
+ # @option params [Hash<String,String>] :tags
1086
+ # The optional metadata that you apply to the resource to help you
1087
+ # categorize and organize them. Each tag consists of a key and an
1088
+ # optional value, both of which you define.
1089
+ #
1090
+ # The following basic restrictions apply to tags:
1091
+ #
1092
+ # * Maximum number of tags per resource - 50.
1093
+ #
1094
+ # * For each resource, each tag key must be unique, and each tag key can
1095
+ # have only one value.
1096
+ #
1097
+ # * Maximum key length - 128 Unicode characters in UTF-8.
1098
+ #
1099
+ # * Maximum value length - 256 Unicode characters in UTF-8.
1100
+ #
1101
+ # * If your tagging schema is used across multiple services and
1102
+ # resources, remember that other services may have restrictions on
1103
+ # allowed characters. Generally allowed characters are: letters,
1104
+ # numbers, and spaces representable in UTF-8, and the following
1105
+ # characters: + - = . \_ : / @.
1106
+ #
1107
+ # * Tag keys and values are case sensitive.
1108
+ #
1109
+ # * Do not use aws:, AWS:, or any upper or lowercase combination of such
1110
+ # as a prefix for keys as it is reserved for AWS use. You cannot edit
1111
+ # or delete tag keys with this prefix. Values can have this prefix. If
1112
+ # a tag value has aws as its prefix but the key does not, then Clean
1113
+ # Rooms ML considers it to be a user tag and will count against the
1114
+ # limit of 50 tags. Tags with only the key prefix of aws do not count
1115
+ # against your tags per resource limit.
1116
+ #
1117
+ # @return [Types::CreateTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1118
+ #
1119
+ # * {Types::CreateTrainedModelResponse#trained_model_arn #trained_model_arn} => String
1120
+ #
1121
+ # @example Request syntax with placeholder values
1122
+ #
1123
+ # resp = client.create_trained_model({
1124
+ # membership_identifier: "UUID", # required
1125
+ # name: "NameString", # required
1126
+ # configured_model_algorithm_association_arn: "ConfiguredModelAlgorithmAssociationArn", # required
1127
+ # hyperparameters: {
1128
+ # "HyperParametersKeyString" => "HyperParametersValueString",
1129
+ # },
1130
+ # environment: {
1131
+ # "EnvironmentKeyString" => "EnvironmentValueString",
1132
+ # },
1133
+ # resource_config: { # required
1134
+ # instance_count: 1,
1135
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.trn1.2xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.m6i.large, ml.m6i.xlarge, ml.m6i.2xlarge, ml.m6i.4xlarge, ml.m6i.8xlarge, ml.m6i.12xlarge, ml.m6i.16xlarge, ml.m6i.24xlarge, ml.m6i.32xlarge, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.8xlarge, ml.c6i.4xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.8xlarge, ml.r5d.12xlarge, ml.r5d.16xlarge, ml.r5d.24xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
1136
+ # volume_size_in_gb: 1, # required
1137
+ # },
1138
+ # stopping_condition: {
1139
+ # max_runtime_in_seconds: 1,
1140
+ # },
1141
+ # data_channels: [ # required
1142
+ # {
1143
+ # ml_input_channel_arn: "MLInputChannelArn", # required
1144
+ # channel_name: "ModelTrainingDataChannelName", # required
1145
+ # },
1146
+ # ],
1147
+ # description: "ResourceDescription",
1148
+ # kms_key_arn: "KmsKeyArn",
1149
+ # tags: {
1150
+ # "TagKey" => "TagValue",
1151
+ # },
1152
+ # })
1153
+ #
1154
+ # @example Response structure
1155
+ #
1156
+ # resp.trained_model_arn #=> String
1157
+ #
1158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateTrainedModel AWS API Documentation
1159
+ #
1160
+ # @overload create_trained_model(params = {})
1161
+ # @param [Hash] params ({})
1162
+ def create_trained_model(params = {}, options = {})
1163
+ req = build_request(:create_trained_model, params)
1164
+ req.send_request(options)
1165
+ end
1166
+
1167
+ # Defines the information necessary to create a training dataset. In
1168
+ # Clean Rooms ML, the `TrainingDataset` is metadata that points to a
1169
+ # Glue table, which is read only during `AudienceModel` creation.
1170
+ #
1171
+ # @option params [required, String] :name
1172
+ # The name of the training dataset. This name must be unique in your
1173
+ # account and region.
1174
+ #
1175
+ # @option params [required, String] :role_arn
1176
+ # The ARN of the IAM role that Clean Rooms ML can assume to read the
1177
+ # data referred to in the `dataSource` field of each dataset.
1178
+ #
1179
+ # Passing a role across AWS accounts is not allowed. If you pass a role
1180
+ # that isn't in your account, you get an `AccessDeniedException` error.
1181
+ #
1182
+ # @option params [required, Array<Types::Dataset>] :training_data
1183
+ # An array of information that lists the Dataset objects, which
1184
+ # specifies the dataset type and details on its location and schema. You
1185
+ # must provide a role that has read access to these tables.
1186
+ #
1187
+ # @option params [Hash<String,String>] :tags
1188
+ # The optional metadata that you apply to the resource to help you
1189
+ # categorize and organize them. Each tag consists of a key and an
1190
+ # optional value, both of which you define.
1191
+ #
1192
+ # The following basic restrictions apply to tags:
1193
+ #
1194
+ # * Maximum number of tags per resource - 50.
1195
+ #
1196
+ # * For each resource, each tag key must be unique, and each tag key can
1197
+ # have only one value.
1198
+ #
1199
+ # * Maximum key length - 128 Unicode characters in UTF-8.
1200
+ #
1201
+ # * Maximum value length - 256 Unicode characters in UTF-8.
1202
+ #
1203
+ # * If your tagging schema is used across multiple services and
1204
+ # resources, remember that other services may have restrictions on
1205
+ # allowed characters. Generally allowed characters are: letters,
1206
+ # numbers, and spaces representable in UTF-8, and the following
1207
+ # characters: + - = . \_ : / @.
1208
+ #
1209
+ # * Tag keys and values are case sensitive.
1210
+ #
1211
+ # * Do not use aws:, AWS:, or any upper or lowercase combination of such
1212
+ # as a prefix for keys as it is reserved for AWS use. You cannot edit
1213
+ # or delete tag keys with this prefix. Values can have this prefix. If
1214
+ # a tag value has aws as its prefix but the key does not, then Clean
1215
+ # Rooms ML considers it to be a user tag and will count against the
1216
+ # limit of 50 tags. Tags with only the key prefix of aws do not count
1217
+ # against your tags per resource limit.
1218
+ #
1219
+ # @option params [String] :description
1220
+ # The description of the training dataset.
1221
+ #
1222
+ # @return [Types::CreateTrainingDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1223
+ #
1224
+ # * {Types::CreateTrainingDatasetResponse#training_dataset_arn #training_dataset_arn} => String
1225
+ #
1226
+ # @example Request syntax with placeholder values
1227
+ #
1228
+ # resp = client.create_training_dataset({
1229
+ # name: "NameString", # required
1230
+ # role_arn: "IamRoleArn", # required
1231
+ # training_data: [ # required
1232
+ # {
1233
+ # type: "INTERACTIONS", # required, accepts INTERACTIONS
1234
+ # input_config: { # required
1235
+ # schema: [ # required
1236
+ # {
1237
+ # column_name: "ColumnName", # required
1238
+ # column_types: ["USER_ID"], # required, accepts USER_ID, ITEM_ID, TIMESTAMP, CATEGORICAL_FEATURE, NUMERICAL_FEATURE
1239
+ # },
1240
+ # ],
1241
+ # data_source: { # required
1242
+ # glue_data_source: { # required
1243
+ # table_name: "GlueTableName", # required
1244
+ # database_name: "GlueDatabaseName", # required
1245
+ # catalog_id: "AccountId",
1246
+ # },
1247
+ # },
1248
+ # },
1249
+ # },
1250
+ # ],
1251
+ # tags: {
1252
+ # "TagKey" => "TagValue",
1253
+ # },
1254
+ # description: "ResourceDescription",
1255
+ # })
1256
+ #
1257
+ # @example Response structure
1258
+ #
1259
+ # resp.training_dataset_arn #=> String
1260
+ #
1261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateTrainingDataset AWS API Documentation
1262
+ #
1263
+ # @overload create_training_dataset(params = {})
1264
+ # @param [Hash] params ({})
1265
+ def create_training_dataset(params = {}, options = {})
1266
+ req = build_request(:create_training_dataset, params)
1267
+ req.send_request(options)
1268
+ end
1269
+
1270
+ # Deletes the specified audience generation job, and removes all data
1271
+ # associated with the job.
1272
+ #
1273
+ # @option params [required, String] :audience_generation_job_arn
1274
+ # The Amazon Resource Name (ARN) of the audience generation job that you
1275
+ # want to delete.
1276
+ #
1277
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1278
+ #
1279
+ # @example Request syntax with placeholder values
1280
+ #
1281
+ # resp = client.delete_audience_generation_job({
1282
+ # audience_generation_job_arn: "AudienceGenerationJobArn", # required
1283
+ # })
1284
+ #
1285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteAudienceGenerationJob AWS API Documentation
1286
+ #
1287
+ # @overload delete_audience_generation_job(params = {})
1288
+ # @param [Hash] params ({})
1289
+ def delete_audience_generation_job(params = {}, options = {})
1290
+ req = build_request(:delete_audience_generation_job, params)
1291
+ req.send_request(options)
1292
+ end
1293
+
1294
+ # Specifies an audience model that you want to delete. You can't delete
1295
+ # an audience model if there are any configured audience models that
1296
+ # depend on the audience model.
1297
+ #
1298
+ # @option params [required, String] :audience_model_arn
1299
+ # The Amazon Resource Name (ARN) of the audience model that you want to
1300
+ # delete.
1301
+ #
1302
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1303
+ #
1304
+ # @example Request syntax with placeholder values
1305
+ #
1306
+ # resp = client.delete_audience_model({
1307
+ # audience_model_arn: "AudienceModelArn", # required
1308
+ # })
1309
+ #
1310
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteAudienceModel AWS API Documentation
1311
+ #
1312
+ # @overload delete_audience_model(params = {})
1313
+ # @param [Hash] params ({})
1314
+ def delete_audience_model(params = {}, options = {})
1315
+ req = build_request(:delete_audience_model, params)
1316
+ req.send_request(options)
1317
+ end
1318
+
1319
+ # Deletes the specified configured audience model. You can't delete a
1320
+ # configured audience model if there are any lookalike models that use
1321
+ # the configured audience model. If you delete a configured audience
1322
+ # model, it will be removed from any collaborations that it is
1323
+ # associated to.
1324
+ #
1325
+ # @option params [required, String] :configured_audience_model_arn
1326
+ # The Amazon Resource Name (ARN) of the configured audience model that
1327
+ # you want to delete.
1328
+ #
1329
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1330
+ #
1331
+ # @example Request syntax with placeholder values
1332
+ #
1333
+ # resp = client.delete_configured_audience_model({
1334
+ # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
1335
+ # })
1336
+ #
1337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteConfiguredAudienceModel AWS API Documentation
1338
+ #
1339
+ # @overload delete_configured_audience_model(params = {})
1340
+ # @param [Hash] params ({})
1341
+ def delete_configured_audience_model(params = {}, options = {})
1342
+ req = build_request(:delete_configured_audience_model, params)
1343
+ req.send_request(options)
1344
+ end
1345
+
1346
+ # Deletes the specified configured audience model policy.
1347
+ #
1348
+ # @option params [required, String] :configured_audience_model_arn
1349
+ # The Amazon Resource Name (ARN) of the configured audience model policy
1350
+ # that you want to delete.
1351
+ #
1352
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1353
+ #
1354
+ # @example Request syntax with placeholder values
1355
+ #
1356
+ # resp = client.delete_configured_audience_model_policy({
1357
+ # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
1358
+ # })
1359
+ #
1360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteConfiguredAudienceModelPolicy AWS API Documentation
1361
+ #
1362
+ # @overload delete_configured_audience_model_policy(params = {})
1363
+ # @param [Hash] params ({})
1364
+ def delete_configured_audience_model_policy(params = {}, options = {})
1365
+ req = build_request(:delete_configured_audience_model_policy, params)
1366
+ req.send_request(options)
1367
+ end
1368
+
1369
+ # Deletes a configured model algorithm.
1370
+ #
1371
+ # @option params [required, String] :configured_model_algorithm_arn
1372
+ # The Amazon Resource Name (ARN) of the configured model algorithm that
1373
+ # you want to delete.
1374
+ #
1375
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1376
+ #
1377
+ # @example Request syntax with placeholder values
1378
+ #
1379
+ # resp = client.delete_configured_model_algorithm({
1380
+ # configured_model_algorithm_arn: "ConfiguredModelAlgorithmArn", # required
1381
+ # })
1382
+ #
1383
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteConfiguredModelAlgorithm AWS API Documentation
1384
+ #
1385
+ # @overload delete_configured_model_algorithm(params = {})
1386
+ # @param [Hash] params ({})
1387
+ def delete_configured_model_algorithm(params = {}, options = {})
1388
+ req = build_request(:delete_configured_model_algorithm, params)
1389
+ req.send_request(options)
1390
+ end
1391
+
1392
+ # Deletes a configured model algorithm association.
1393
+ #
1394
+ # @option params [required, String] :configured_model_algorithm_association_arn
1395
+ # The Amazon Resource Name (ARN) of the configured model algorithm
1396
+ # association that you want to delete.
1397
+ #
1398
+ # @option params [required, String] :membership_identifier
1399
+ # The membership ID of the member that is deleting the configured model
1400
+ # algorithm association.
1401
+ #
1402
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1403
+ #
1404
+ # @example Request syntax with placeholder values
1405
+ #
1406
+ # resp = client.delete_configured_model_algorithm_association({
1407
+ # configured_model_algorithm_association_arn: "ConfiguredModelAlgorithmAssociationArn", # required
1408
+ # membership_identifier: "UUID", # required
1409
+ # })
1410
+ #
1411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteConfiguredModelAlgorithmAssociation AWS API Documentation
1412
+ #
1413
+ # @overload delete_configured_model_algorithm_association(params = {})
1414
+ # @param [Hash] params ({})
1415
+ def delete_configured_model_algorithm_association(params = {}, options = {})
1416
+ req = build_request(:delete_configured_model_algorithm_association, params)
1417
+ req.send_request(options)
1418
+ end
1419
+
1420
+ # Deletes a ML modeling configuration.
1421
+ #
1422
+ # @option params [required, String] :membership_identifier
1423
+ # The membership ID of the of the member that is deleting the ML
1424
+ # modeling configuration.
1425
+ #
1426
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1427
+ #
1428
+ # @example Request syntax with placeholder values
1429
+ #
1430
+ # resp = client.delete_ml_configuration({
1431
+ # membership_identifier: "UUID", # required
1432
+ # })
1433
+ #
1434
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteMLConfiguration AWS API Documentation
1435
+ #
1436
+ # @overload delete_ml_configuration(params = {})
1437
+ # @param [Hash] params ({})
1438
+ def delete_ml_configuration(params = {}, options = {})
1439
+ req = build_request(:delete_ml_configuration, params)
1440
+ req.send_request(options)
1441
+ end
1442
+
1443
+ # Provides the information necessary to delete an ML input channel.
1444
+ #
1445
+ # @option params [required, String] :ml_input_channel_arn
1446
+ # The Amazon Resource Name (ARN) of the ML input channel that you want
1447
+ # to delete.
1448
+ #
1449
+ # @option params [required, String] :membership_identifier
1450
+ # The membership ID of the membership that contains the ML input channel
1451
+ # you want to delete.
1452
+ #
1453
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1454
+ #
1455
+ # @example Request syntax with placeholder values
1456
+ #
1457
+ # resp = client.delete_ml_input_channel_data({
1458
+ # ml_input_channel_arn: "MLInputChannelArn", # required
1459
+ # membership_identifier: "UUID", # required
1460
+ # })
1461
+ #
1462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteMLInputChannelData AWS API Documentation
1463
+ #
1464
+ # @overload delete_ml_input_channel_data(params = {})
1465
+ # @param [Hash] params ({})
1466
+ def delete_ml_input_channel_data(params = {}, options = {})
1467
+ req = build_request(:delete_ml_input_channel_data, params)
1468
+ req.send_request(options)
1469
+ end
1470
+
1471
+ # Deletes the output of a trained model.
1472
+ #
1473
+ # @option params [required, String] :trained_model_arn
1474
+ # The Amazon Resource Name (ARN) of the trained model whose output you
1475
+ # want to delete.
1476
+ #
1477
+ # @option params [required, String] :membership_identifier
1478
+ # The membership ID of the member that is deleting the trained model
1479
+ # output.
1480
+ #
1481
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1482
+ #
1483
+ # @example Request syntax with placeholder values
1484
+ #
1485
+ # resp = client.delete_trained_model_output({
1486
+ # trained_model_arn: "TrainedModelArn", # required
1487
+ # membership_identifier: "UUID", # required
1488
+ # })
1489
+ #
1490
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteTrainedModelOutput AWS API Documentation
1491
+ #
1492
+ # @overload delete_trained_model_output(params = {})
1493
+ # @param [Hash] params ({})
1494
+ def delete_trained_model_output(params = {}, options = {})
1495
+ req = build_request(:delete_trained_model_output, params)
1496
+ req.send_request(options)
1497
+ end
1498
+
1499
+ # Specifies a training dataset that you want to delete. You can't
1500
+ # delete a training dataset if there are any audience models that depend
1501
+ # on the training dataset. In Clean Rooms ML, the `TrainingDataset` is
1502
+ # metadata that points to a Glue table, which is read only during
1503
+ # `AudienceModel` creation. This action deletes the metadata.
1504
+ #
1505
+ # @option params [required, String] :training_dataset_arn
1506
+ # The Amazon Resource Name (ARN) of the training dataset that you want
1507
+ # to delete.
1508
+ #
1509
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1510
+ #
1511
+ # @example Request syntax with placeholder values
1512
+ #
1513
+ # resp = client.delete_training_dataset({
1514
+ # training_dataset_arn: "TrainingDatasetArn", # required
1515
+ # })
1516
+ #
1517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteTrainingDataset AWS API Documentation
1518
+ #
1519
+ # @overload delete_training_dataset(params = {})
1520
+ # @param [Hash] params ({})
1521
+ def delete_training_dataset(params = {}, options = {})
1522
+ req = build_request(:delete_training_dataset, params)
1523
+ req.send_request(options)
1524
+ end
1525
+
1526
+ # Returns information about an audience generation job.
1527
+ #
1528
+ # @option params [required, String] :audience_generation_job_arn
1529
+ # The Amazon Resource Name (ARN) of the audience generation job that you
1530
+ # are interested in.
1531
+ #
1532
+ # @return [Types::GetAudienceGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1533
+ #
1534
+ # * {Types::GetAudienceGenerationJobResponse#create_time #create_time} => Time
1535
+ # * {Types::GetAudienceGenerationJobResponse#update_time #update_time} => Time
1536
+ # * {Types::GetAudienceGenerationJobResponse#audience_generation_job_arn #audience_generation_job_arn} => String
1537
+ # * {Types::GetAudienceGenerationJobResponse#name #name} => String
1538
+ # * {Types::GetAudienceGenerationJobResponse#description #description} => String
1539
+ # * {Types::GetAudienceGenerationJobResponse#status #status} => String
1540
+ # * {Types::GetAudienceGenerationJobResponse#status_details #status_details} => Types::StatusDetails
1541
+ # * {Types::GetAudienceGenerationJobResponse#configured_audience_model_arn #configured_audience_model_arn} => String
1542
+ # * {Types::GetAudienceGenerationJobResponse#seed_audience #seed_audience} => Types::AudienceGenerationJobDataSource
1543
+ # * {Types::GetAudienceGenerationJobResponse#include_seed_in_output #include_seed_in_output} => Boolean
1544
+ # * {Types::GetAudienceGenerationJobResponse#collaboration_id #collaboration_id} => String
1545
+ # * {Types::GetAudienceGenerationJobResponse#metrics #metrics} => Types::AudienceQualityMetrics
1546
+ # * {Types::GetAudienceGenerationJobResponse#started_by #started_by} => String
1547
+ # * {Types::GetAudienceGenerationJobResponse#tags #tags} => Hash&lt;String,String&gt;
1548
+ # * {Types::GetAudienceGenerationJobResponse#protected_query_identifier #protected_query_identifier} => String
1549
+ #
1550
+ # @example Request syntax with placeholder values
1551
+ #
1552
+ # resp = client.get_audience_generation_job({
1553
+ # audience_generation_job_arn: "AudienceGenerationJobArn", # required
1554
+ # })
1555
+ #
1556
+ # @example Response structure
1557
+ #
1558
+ # resp.create_time #=> Time
1559
+ # resp.update_time #=> Time
1560
+ # resp.audience_generation_job_arn #=> String
1561
+ # resp.name #=> String
1562
+ # resp.description #=> String
1563
+ # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
1564
+ # resp.status_details.status_code #=> String
1565
+ # resp.status_details.message #=> String
1566
+ # resp.configured_audience_model_arn #=> String
1567
+ # resp.seed_audience.data_source.s3_uri #=> String
1568
+ # resp.seed_audience.role_arn #=> String
1569
+ # resp.seed_audience.sql_parameters.query_string #=> String
1570
+ # resp.seed_audience.sql_parameters.analysis_template_arn #=> String
1571
+ # resp.seed_audience.sql_parameters.parameters #=> Hash
1572
+ # resp.seed_audience.sql_parameters.parameters["ParameterKey"] #=> String
1573
+ # resp.seed_audience.sql_compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
1574
+ # resp.seed_audience.sql_compute_configuration.worker.number #=> Integer
1575
+ # resp.include_seed_in_output #=> Boolean
1576
+ # resp.collaboration_id #=> String
1577
+ # resp.metrics.relevance_metrics #=> Array
1578
+ # resp.metrics.relevance_metrics[0].audience_size.type #=> String, one of "ABSOLUTE", "PERCENTAGE"
1579
+ # resp.metrics.relevance_metrics[0].audience_size.value #=> Integer
1580
+ # resp.metrics.relevance_metrics[0].score #=> Float
1581
+ # resp.metrics.recall_metric #=> Float
1582
+ # resp.started_by #=> String
1583
+ # resp.tags #=> Hash
1584
+ # resp.tags["TagKey"] #=> String
1585
+ # resp.protected_query_identifier #=> String
1586
+ #
1587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetAudienceGenerationJob AWS API Documentation
1588
+ #
1589
+ # @overload get_audience_generation_job(params = {})
1590
+ # @param [Hash] params ({})
1591
+ def get_audience_generation_job(params = {}, options = {})
1592
+ req = build_request(:get_audience_generation_job, params)
1593
+ req.send_request(options)
1594
+ end
1595
+
1596
+ # Returns information about an audience model
1597
+ #
1598
+ # @option params [required, String] :audience_model_arn
1599
+ # The Amazon Resource Name (ARN) of the audience model that you are
1600
+ # interested in.
1601
+ #
1602
+ # @return [Types::GetAudienceModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1603
+ #
1604
+ # * {Types::GetAudienceModelResponse#create_time #create_time} => Time
1605
+ # * {Types::GetAudienceModelResponse#update_time #update_time} => Time
1606
+ # * {Types::GetAudienceModelResponse#training_data_start_time #training_data_start_time} => Time
1607
+ # * {Types::GetAudienceModelResponse#training_data_end_time #training_data_end_time} => Time
1608
+ # * {Types::GetAudienceModelResponse#audience_model_arn #audience_model_arn} => String
1609
+ # * {Types::GetAudienceModelResponse#name #name} => String
1610
+ # * {Types::GetAudienceModelResponse#training_dataset_arn #training_dataset_arn} => String
1611
+ # * {Types::GetAudienceModelResponse#status #status} => String
1612
+ # * {Types::GetAudienceModelResponse#status_details #status_details} => Types::StatusDetails
1613
+ # * {Types::GetAudienceModelResponse#kms_key_arn #kms_key_arn} => String
1614
+ # * {Types::GetAudienceModelResponse#tags #tags} => Hash&lt;String,String&gt;
1615
+ # * {Types::GetAudienceModelResponse#description #description} => String
1616
+ #
1617
+ # @example Request syntax with placeholder values
1618
+ #
1619
+ # resp = client.get_audience_model({
1620
+ # audience_model_arn: "AudienceModelArn", # required
1621
+ # })
1622
+ #
1623
+ # @example Response structure
1624
+ #
1625
+ # resp.create_time #=> Time
1626
+ # resp.update_time #=> Time
1627
+ # resp.training_data_start_time #=> Time
1628
+ # resp.training_data_end_time #=> Time
1629
+ # resp.audience_model_arn #=> String
1630
+ # resp.name #=> String
1631
+ # resp.training_dataset_arn #=> String
1632
+ # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
1633
+ # resp.status_details.status_code #=> String
1634
+ # resp.status_details.message #=> String
1635
+ # resp.kms_key_arn #=> String
1636
+ # resp.tags #=> Hash
1637
+ # resp.tags["TagKey"] #=> String
1638
+ # resp.description #=> String
1639
+ #
1640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetAudienceModel AWS API Documentation
1641
+ #
1642
+ # @overload get_audience_model(params = {})
1643
+ # @param [Hash] params ({})
1644
+ def get_audience_model(params = {}, options = {})
1645
+ req = build_request(:get_audience_model, params)
1646
+ req.send_request(options)
1647
+ end
1648
+
1649
+ # Returns information about the configured model algorithm association
1650
+ # in a collaboration.
1651
+ #
1652
+ # @option params [required, String] :configured_model_algorithm_association_arn
1653
+ # The Amazon Resource Name (ARN) of the configured model algorithm
1654
+ # association that you want to return information about.
1655
+ #
1656
+ # @option params [required, String] :collaboration_identifier
1657
+ # The collaboration ID for the collaboration that contains the
1658
+ # configured model algorithm association that you want to return
1659
+ # information about.
1660
+ #
1661
+ # @return [Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1662
+ #
1663
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#create_time #create_time} => Time
1664
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#update_time #update_time} => Time
1665
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
1666
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#membership_identifier #membership_identifier} => String
1667
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#collaboration_identifier #collaboration_identifier} => String
1668
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#configured_model_algorithm_arn #configured_model_algorithm_arn} => String
1669
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#name #name} => String
1670
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#description #description} => String
1671
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#creator_account_id #creator_account_id} => String
1672
+ # * {Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse#privacy_configuration #privacy_configuration} => Types::PrivacyConfiguration
1673
+ #
1674
+ # @example Request syntax with placeholder values
1675
+ #
1676
+ # resp = client.get_collaboration_configured_model_algorithm_association({
1677
+ # configured_model_algorithm_association_arn: "ConfiguredModelAlgorithmAssociationArn", # required
1678
+ # collaboration_identifier: "UUID", # required
1679
+ # })
1680
+ #
1681
+ # @example Response structure
1682
+ #
1683
+ # resp.create_time #=> Time
1684
+ # resp.update_time #=> Time
1685
+ # resp.configured_model_algorithm_association_arn #=> String
1686
+ # resp.membership_identifier #=> String
1687
+ # resp.collaboration_identifier #=> String
1688
+ # resp.configured_model_algorithm_arn #=> String
1689
+ # resp.name #=> String
1690
+ # resp.description #=> String
1691
+ # resp.creator_account_id #=> String
1692
+ # resp.privacy_configuration.policies.trained_models.container_logs #=> Array
1693
+ # resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids #=> Array
1694
+ # resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids[0] #=> String
1695
+ # resp.privacy_configuration.policies.trained_models.container_logs[0].filter_pattern #=> String
1696
+ # resp.privacy_configuration.policies.trained_models.container_metrics.noise_level #=> String, one of "HIGH", "MEDIUM", "LOW", "NONE"
1697
+ # resp.privacy_configuration.policies.trained_model_exports.max_size.unit #=> String, one of "GB"
1698
+ # resp.privacy_configuration.policies.trained_model_exports.max_size.value #=> Float
1699
+ # resp.privacy_configuration.policies.trained_model_exports.files_to_export #=> Array
1700
+ # resp.privacy_configuration.policies.trained_model_exports.files_to_export[0] #=> String, one of "MODEL", "OUTPUT"
1701
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs #=> Array
1702
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs[0].allowed_account_ids #=> Array
1703
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs[0].allowed_account_ids[0] #=> String
1704
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs[0].filter_pattern #=> String
1705
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.max_output_size.unit #=> String, one of "GB"
1706
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.max_output_size.value #=> Float
1707
+ #
1708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetCollaborationConfiguredModelAlgorithmAssociation AWS API Documentation
1709
+ #
1710
+ # @overload get_collaboration_configured_model_algorithm_association(params = {})
1711
+ # @param [Hash] params ({})
1712
+ def get_collaboration_configured_model_algorithm_association(params = {}, options = {})
1713
+ req = build_request(:get_collaboration_configured_model_algorithm_association, params)
1714
+ req.send_request(options)
1715
+ end
1716
+
1717
+ # Returns information about a specific ML input channel in a
1718
+ # collaboration.
1719
+ #
1720
+ # @option params [required, String] :ml_input_channel_arn
1721
+ # The Amazon Resource Name (ARN) of the ML input channel that you want
1722
+ # to get.
1723
+ #
1724
+ # @option params [required, String] :collaboration_identifier
1725
+ # The collaboration ID of the collaboration that contains the ML input
1726
+ # channel that you want to get.
1727
+ #
1728
+ # @return [Types::GetCollaborationMLInputChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1729
+ #
1730
+ # * {Types::GetCollaborationMLInputChannelResponse#create_time #create_time} => Time
1731
+ # * {Types::GetCollaborationMLInputChannelResponse#update_time #update_time} => Time
1732
+ # * {Types::GetCollaborationMLInputChannelResponse#creator_account_id #creator_account_id} => String
1733
+ # * {Types::GetCollaborationMLInputChannelResponse#membership_identifier #membership_identifier} => String
1734
+ # * {Types::GetCollaborationMLInputChannelResponse#collaboration_identifier #collaboration_identifier} => String
1735
+ # * {Types::GetCollaborationMLInputChannelResponse#ml_input_channel_arn #ml_input_channel_arn} => String
1736
+ # * {Types::GetCollaborationMLInputChannelResponse#name #name} => String
1737
+ # * {Types::GetCollaborationMLInputChannelResponse#configured_model_algorithm_associations #configured_model_algorithm_associations} => Array&lt;String&gt;
1738
+ # * {Types::GetCollaborationMLInputChannelResponse#status #status} => String
1739
+ # * {Types::GetCollaborationMLInputChannelResponse#status_details #status_details} => Types::StatusDetails
1740
+ # * {Types::GetCollaborationMLInputChannelResponse#retention_in_days #retention_in_days} => Integer
1741
+ # * {Types::GetCollaborationMLInputChannelResponse#number_of_records #number_of_records} => Integer
1742
+ # * {Types::GetCollaborationMLInputChannelResponse#description #description} => String
1743
+ #
1744
+ # @example Request syntax with placeholder values
1745
+ #
1746
+ # resp = client.get_collaboration_ml_input_channel({
1747
+ # ml_input_channel_arn: "MLInputChannelArn", # required
1748
+ # collaboration_identifier: "UUID", # required
1749
+ # })
1750
+ #
1751
+ # @example Response structure
1752
+ #
1753
+ # resp.create_time #=> Time
1754
+ # resp.update_time #=> Time
1755
+ # resp.creator_account_id #=> String
1756
+ # resp.membership_identifier #=> String
1757
+ # resp.collaboration_identifier #=> String
1758
+ # resp.ml_input_channel_arn #=> String
1759
+ # resp.name #=> String
1760
+ # resp.configured_model_algorithm_associations #=> Array
1761
+ # resp.configured_model_algorithm_associations[0] #=> String
1762
+ # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE"
1763
+ # resp.status_details.status_code #=> String
1764
+ # resp.status_details.message #=> String
1765
+ # resp.retention_in_days #=> Integer
1766
+ # resp.number_of_records #=> Integer
1767
+ # resp.description #=> String
1768
+ #
1769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetCollaborationMLInputChannel AWS API Documentation
1770
+ #
1771
+ # @overload get_collaboration_ml_input_channel(params = {})
1772
+ # @param [Hash] params ({})
1773
+ def get_collaboration_ml_input_channel(params = {}, options = {})
1774
+ req = build_request(:get_collaboration_ml_input_channel, params)
1775
+ req.send_request(options)
1776
+ end
1777
+
1778
+ # Returns information about a trained model in a collaboration.
1779
+ #
1780
+ # @option params [required, String] :trained_model_arn
1781
+ # The Amazon Resource Name (ARN) of the trained model that you want to
1782
+ # return information about.
1783
+ #
1784
+ # @option params [required, String] :collaboration_identifier
1785
+ # The collaboration ID that contains the trained model that you want to
1786
+ # return information about.
1787
+ #
1788
+ # @return [Types::GetCollaborationTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1789
+ #
1790
+ # * {Types::GetCollaborationTrainedModelResponse#membership_identifier #membership_identifier} => String
1791
+ # * {Types::GetCollaborationTrainedModelResponse#collaboration_identifier #collaboration_identifier} => String
1792
+ # * {Types::GetCollaborationTrainedModelResponse#trained_model_arn #trained_model_arn} => String
1793
+ # * {Types::GetCollaborationTrainedModelResponse#name #name} => String
1794
+ # * {Types::GetCollaborationTrainedModelResponse#description #description} => String
1795
+ # * {Types::GetCollaborationTrainedModelResponse#status #status} => String
1796
+ # * {Types::GetCollaborationTrainedModelResponse#status_details #status_details} => Types::StatusDetails
1797
+ # * {Types::GetCollaborationTrainedModelResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
1798
+ # * {Types::GetCollaborationTrainedModelResponse#resource_config #resource_config} => Types::ResourceConfig
1799
+ # * {Types::GetCollaborationTrainedModelResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
1800
+ # * {Types::GetCollaborationTrainedModelResponse#metrics_status #metrics_status} => String
1801
+ # * {Types::GetCollaborationTrainedModelResponse#metrics_status_details #metrics_status_details} => String
1802
+ # * {Types::GetCollaborationTrainedModelResponse#logs_status #logs_status} => String
1803
+ # * {Types::GetCollaborationTrainedModelResponse#logs_status_details #logs_status_details} => String
1804
+ # * {Types::GetCollaborationTrainedModelResponse#training_container_image_digest #training_container_image_digest} => String
1805
+ # * {Types::GetCollaborationTrainedModelResponse#create_time #create_time} => Time
1806
+ # * {Types::GetCollaborationTrainedModelResponse#update_time #update_time} => Time
1807
+ # * {Types::GetCollaborationTrainedModelResponse#creator_account_id #creator_account_id} => String
1808
+ #
1809
+ # @example Request syntax with placeholder values
1810
+ #
1811
+ # resp = client.get_collaboration_trained_model({
1812
+ # trained_model_arn: "TrainedModelArn", # required
1813
+ # collaboration_identifier: "UUID", # required
1814
+ # })
1815
+ #
1816
+ # @example Response structure
1817
+ #
1818
+ # resp.membership_identifier #=> String
1819
+ # resp.collaboration_identifier #=> String
1820
+ # resp.trained_model_arn #=> String
1821
+ # resp.name #=> String
1822
+ # resp.description #=> String
1823
+ # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED"
1824
+ # resp.status_details.status_code #=> String
1825
+ # resp.status_details.message #=> String
1826
+ # resp.configured_model_algorithm_association_arn #=> String
1827
+ # resp.resource_config.instance_count #=> Integer
1828
+ # resp.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.m6i.large", "ml.m6i.xlarge", "ml.m6i.2xlarge", "ml.m6i.4xlarge", "ml.m6i.8xlarge", "ml.m6i.12xlarge", "ml.m6i.16xlarge", "ml.m6i.24xlarge", "ml.m6i.32xlarge", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.8xlarge", "ml.c6i.4xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.8xlarge", "ml.r5d.12xlarge", "ml.r5d.16xlarge", "ml.r5d.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
1829
+ # resp.resource_config.volume_size_in_gb #=> Integer
1830
+ # resp.stopping_condition.max_runtime_in_seconds #=> Integer
1831
+ # resp.metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
1832
+ # resp.metrics_status_details #=> String
1833
+ # resp.logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
1834
+ # resp.logs_status_details #=> String
1835
+ # resp.training_container_image_digest #=> String
1836
+ # resp.create_time #=> Time
1837
+ # resp.update_time #=> Time
1838
+ # resp.creator_account_id #=> String
1839
+ #
1840
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetCollaborationTrainedModel AWS API Documentation
1841
+ #
1842
+ # @overload get_collaboration_trained_model(params = {})
1843
+ # @param [Hash] params ({})
1844
+ def get_collaboration_trained_model(params = {}, options = {})
1845
+ req = build_request(:get_collaboration_trained_model, params)
1846
+ req.send_request(options)
1847
+ end
1848
+
1849
+ # Returns information about a specified configured audience model.
1850
+ #
1851
+ # @option params [required, String] :configured_audience_model_arn
1852
+ # The Amazon Resource Name (ARN) of the configured audience model that
1853
+ # you are interested in.
1854
+ #
1855
+ # @return [Types::GetConfiguredAudienceModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1856
+ #
1857
+ # * {Types::GetConfiguredAudienceModelResponse#create_time #create_time} => Time
1858
+ # * {Types::GetConfiguredAudienceModelResponse#update_time #update_time} => Time
1859
+ # * {Types::GetConfiguredAudienceModelResponse#configured_audience_model_arn #configured_audience_model_arn} => String
1860
+ # * {Types::GetConfiguredAudienceModelResponse#name #name} => String
1861
+ # * {Types::GetConfiguredAudienceModelResponse#audience_model_arn #audience_model_arn} => String
1862
+ # * {Types::GetConfiguredAudienceModelResponse#output_config #output_config} => Types::ConfiguredAudienceModelOutputConfig
1863
+ # * {Types::GetConfiguredAudienceModelResponse#description #description} => String
1864
+ # * {Types::GetConfiguredAudienceModelResponse#status #status} => String
1865
+ # * {Types::GetConfiguredAudienceModelResponse#shared_audience_metrics #shared_audience_metrics} => Array&lt;String&gt;
1866
+ # * {Types::GetConfiguredAudienceModelResponse#min_matching_seed_size #min_matching_seed_size} => Integer
1867
+ # * {Types::GetConfiguredAudienceModelResponse#audience_size_config #audience_size_config} => Types::AudienceSizeConfig
1868
+ # * {Types::GetConfiguredAudienceModelResponse#tags #tags} => Hash&lt;String,String&gt;
1869
+ # * {Types::GetConfiguredAudienceModelResponse#child_resource_tag_on_create_policy #child_resource_tag_on_create_policy} => String
1870
+ #
1871
+ # @example Request syntax with placeholder values
1872
+ #
1873
+ # resp = client.get_configured_audience_model({
1874
+ # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
1875
+ # })
1876
+ #
1877
+ # @example Response structure
1878
+ #
1879
+ # resp.create_time #=> Time
1880
+ # resp.update_time #=> Time
1881
+ # resp.configured_audience_model_arn #=> String
1882
+ # resp.name #=> String
1883
+ # resp.audience_model_arn #=> String
1884
+ # resp.output_config.destination.s3_destination.s3_uri #=> String
1885
+ # resp.output_config.role_arn #=> String
1886
+ # resp.description #=> String
1887
+ # resp.status #=> String, one of "ACTIVE"
1888
+ # resp.shared_audience_metrics #=> Array
1889
+ # resp.shared_audience_metrics[0] #=> String, one of "ALL", "NONE"
1890
+ # resp.min_matching_seed_size #=> Integer
1891
+ # resp.audience_size_config.audience_size_type #=> String, one of "ABSOLUTE", "PERCENTAGE"
1892
+ # resp.audience_size_config.audience_size_bins #=> Array
1893
+ # resp.audience_size_config.audience_size_bins[0] #=> Integer
1894
+ # resp.tags #=> Hash
1895
+ # resp.tags["TagKey"] #=> String
1896
+ # resp.child_resource_tag_on_create_policy #=> String, one of "FROM_PARENT_RESOURCE", "NONE"
1897
+ #
1898
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetConfiguredAudienceModel AWS API Documentation
1899
+ #
1900
+ # @overload get_configured_audience_model(params = {})
1901
+ # @param [Hash] params ({})
1902
+ def get_configured_audience_model(params = {}, options = {})
1903
+ req = build_request(:get_configured_audience_model, params)
1904
+ req.send_request(options)
1905
+ end
1906
+
1907
+ # Returns information about a configured audience model policy.
1908
+ #
1909
+ # @option params [required, String] :configured_audience_model_arn
1910
+ # The Amazon Resource Name (ARN) of the configured audience model that
1911
+ # you are interested in.
1912
+ #
1913
+ # @return [Types::GetConfiguredAudienceModelPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1914
+ #
1915
+ # * {Types::GetConfiguredAudienceModelPolicyResponse#configured_audience_model_arn #configured_audience_model_arn} => String
1916
+ # * {Types::GetConfiguredAudienceModelPolicyResponse#configured_audience_model_policy #configured_audience_model_policy} => String
1917
+ # * {Types::GetConfiguredAudienceModelPolicyResponse#policy_hash #policy_hash} => String
1918
+ #
1919
+ # @example Request syntax with placeholder values
1920
+ #
1921
+ # resp = client.get_configured_audience_model_policy({
1922
+ # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
1923
+ # })
1924
+ #
1925
+ # @example Response structure
1926
+ #
1927
+ # resp.configured_audience_model_arn #=> String
1928
+ # resp.configured_audience_model_policy #=> String
1929
+ # resp.policy_hash #=> String
1930
+ #
1931
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetConfiguredAudienceModelPolicy AWS API Documentation
1932
+ #
1933
+ # @overload get_configured_audience_model_policy(params = {})
1934
+ # @param [Hash] params ({})
1935
+ def get_configured_audience_model_policy(params = {}, options = {})
1936
+ req = build_request(:get_configured_audience_model_policy, params)
1937
+ req.send_request(options)
1938
+ end
1939
+
1940
+ # Returns information about a configured model algorithm.
1941
+ #
1942
+ # @option params [required, String] :configured_model_algorithm_arn
1943
+ # The Amazon Resource Name (ARN) of the configured model algorithm that
1944
+ # you want to return information about.
1945
+ #
1946
+ # @return [Types::GetConfiguredModelAlgorithmResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1947
+ #
1948
+ # * {Types::GetConfiguredModelAlgorithmResponse#create_time #create_time} => Time
1949
+ # * {Types::GetConfiguredModelAlgorithmResponse#update_time #update_time} => Time
1950
+ # * {Types::GetConfiguredModelAlgorithmResponse#configured_model_algorithm_arn #configured_model_algorithm_arn} => String
1951
+ # * {Types::GetConfiguredModelAlgorithmResponse#name #name} => String
1952
+ # * {Types::GetConfiguredModelAlgorithmResponse#training_container_config #training_container_config} => Types::ContainerConfig
1953
+ # * {Types::GetConfiguredModelAlgorithmResponse#inference_container_config #inference_container_config} => Types::InferenceContainerConfig
1954
+ # * {Types::GetConfiguredModelAlgorithmResponse#role_arn #role_arn} => String
1955
+ # * {Types::GetConfiguredModelAlgorithmResponse#description #description} => String
1956
+ # * {Types::GetConfiguredModelAlgorithmResponse#tags #tags} => Hash&lt;String,String&gt;
1957
+ # * {Types::GetConfiguredModelAlgorithmResponse#kms_key_arn #kms_key_arn} => String
1958
+ #
1959
+ # @example Request syntax with placeholder values
1960
+ #
1961
+ # resp = client.get_configured_model_algorithm({
1962
+ # configured_model_algorithm_arn: "ConfiguredModelAlgorithmArn", # required
1963
+ # })
1964
+ #
1965
+ # @example Response structure
1966
+ #
1967
+ # resp.create_time #=> Time
1968
+ # resp.update_time #=> Time
1969
+ # resp.configured_model_algorithm_arn #=> String
1970
+ # resp.name #=> String
1971
+ # resp.training_container_config.image_uri #=> String
1972
+ # resp.training_container_config.entrypoint #=> Array
1973
+ # resp.training_container_config.entrypoint[0] #=> String
1974
+ # resp.training_container_config.arguments #=> Array
1975
+ # resp.training_container_config.arguments[0] #=> String
1976
+ # resp.training_container_config.metric_definitions #=> Array
1977
+ # resp.training_container_config.metric_definitions[0].name #=> String
1978
+ # resp.training_container_config.metric_definitions[0].regex #=> String
1979
+ # resp.inference_container_config.image_uri #=> String
1980
+ # resp.role_arn #=> String
1981
+ # resp.description #=> String
1982
+ # resp.tags #=> Hash
1983
+ # resp.tags["TagKey"] #=> String
1984
+ # resp.kms_key_arn #=> String
1985
+ #
1986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetConfiguredModelAlgorithm AWS API Documentation
1987
+ #
1988
+ # @overload get_configured_model_algorithm(params = {})
1989
+ # @param [Hash] params ({})
1990
+ def get_configured_model_algorithm(params = {}, options = {})
1991
+ req = build_request(:get_configured_model_algorithm, params)
1992
+ req.send_request(options)
1993
+ end
1994
+
1995
+ # Returns information about a configured model algorithm association.
1996
+ #
1997
+ # @option params [required, String] :configured_model_algorithm_association_arn
1998
+ # The Amazon Resource Name (ARN) of the configured model algorithm
1999
+ # association that you want to return information about.
2000
+ #
2001
+ # @option params [required, String] :membership_identifier
2002
+ # The membership ID of the member that created the configured model
2003
+ # algorithm association.
2004
+ #
2005
+ # @return [Types::GetConfiguredModelAlgorithmAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2006
+ #
2007
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#create_time #create_time} => Time
2008
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#update_time #update_time} => Time
2009
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
2010
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#membership_identifier #membership_identifier} => String
2011
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#collaboration_identifier #collaboration_identifier} => String
2012
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#configured_model_algorithm_arn #configured_model_algorithm_arn} => String
2013
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#name #name} => String
2014
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#privacy_configuration #privacy_configuration} => Types::PrivacyConfiguration
2015
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#description #description} => String
2016
+ # * {Types::GetConfiguredModelAlgorithmAssociationResponse#tags #tags} => Hash&lt;String,String&gt;
2017
+ #
2018
+ # @example Request syntax with placeholder values
2019
+ #
2020
+ # resp = client.get_configured_model_algorithm_association({
2021
+ # configured_model_algorithm_association_arn: "ConfiguredModelAlgorithmAssociationArn", # required
2022
+ # membership_identifier: "UUID", # required
2023
+ # })
2024
+ #
2025
+ # @example Response structure
2026
+ #
2027
+ # resp.create_time #=> Time
2028
+ # resp.update_time #=> Time
2029
+ # resp.configured_model_algorithm_association_arn #=> String
2030
+ # resp.membership_identifier #=> String
2031
+ # resp.collaboration_identifier #=> String
2032
+ # resp.configured_model_algorithm_arn #=> String
2033
+ # resp.name #=> String
2034
+ # resp.privacy_configuration.policies.trained_models.container_logs #=> Array
2035
+ # resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids #=> Array
2036
+ # resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids[0] #=> String
2037
+ # resp.privacy_configuration.policies.trained_models.container_logs[0].filter_pattern #=> String
2038
+ # resp.privacy_configuration.policies.trained_models.container_metrics.noise_level #=> String, one of "HIGH", "MEDIUM", "LOW", "NONE"
2039
+ # resp.privacy_configuration.policies.trained_model_exports.max_size.unit #=> String, one of "GB"
2040
+ # resp.privacy_configuration.policies.trained_model_exports.max_size.value #=> Float
2041
+ # resp.privacy_configuration.policies.trained_model_exports.files_to_export #=> Array
2042
+ # resp.privacy_configuration.policies.trained_model_exports.files_to_export[0] #=> String, one of "MODEL", "OUTPUT"
2043
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs #=> Array
2044
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs[0].allowed_account_ids #=> Array
2045
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs[0].allowed_account_ids[0] #=> String
2046
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.container_logs[0].filter_pattern #=> String
2047
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.max_output_size.unit #=> String, one of "GB"
2048
+ # resp.privacy_configuration.policies.trained_model_inference_jobs.max_output_size.value #=> Float
2049
+ # resp.description #=> String
2050
+ # resp.tags #=> Hash
2051
+ # resp.tags["TagKey"] #=> String
2052
+ #
2053
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetConfiguredModelAlgorithmAssociation AWS API Documentation
2054
+ #
2055
+ # @overload get_configured_model_algorithm_association(params = {})
2056
+ # @param [Hash] params ({})
2057
+ def get_configured_model_algorithm_association(params = {}, options = {})
2058
+ req = build_request(:get_configured_model_algorithm_association, params)
2059
+ req.send_request(options)
2060
+ end
2061
+
2062
+ # Returns information about a specific ML configuration.
2063
+ #
2064
+ # @option params [required, String] :membership_identifier
2065
+ # The membership ID of the member that owns the ML configuration you
2066
+ # want to return information about.
2067
+ #
2068
+ # @return [Types::GetMLConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2069
+ #
2070
+ # * {Types::GetMLConfigurationResponse#membership_identifier #membership_identifier} => String
2071
+ # * {Types::GetMLConfigurationResponse#default_output_location #default_output_location} => Types::MLOutputConfiguration
2072
+ # * {Types::GetMLConfigurationResponse#create_time #create_time} => Time
2073
+ # * {Types::GetMLConfigurationResponse#update_time #update_time} => Time
2074
+ #
2075
+ # @example Request syntax with placeholder values
2076
+ #
2077
+ # resp = client.get_ml_configuration({
2078
+ # membership_identifier: "UUID", # required
2079
+ # })
2080
+ #
2081
+ # @example Response structure
2082
+ #
2083
+ # resp.membership_identifier #=> String
2084
+ # resp.default_output_location.destination.s3_destination.s3_uri #=> String
2085
+ # resp.default_output_location.role_arn #=> String
2086
+ # resp.create_time #=> Time
2087
+ # resp.update_time #=> Time
2088
+ #
2089
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetMLConfiguration AWS API Documentation
2090
+ #
2091
+ # @overload get_ml_configuration(params = {})
2092
+ # @param [Hash] params ({})
2093
+ def get_ml_configuration(params = {}, options = {})
2094
+ req = build_request(:get_ml_configuration, params)
2095
+ req.send_request(options)
2096
+ end
2097
+
2098
+ # Returns information about an ML input channel.
2099
+ #
2100
+ # @option params [required, String] :ml_input_channel_arn
2101
+ # The Amazon Resource Name (ARN) of the ML input channel that you want
2102
+ # to get.
2103
+ #
2104
+ # @option params [required, String] :membership_identifier
2105
+ # The membership ID of the membership that contains the ML input channel
2106
+ # that you want to get.
2107
+ #
2108
+ # @return [Types::GetMLInputChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2109
+ #
2110
+ # * {Types::GetMLInputChannelResponse#create_time #create_time} => Time
2111
+ # * {Types::GetMLInputChannelResponse#update_time #update_time} => Time
2112
+ # * {Types::GetMLInputChannelResponse#membership_identifier #membership_identifier} => String
2113
+ # * {Types::GetMLInputChannelResponse#collaboration_identifier #collaboration_identifier} => String
2114
+ # * {Types::GetMLInputChannelResponse#input_channel #input_channel} => Types::InputChannel
2115
+ # * {Types::GetMLInputChannelResponse#protected_query_identifier #protected_query_identifier} => String
2116
+ # * {Types::GetMLInputChannelResponse#ml_input_channel_arn #ml_input_channel_arn} => String
2117
+ # * {Types::GetMLInputChannelResponse#name #name} => String
2118
+ # * {Types::GetMLInputChannelResponse#configured_model_algorithm_associations #configured_model_algorithm_associations} => Array&lt;String&gt;
2119
+ # * {Types::GetMLInputChannelResponse#status #status} => String
2120
+ # * {Types::GetMLInputChannelResponse#status_details #status_details} => Types::StatusDetails
2121
+ # * {Types::GetMLInputChannelResponse#retention_in_days #retention_in_days} => Integer
2122
+ # * {Types::GetMLInputChannelResponse#number_of_records #number_of_records} => Integer
2123
+ # * {Types::GetMLInputChannelResponse#number_of_files #number_of_files} => Float
2124
+ # * {Types::GetMLInputChannelResponse#size_in_gb #size_in_gb} => Float
2125
+ # * {Types::GetMLInputChannelResponse#description #description} => String
2126
+ # * {Types::GetMLInputChannelResponse#kms_key_arn #kms_key_arn} => String
2127
+ # * {Types::GetMLInputChannelResponse#tags #tags} => Hash&lt;String,String&gt;
2128
+ #
2129
+ # @example Request syntax with placeholder values
2130
+ #
2131
+ # resp = client.get_ml_input_channel({
2132
+ # ml_input_channel_arn: "MLInputChannelArn", # required
2133
+ # membership_identifier: "UUID", # required
2134
+ # })
2135
+ #
2136
+ # @example Response structure
2137
+ #
2138
+ # resp.create_time #=> Time
2139
+ # resp.update_time #=> Time
2140
+ # resp.membership_identifier #=> String
2141
+ # resp.collaboration_identifier #=> String
2142
+ # resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.query_string #=> String
2143
+ # resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.analysis_template_arn #=> String
2144
+ # resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.parameters #=> Hash
2145
+ # resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.parameters["ParameterKey"] #=> String
2146
+ # resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
2147
+ # resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.number #=> Integer
2148
+ # resp.input_channel.role_arn #=> String
2149
+ # resp.protected_query_identifier #=> String
2150
+ # resp.ml_input_channel_arn #=> String
2151
+ # resp.name #=> String
2152
+ # resp.configured_model_algorithm_associations #=> Array
2153
+ # resp.configured_model_algorithm_associations[0] #=> String
2154
+ # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE"
2155
+ # resp.status_details.status_code #=> String
2156
+ # resp.status_details.message #=> String
2157
+ # resp.retention_in_days #=> Integer
2158
+ # resp.number_of_records #=> Integer
2159
+ # resp.number_of_files #=> Float
2160
+ # resp.size_in_gb #=> Float
2161
+ # resp.description #=> String
2162
+ # resp.kms_key_arn #=> String
2163
+ # resp.tags #=> Hash
2164
+ # resp.tags["TagKey"] #=> String
2165
+ #
2166
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetMLInputChannel AWS API Documentation
2167
+ #
2168
+ # @overload get_ml_input_channel(params = {})
2169
+ # @param [Hash] params ({})
2170
+ def get_ml_input_channel(params = {}, options = {})
2171
+ req = build_request(:get_ml_input_channel, params)
2172
+ req.send_request(options)
2173
+ end
2174
+
2175
+ # Returns information about a trained model.
2176
+ #
2177
+ # @option params [required, String] :trained_model_arn
2178
+ # The Amazon Resource Name (ARN) of the trained model that you are
2179
+ # interested in.
2180
+ #
2181
+ # @option params [required, String] :membership_identifier
2182
+ # The membership ID of the member that created the trained model that
2183
+ # you are interested in.
2184
+ #
2185
+ # @return [Types::GetTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2186
+ #
2187
+ # * {Types::GetTrainedModelResponse#membership_identifier #membership_identifier} => String
2188
+ # * {Types::GetTrainedModelResponse#collaboration_identifier #collaboration_identifier} => String
2189
+ # * {Types::GetTrainedModelResponse#trained_model_arn #trained_model_arn} => String
2190
+ # * {Types::GetTrainedModelResponse#name #name} => String
2191
+ # * {Types::GetTrainedModelResponse#description #description} => String
2192
+ # * {Types::GetTrainedModelResponse#status #status} => String
2193
+ # * {Types::GetTrainedModelResponse#status_details #status_details} => Types::StatusDetails
2194
+ # * {Types::GetTrainedModelResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
2195
+ # * {Types::GetTrainedModelResponse#resource_config #resource_config} => Types::ResourceConfig
2196
+ # * {Types::GetTrainedModelResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
2197
+ # * {Types::GetTrainedModelResponse#metrics_status #metrics_status} => String
2198
+ # * {Types::GetTrainedModelResponse#metrics_status_details #metrics_status_details} => String
2199
+ # * {Types::GetTrainedModelResponse#logs_status #logs_status} => String
2200
+ # * {Types::GetTrainedModelResponse#logs_status_details #logs_status_details} => String
2201
+ # * {Types::GetTrainedModelResponse#training_container_image_digest #training_container_image_digest} => String
2202
+ # * {Types::GetTrainedModelResponse#create_time #create_time} => Time
2203
+ # * {Types::GetTrainedModelResponse#update_time #update_time} => Time
2204
+ # * {Types::GetTrainedModelResponse#hyperparameters #hyperparameters} => Hash&lt;String,String&gt;
2205
+ # * {Types::GetTrainedModelResponse#environment #environment} => Hash&lt;String,String&gt;
2206
+ # * {Types::GetTrainedModelResponse#kms_key_arn #kms_key_arn} => String
2207
+ # * {Types::GetTrainedModelResponse#tags #tags} => Hash&lt;String,String&gt;
2208
+ # * {Types::GetTrainedModelResponse#data_channels #data_channels} => Array&lt;Types::ModelTrainingDataChannel&gt;
918
2209
  #
919
2210
  # @example Request syntax with placeholder values
920
2211
  #
921
- # resp = client.get_audience_generation_job({
922
- # audience_generation_job_arn: "AudienceGenerationJobArn", # required
2212
+ # resp = client.get_trained_model({
2213
+ # trained_model_arn: "TrainedModelArn", # required
2214
+ # membership_identifier: "UUID", # required
923
2215
  # })
924
2216
  #
925
2217
  # @example Response structure
926
2218
  #
2219
+ # resp.membership_identifier #=> String
2220
+ # resp.collaboration_identifier #=> String
2221
+ # resp.trained_model_arn #=> String
2222
+ # resp.name #=> String
2223
+ # resp.description #=> String
2224
+ # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED"
2225
+ # resp.status_details.status_code #=> String
2226
+ # resp.status_details.message #=> String
2227
+ # resp.configured_model_algorithm_association_arn #=> String
2228
+ # resp.resource_config.instance_count #=> Integer
2229
+ # resp.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.m6i.large", "ml.m6i.xlarge", "ml.m6i.2xlarge", "ml.m6i.4xlarge", "ml.m6i.8xlarge", "ml.m6i.12xlarge", "ml.m6i.16xlarge", "ml.m6i.24xlarge", "ml.m6i.32xlarge", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.8xlarge", "ml.c6i.4xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.8xlarge", "ml.r5d.12xlarge", "ml.r5d.16xlarge", "ml.r5d.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
2230
+ # resp.resource_config.volume_size_in_gb #=> Integer
2231
+ # resp.stopping_condition.max_runtime_in_seconds #=> Integer
2232
+ # resp.metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
2233
+ # resp.metrics_status_details #=> String
2234
+ # resp.logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
2235
+ # resp.logs_status_details #=> String
2236
+ # resp.training_container_image_digest #=> String
927
2237
  # resp.create_time #=> Time
928
2238
  # resp.update_time #=> Time
929
- # resp.audience_generation_job_arn #=> String
2239
+ # resp.hyperparameters #=> Hash
2240
+ # resp.hyperparameters["HyperParametersKeyString"] #=> String
2241
+ # resp.environment #=> Hash
2242
+ # resp.environment["EnvironmentKeyString"] #=> String
2243
+ # resp.kms_key_arn #=> String
2244
+ # resp.tags #=> Hash
2245
+ # resp.tags["TagKey"] #=> String
2246
+ # resp.data_channels #=> Array
2247
+ # resp.data_channels[0].ml_input_channel_arn #=> String
2248
+ # resp.data_channels[0].channel_name #=> String
2249
+ #
2250
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainedModel AWS API Documentation
2251
+ #
2252
+ # @overload get_trained_model(params = {})
2253
+ # @param [Hash] params ({})
2254
+ def get_trained_model(params = {}, options = {})
2255
+ req = build_request(:get_trained_model, params)
2256
+ req.send_request(options)
2257
+ end
2258
+
2259
+ # Returns information about a trained model inference job.
2260
+ #
2261
+ # @option params [required, String] :membership_identifier
2262
+ # Provides the membership ID of the membership that contains the trained
2263
+ # model inference job that you are interested in.
2264
+ #
2265
+ # @option params [required, String] :trained_model_inference_job_arn
2266
+ # Provides the Amazon Resource Name (ARN) of the trained model inference
2267
+ # job that you are interested in.
2268
+ #
2269
+ # @return [Types::GetTrainedModelInferenceJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2270
+ #
2271
+ # * {Types::GetTrainedModelInferenceJobResponse#create_time #create_time} => Time
2272
+ # * {Types::GetTrainedModelInferenceJobResponse#update_time #update_time} => Time
2273
+ # * {Types::GetTrainedModelInferenceJobResponse#trained_model_inference_job_arn #trained_model_inference_job_arn} => String
2274
+ # * {Types::GetTrainedModelInferenceJobResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
2275
+ # * {Types::GetTrainedModelInferenceJobResponse#name #name} => String
2276
+ # * {Types::GetTrainedModelInferenceJobResponse#status #status} => String
2277
+ # * {Types::GetTrainedModelInferenceJobResponse#trained_model_arn #trained_model_arn} => String
2278
+ # * {Types::GetTrainedModelInferenceJobResponse#resource_config #resource_config} => Types::InferenceResourceConfig
2279
+ # * {Types::GetTrainedModelInferenceJobResponse#output_configuration #output_configuration} => Types::InferenceOutputConfiguration
2280
+ # * {Types::GetTrainedModelInferenceJobResponse#membership_identifier #membership_identifier} => String
2281
+ # * {Types::GetTrainedModelInferenceJobResponse#data_source #data_source} => Types::ModelInferenceDataSource
2282
+ # * {Types::GetTrainedModelInferenceJobResponse#container_execution_parameters #container_execution_parameters} => Types::InferenceContainerExecutionParameters
2283
+ # * {Types::GetTrainedModelInferenceJobResponse#status_details #status_details} => Types::StatusDetails
2284
+ # * {Types::GetTrainedModelInferenceJobResponse#description #description} => String
2285
+ # * {Types::GetTrainedModelInferenceJobResponse#inference_container_image_digest #inference_container_image_digest} => String
2286
+ # * {Types::GetTrainedModelInferenceJobResponse#environment #environment} => Hash&lt;String,String&gt;
2287
+ # * {Types::GetTrainedModelInferenceJobResponse#kms_key_arn #kms_key_arn} => String
2288
+ # * {Types::GetTrainedModelInferenceJobResponse#metrics_status #metrics_status} => String
2289
+ # * {Types::GetTrainedModelInferenceJobResponse#metrics_status_details #metrics_status_details} => String
2290
+ # * {Types::GetTrainedModelInferenceJobResponse#logs_status #logs_status} => String
2291
+ # * {Types::GetTrainedModelInferenceJobResponse#logs_status_details #logs_status_details} => String
2292
+ # * {Types::GetTrainedModelInferenceJobResponse#tags #tags} => Hash&lt;String,String&gt;
2293
+ #
2294
+ # @example Request syntax with placeholder values
2295
+ #
2296
+ # resp = client.get_trained_model_inference_job({
2297
+ # membership_identifier: "UUID", # required
2298
+ # trained_model_inference_job_arn: "TrainedModelInferenceJobArn", # required
2299
+ # })
2300
+ #
2301
+ # @example Response structure
2302
+ #
2303
+ # resp.create_time #=> Time
2304
+ # resp.update_time #=> Time
2305
+ # resp.trained_model_inference_job_arn #=> String
2306
+ # resp.configured_model_algorithm_association_arn #=> String
930
2307
  # resp.name #=> String
931
- # resp.description #=> String
932
- # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
2308
+ # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED", "INACTIVE"
2309
+ # resp.trained_model_arn #=> String
2310
+ # resp.resource_config.instance_type #=> String, one of "ml.r7i.48xlarge", "ml.r6i.16xlarge", "ml.m6i.xlarge", "ml.m5.4xlarge", "ml.p2.xlarge", "ml.m4.16xlarge", "ml.r7i.16xlarge", "ml.m7i.xlarge", "ml.m6i.12xlarge", "ml.r7i.8xlarge", "ml.r7i.large", "ml.m7i.12xlarge", "ml.m6i.24xlarge", "ml.m7i.24xlarge", "ml.r6i.8xlarge", "ml.r6i.large", "ml.g5.2xlarge", "ml.m5.large", "ml.p3.16xlarge", "ml.m7i.48xlarge", "ml.m6i.16xlarge", "ml.p2.16xlarge", "ml.g5.4xlarge", "ml.m7i.16xlarge", "ml.c4.2xlarge", "ml.c5.2xlarge", "ml.c6i.32xlarge", "ml.c4.4xlarge", "ml.g5.8xlarge", "ml.c6i.xlarge", "ml.c5.4xlarge", "ml.g4dn.xlarge", "ml.c7i.xlarge", "ml.c6i.12xlarge", "ml.g4dn.12xlarge", "ml.c7i.12xlarge", "ml.c6i.24xlarge", "ml.g4dn.2xlarge", "ml.c7i.24xlarge", "ml.c7i.2xlarge", "ml.c4.8xlarge", "ml.c6i.2xlarge", "ml.g4dn.4xlarge", "ml.c7i.48xlarge", "ml.c7i.4xlarge", "ml.c6i.16xlarge", "ml.c5.9xlarge", "ml.g4dn.16xlarge", "ml.c7i.16xlarge", "ml.c6i.4xlarge", "ml.c5.xlarge", "ml.c4.xlarge", "ml.g4dn.8xlarge", "ml.c7i.8xlarge", "ml.c7i.large", "ml.g5.xlarge", "ml.c6i.8xlarge", "ml.c6i.large", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.m7i.2xlarge", "ml.c5.18xlarge", "ml.g5.48xlarge", "ml.m6i.2xlarge", "ml.g5.16xlarge", "ml.m7i.4xlarge", "ml.p3.2xlarge", "ml.r6i.32xlarge", "ml.m6i.4xlarge", "ml.m5.xlarge", "ml.m4.10xlarge", "ml.r6i.xlarge", "ml.m5.12xlarge", "ml.m4.xlarge", "ml.r7i.2xlarge", "ml.r7i.xlarge", "ml.r6i.12xlarge", "ml.m5.24xlarge", "ml.r7i.12xlarge", "ml.m7i.8xlarge", "ml.m7i.large", "ml.r6i.24xlarge", "ml.r6i.2xlarge", "ml.m4.2xlarge", "ml.r7i.24xlarge", "ml.r7i.4xlarge", "ml.m6i.8xlarge", "ml.m6i.large", "ml.m5.2xlarge", "ml.p2.8xlarge", "ml.r6i.4xlarge", "ml.m6i.32xlarge", "ml.p3.8xlarge", "ml.m4.4xlarge"
2311
+ # resp.resource_config.instance_count #=> Integer
2312
+ # resp.output_configuration.accept #=> String
2313
+ # resp.output_configuration.members #=> Array
2314
+ # resp.output_configuration.members[0].account_id #=> String
2315
+ # resp.membership_identifier #=> String
2316
+ # resp.data_source.ml_input_channel_arn #=> String
2317
+ # resp.container_execution_parameters.max_payload_in_mb #=> Integer
933
2318
  # resp.status_details.status_code #=> String
934
2319
  # resp.status_details.message #=> String
935
- # resp.configured_audience_model_arn #=> String
936
- # resp.seed_audience.data_source.s3_uri #=> String
937
- # resp.seed_audience.role_arn #=> String
938
- # resp.seed_audience.sql_parameters.query_string #=> String
939
- # resp.seed_audience.sql_parameters.analysis_template_arn #=> String
940
- # resp.seed_audience.sql_parameters.parameters #=> Hash
941
- # resp.seed_audience.sql_parameters.parameters["ParameterKey"] #=> String
942
- # resp.include_seed_in_output #=> Boolean
943
- # resp.collaboration_id #=> String
944
- # resp.metrics.relevance_metrics #=> Array
945
- # resp.metrics.relevance_metrics[0].audience_size.type #=> String, one of "ABSOLUTE", "PERCENTAGE"
946
- # resp.metrics.relevance_metrics[0].audience_size.value #=> Integer
947
- # resp.metrics.relevance_metrics[0].score #=> Float
948
- # resp.metrics.recall_metric #=> Float
949
- # resp.started_by #=> String
2320
+ # resp.description #=> String
2321
+ # resp.inference_container_image_digest #=> String
2322
+ # resp.environment #=> Hash
2323
+ # resp.environment["InferenceEnvironmentMapKeyString"] #=> String
2324
+ # resp.kms_key_arn #=> String
2325
+ # resp.metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
2326
+ # resp.metrics_status_details #=> String
2327
+ # resp.logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
2328
+ # resp.logs_status_details #=> String
950
2329
  # resp.tags #=> Hash
951
2330
  # resp.tags["TagKey"] #=> String
952
- # resp.protected_query_identifier #=> String
953
2331
  #
954
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetAudienceGenerationJob AWS API Documentation
2332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainedModelInferenceJob AWS API Documentation
2333
+ #
2334
+ # @overload get_trained_model_inference_job(params = {})
2335
+ # @param [Hash] params ({})
2336
+ def get_trained_model_inference_job(params = {}, options = {})
2337
+ req = build_request(:get_trained_model_inference_job, params)
2338
+ req.send_request(options)
2339
+ end
2340
+
2341
+ # Returns information about a training dataset.
2342
+ #
2343
+ # @option params [required, String] :training_dataset_arn
2344
+ # The Amazon Resource Name (ARN) of the training dataset that you are
2345
+ # interested in.
2346
+ #
2347
+ # @return [Types::GetTrainingDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2348
+ #
2349
+ # * {Types::GetTrainingDatasetResponse#create_time #create_time} => Time
2350
+ # * {Types::GetTrainingDatasetResponse#update_time #update_time} => Time
2351
+ # * {Types::GetTrainingDatasetResponse#training_dataset_arn #training_dataset_arn} => String
2352
+ # * {Types::GetTrainingDatasetResponse#name #name} => String
2353
+ # * {Types::GetTrainingDatasetResponse#training_data #training_data} => Array&lt;Types::Dataset&gt;
2354
+ # * {Types::GetTrainingDatasetResponse#status #status} => String
2355
+ # * {Types::GetTrainingDatasetResponse#role_arn #role_arn} => String
2356
+ # * {Types::GetTrainingDatasetResponse#tags #tags} => Hash&lt;String,String&gt;
2357
+ # * {Types::GetTrainingDatasetResponse#description #description} => String
2358
+ #
2359
+ # @example Request syntax with placeholder values
2360
+ #
2361
+ # resp = client.get_training_dataset({
2362
+ # training_dataset_arn: "TrainingDatasetArn", # required
2363
+ # })
2364
+ #
2365
+ # @example Response structure
2366
+ #
2367
+ # resp.create_time #=> Time
2368
+ # resp.update_time #=> Time
2369
+ # resp.training_dataset_arn #=> String
2370
+ # resp.name #=> String
2371
+ # resp.training_data #=> Array
2372
+ # resp.training_data[0].type #=> String, one of "INTERACTIONS"
2373
+ # resp.training_data[0].input_config.schema #=> Array
2374
+ # resp.training_data[0].input_config.schema[0].column_name #=> String
2375
+ # resp.training_data[0].input_config.schema[0].column_types #=> Array
2376
+ # resp.training_data[0].input_config.schema[0].column_types[0] #=> String, one of "USER_ID", "ITEM_ID", "TIMESTAMP", "CATEGORICAL_FEATURE", "NUMERICAL_FEATURE"
2377
+ # resp.training_data[0].input_config.data_source.glue_data_source.table_name #=> String
2378
+ # resp.training_data[0].input_config.data_source.glue_data_source.database_name #=> String
2379
+ # resp.training_data[0].input_config.data_source.glue_data_source.catalog_id #=> String
2380
+ # resp.status #=> String, one of "ACTIVE"
2381
+ # resp.role_arn #=> String
2382
+ # resp.tags #=> Hash
2383
+ # resp.tags["TagKey"] #=> String
2384
+ # resp.description #=> String
2385
+ #
2386
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainingDataset AWS API Documentation
2387
+ #
2388
+ # @overload get_training_dataset(params = {})
2389
+ # @param [Hash] params ({})
2390
+ def get_training_dataset(params = {}, options = {})
2391
+ req = build_request(:get_training_dataset, params)
2392
+ req.send_request(options)
2393
+ end
2394
+
2395
+ # Returns a list of the audience export jobs.
2396
+ #
2397
+ # @option params [String] :next_token
2398
+ # The token value retrieved from a previous call to access the next page
2399
+ # of results.
2400
+ #
2401
+ # @option params [Integer] :max_results
2402
+ # The maximum size of the results that is returned per call.
2403
+ #
2404
+ # @option params [String] :audience_generation_job_arn
2405
+ # The Amazon Resource Name (ARN) of the audience generation job that you
2406
+ # are interested in.
2407
+ #
2408
+ # @return [Types::ListAudienceExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2409
+ #
2410
+ # * {Types::ListAudienceExportJobsResponse#next_token #next_token} => String
2411
+ # * {Types::ListAudienceExportJobsResponse#audience_export_jobs #audience_export_jobs} => Array&lt;Types::AudienceExportJobSummary&gt;
2412
+ #
2413
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2414
+ #
2415
+ # @example Request syntax with placeholder values
2416
+ #
2417
+ # resp = client.list_audience_export_jobs({
2418
+ # next_token: "NextToken",
2419
+ # max_results: 1,
2420
+ # audience_generation_job_arn: "AudienceGenerationJobArn",
2421
+ # })
2422
+ #
2423
+ # @example Response structure
2424
+ #
2425
+ # resp.next_token #=> String
2426
+ # resp.audience_export_jobs #=> Array
2427
+ # resp.audience_export_jobs[0].create_time #=> Time
2428
+ # resp.audience_export_jobs[0].update_time #=> Time
2429
+ # resp.audience_export_jobs[0].name #=> String
2430
+ # resp.audience_export_jobs[0].audience_generation_job_arn #=> String
2431
+ # resp.audience_export_jobs[0].audience_size.type #=> String, one of "ABSOLUTE", "PERCENTAGE"
2432
+ # resp.audience_export_jobs[0].audience_size.value #=> Integer
2433
+ # resp.audience_export_jobs[0].description #=> String
2434
+ # resp.audience_export_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE"
2435
+ # resp.audience_export_jobs[0].status_details.status_code #=> String
2436
+ # resp.audience_export_jobs[0].status_details.message #=> String
2437
+ # resp.audience_export_jobs[0].output_location #=> String
2438
+ #
2439
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListAudienceExportJobs AWS API Documentation
2440
+ #
2441
+ # @overload list_audience_export_jobs(params = {})
2442
+ # @param [Hash] params ({})
2443
+ def list_audience_export_jobs(params = {}, options = {})
2444
+ req = build_request(:list_audience_export_jobs, params)
2445
+ req.send_request(options)
2446
+ end
2447
+
2448
+ # Returns a list of audience generation jobs.
2449
+ #
2450
+ # @option params [String] :next_token
2451
+ # The token value retrieved from a previous call to access the next page
2452
+ # of results.
2453
+ #
2454
+ # @option params [Integer] :max_results
2455
+ # The maximum size of the results that is returned per call.
2456
+ #
2457
+ # @option params [String] :configured_audience_model_arn
2458
+ # The Amazon Resource Name (ARN) of the configured audience model that
2459
+ # was used for the audience generation jobs that you are interested in.
2460
+ #
2461
+ # @option params [String] :collaboration_id
2462
+ # The identifier of the collaboration that contains the audience
2463
+ # generation jobs that you are interested in.
2464
+ #
2465
+ # @return [Types::ListAudienceGenerationJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2466
+ #
2467
+ # * {Types::ListAudienceGenerationJobsResponse#next_token #next_token} => String
2468
+ # * {Types::ListAudienceGenerationJobsResponse#audience_generation_jobs #audience_generation_jobs} => Array&lt;Types::AudienceGenerationJobSummary&gt;
2469
+ #
2470
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2471
+ #
2472
+ # @example Request syntax with placeholder values
2473
+ #
2474
+ # resp = client.list_audience_generation_jobs({
2475
+ # next_token: "NextToken",
2476
+ # max_results: 1,
2477
+ # configured_audience_model_arn: "ConfiguredAudienceModelArn",
2478
+ # collaboration_id: "UUID",
2479
+ # })
2480
+ #
2481
+ # @example Response structure
2482
+ #
2483
+ # resp.next_token #=> String
2484
+ # resp.audience_generation_jobs #=> Array
2485
+ # resp.audience_generation_jobs[0].create_time #=> Time
2486
+ # resp.audience_generation_jobs[0].update_time #=> Time
2487
+ # resp.audience_generation_jobs[0].audience_generation_job_arn #=> String
2488
+ # resp.audience_generation_jobs[0].name #=> String
2489
+ # resp.audience_generation_jobs[0].description #=> String
2490
+ # resp.audience_generation_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
2491
+ # resp.audience_generation_jobs[0].configured_audience_model_arn #=> String
2492
+ # resp.audience_generation_jobs[0].collaboration_id #=> String
2493
+ # resp.audience_generation_jobs[0].started_by #=> String
2494
+ #
2495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListAudienceGenerationJobs AWS API Documentation
2496
+ #
2497
+ # @overload list_audience_generation_jobs(params = {})
2498
+ # @param [Hash] params ({})
2499
+ def list_audience_generation_jobs(params = {}, options = {})
2500
+ req = build_request(:list_audience_generation_jobs, params)
2501
+ req.send_request(options)
2502
+ end
2503
+
2504
+ # Returns a list of audience models.
2505
+ #
2506
+ # @option params [String] :next_token
2507
+ # The token value retrieved from a previous call to access the next page
2508
+ # of results.
2509
+ #
2510
+ # @option params [Integer] :max_results
2511
+ # The maximum size of the results that is returned per call.
2512
+ #
2513
+ # @return [Types::ListAudienceModelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2514
+ #
2515
+ # * {Types::ListAudienceModelsResponse#next_token #next_token} => String
2516
+ # * {Types::ListAudienceModelsResponse#audience_models #audience_models} => Array&lt;Types::AudienceModelSummary&gt;
2517
+ #
2518
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2519
+ #
2520
+ # @example Request syntax with placeholder values
2521
+ #
2522
+ # resp = client.list_audience_models({
2523
+ # next_token: "NextToken",
2524
+ # max_results: 1,
2525
+ # })
2526
+ #
2527
+ # @example Response structure
2528
+ #
2529
+ # resp.next_token #=> String
2530
+ # resp.audience_models #=> Array
2531
+ # resp.audience_models[0].create_time #=> Time
2532
+ # resp.audience_models[0].update_time #=> Time
2533
+ # resp.audience_models[0].audience_model_arn #=> String
2534
+ # resp.audience_models[0].name #=> String
2535
+ # resp.audience_models[0].training_dataset_arn #=> String
2536
+ # resp.audience_models[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
2537
+ # resp.audience_models[0].description #=> String
2538
+ #
2539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListAudienceModels AWS API Documentation
955
2540
  #
956
- # @overload get_audience_generation_job(params = {})
2541
+ # @overload list_audience_models(params = {})
957
2542
  # @param [Hash] params ({})
958
- def get_audience_generation_job(params = {}, options = {})
959
- req = build_request(:get_audience_generation_job, params)
2543
+ def list_audience_models(params = {}, options = {})
2544
+ req = build_request(:list_audience_models, params)
960
2545
  req.send_request(options)
961
2546
  end
962
2547
 
963
- # Returns information about an audience model
2548
+ # Returns a list of the configured model algorithm associations in a
2549
+ # collaboration.
964
2550
  #
965
- # @option params [required, String] :audience_model_arn
966
- # The Amazon Resource Name (ARN) of the audience model that you are
967
- # interested in.
2551
+ # @option params [String] :next_token
2552
+ # The token value retrieved from a previous call to access the next page
2553
+ # of results.
968
2554
  #
969
- # @return [Types::GetAudienceModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2555
+ # @option params [Integer] :max_results
2556
+ # The maximum size of the results that is returned per call.
970
2557
  #
971
- # * {Types::GetAudienceModelResponse#create_time #create_time} => Time
972
- # * {Types::GetAudienceModelResponse#update_time #update_time} => Time
973
- # * {Types::GetAudienceModelResponse#training_data_start_time #training_data_start_time} => Time
974
- # * {Types::GetAudienceModelResponse#training_data_end_time #training_data_end_time} => Time
975
- # * {Types::GetAudienceModelResponse#audience_model_arn #audience_model_arn} => String
976
- # * {Types::GetAudienceModelResponse#name #name} => String
977
- # * {Types::GetAudienceModelResponse#training_dataset_arn #training_dataset_arn} => String
978
- # * {Types::GetAudienceModelResponse#status #status} => String
979
- # * {Types::GetAudienceModelResponse#status_details #status_details} => Types::StatusDetails
980
- # * {Types::GetAudienceModelResponse#kms_key_arn #kms_key_arn} => String
981
- # * {Types::GetAudienceModelResponse#tags #tags} => Hash&lt;String,String&gt;
982
- # * {Types::GetAudienceModelResponse#description #description} => String
2558
+ # @option params [required, String] :collaboration_identifier
2559
+ # The collaboration ID of the collaboration that contains the configured
2560
+ # model algorithm associations that you are interested in.
2561
+ #
2562
+ # @return [Types::ListCollaborationConfiguredModelAlgorithmAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2563
+ #
2564
+ # * {Types::ListCollaborationConfiguredModelAlgorithmAssociationsResponse#next_token #next_token} => String
2565
+ # * {Types::ListCollaborationConfiguredModelAlgorithmAssociationsResponse#collaboration_configured_model_algorithm_associations #collaboration_configured_model_algorithm_associations} => Array&lt;Types::CollaborationConfiguredModelAlgorithmAssociationSummary&gt;
2566
+ #
2567
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
983
2568
  #
984
2569
  # @example Request syntax with placeholder values
985
2570
  #
986
- # resp = client.get_audience_model({
987
- # audience_model_arn: "AudienceModelArn", # required
2571
+ # resp = client.list_collaboration_configured_model_algorithm_associations({
2572
+ # next_token: "NextToken",
2573
+ # max_results: 1,
2574
+ # collaboration_identifier: "UUID", # required
988
2575
  # })
989
2576
  #
990
2577
  # @example Response structure
991
2578
  #
992
- # resp.create_time #=> Time
993
- # resp.update_time #=> Time
994
- # resp.training_data_start_time #=> Time
995
- # resp.training_data_end_time #=> Time
996
- # resp.audience_model_arn #=> String
997
- # resp.name #=> String
998
- # resp.training_dataset_arn #=> String
999
- # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
1000
- # resp.status_details.status_code #=> String
1001
- # resp.status_details.message #=> String
1002
- # resp.kms_key_arn #=> String
1003
- # resp.tags #=> Hash
1004
- # resp.tags["TagKey"] #=> String
1005
- # resp.description #=> String
1006
- #
1007
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetAudienceModel AWS API Documentation
1008
- #
1009
- # @overload get_audience_model(params = {})
2579
+ # resp.next_token #=> String
2580
+ # resp.collaboration_configured_model_algorithm_associations #=> Array
2581
+ # resp.collaboration_configured_model_algorithm_associations[0].create_time #=> Time
2582
+ # resp.collaboration_configured_model_algorithm_associations[0].update_time #=> Time
2583
+ # resp.collaboration_configured_model_algorithm_associations[0].configured_model_algorithm_association_arn #=> String
2584
+ # resp.collaboration_configured_model_algorithm_associations[0].name #=> String
2585
+ # resp.collaboration_configured_model_algorithm_associations[0].description #=> String
2586
+ # resp.collaboration_configured_model_algorithm_associations[0].membership_identifier #=> String
2587
+ # resp.collaboration_configured_model_algorithm_associations[0].collaboration_identifier #=> String
2588
+ # resp.collaboration_configured_model_algorithm_associations[0].configured_model_algorithm_arn #=> String
2589
+ # resp.collaboration_configured_model_algorithm_associations[0].creator_account_id #=> String
2590
+ #
2591
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListCollaborationConfiguredModelAlgorithmAssociations AWS API Documentation
2592
+ #
2593
+ # @overload list_collaboration_configured_model_algorithm_associations(params = {})
1010
2594
  # @param [Hash] params ({})
1011
- def get_audience_model(params = {}, options = {})
1012
- req = build_request(:get_audience_model, params)
2595
+ def list_collaboration_configured_model_algorithm_associations(params = {}, options = {})
2596
+ req = build_request(:list_collaboration_configured_model_algorithm_associations, params)
1013
2597
  req.send_request(options)
1014
2598
  end
1015
2599
 
1016
- # Returns information about a specified configured audience model.
2600
+ # Returns a list of the ML input channels in a collaboration.
1017
2601
  #
1018
- # @option params [required, String] :configured_audience_model_arn
1019
- # The Amazon Resource Name (ARN) of the configured audience model that
1020
- # you are interested in.
2602
+ # @option params [String] :next_token
2603
+ # The token value retrieved from a previous call to access the next page
2604
+ # of results.
1021
2605
  #
1022
- # @return [Types::GetConfiguredAudienceModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2606
+ # @option params [Integer] :max_results
2607
+ # The maximum number of results to return.
1023
2608
  #
1024
- # * {Types::GetConfiguredAudienceModelResponse#create_time #create_time} => Time
1025
- # * {Types::GetConfiguredAudienceModelResponse#update_time #update_time} => Time
1026
- # * {Types::GetConfiguredAudienceModelResponse#configured_audience_model_arn #configured_audience_model_arn} => String
1027
- # * {Types::GetConfiguredAudienceModelResponse#name #name} => String
1028
- # * {Types::GetConfiguredAudienceModelResponse#audience_model_arn #audience_model_arn} => String
1029
- # * {Types::GetConfiguredAudienceModelResponse#output_config #output_config} => Types::ConfiguredAudienceModelOutputConfig
1030
- # * {Types::GetConfiguredAudienceModelResponse#description #description} => String
1031
- # * {Types::GetConfiguredAudienceModelResponse#status #status} => String
1032
- # * {Types::GetConfiguredAudienceModelResponse#shared_audience_metrics #shared_audience_metrics} => Array&lt;String&gt;
1033
- # * {Types::GetConfiguredAudienceModelResponse#min_matching_seed_size #min_matching_seed_size} => Integer
1034
- # * {Types::GetConfiguredAudienceModelResponse#audience_size_config #audience_size_config} => Types::AudienceSizeConfig
1035
- # * {Types::GetConfiguredAudienceModelResponse#tags #tags} => Hash&lt;String,String&gt;
1036
- # * {Types::GetConfiguredAudienceModelResponse#child_resource_tag_on_create_policy #child_resource_tag_on_create_policy} => String
2609
+ # @option params [required, String] :collaboration_identifier
2610
+ # The collaboration ID of the collaboration that contains the ML input
2611
+ # channels that you want to list.
2612
+ #
2613
+ # @return [Types::ListCollaborationMLInputChannelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2614
+ #
2615
+ # * {Types::ListCollaborationMLInputChannelsResponse#next_token #next_token} => String
2616
+ # * {Types::ListCollaborationMLInputChannelsResponse#collaboration_ml_input_channels_list #collaboration_ml_input_channels_list} => Array&lt;Types::CollaborationMLInputChannelSummary&gt;
2617
+ #
2618
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1037
2619
  #
1038
2620
  # @example Request syntax with placeholder values
1039
2621
  #
1040
- # resp = client.get_configured_audience_model({
1041
- # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
2622
+ # resp = client.list_collaboration_ml_input_channels({
2623
+ # next_token: "NextToken",
2624
+ # max_results: 1,
2625
+ # collaboration_identifier: "UUID", # required
1042
2626
  # })
1043
2627
  #
1044
2628
  # @example Response structure
1045
2629
  #
1046
- # resp.create_time #=> Time
1047
- # resp.update_time #=> Time
1048
- # resp.configured_audience_model_arn #=> String
1049
- # resp.name #=> String
1050
- # resp.audience_model_arn #=> String
1051
- # resp.output_config.destination.s3_destination.s3_uri #=> String
1052
- # resp.output_config.role_arn #=> String
1053
- # resp.description #=> String
1054
- # resp.status #=> String, one of "ACTIVE"
1055
- # resp.shared_audience_metrics #=> Array
1056
- # resp.shared_audience_metrics[0] #=> String, one of "ALL", "NONE"
1057
- # resp.min_matching_seed_size #=> Integer
1058
- # resp.audience_size_config.audience_size_type #=> String, one of "ABSOLUTE", "PERCENTAGE"
1059
- # resp.audience_size_config.audience_size_bins #=> Array
1060
- # resp.audience_size_config.audience_size_bins[0] #=> Integer
1061
- # resp.tags #=> Hash
1062
- # resp.tags["TagKey"] #=> String
1063
- # resp.child_resource_tag_on_create_policy #=> String, one of "FROM_PARENT_RESOURCE", "NONE"
1064
- #
1065
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetConfiguredAudienceModel AWS API Documentation
1066
- #
1067
- # @overload get_configured_audience_model(params = {})
2630
+ # resp.next_token #=> String
2631
+ # resp.collaboration_ml_input_channels_list #=> Array
2632
+ # resp.collaboration_ml_input_channels_list[0].create_time #=> Time
2633
+ # resp.collaboration_ml_input_channels_list[0].update_time #=> Time
2634
+ # resp.collaboration_ml_input_channels_list[0].membership_identifier #=> String
2635
+ # resp.collaboration_ml_input_channels_list[0].collaboration_identifier #=> String
2636
+ # resp.collaboration_ml_input_channels_list[0].name #=> String
2637
+ # resp.collaboration_ml_input_channels_list[0].configured_model_algorithm_associations #=> Array
2638
+ # resp.collaboration_ml_input_channels_list[0].configured_model_algorithm_associations[0] #=> String
2639
+ # resp.collaboration_ml_input_channels_list[0].ml_input_channel_arn #=> String
2640
+ # resp.collaboration_ml_input_channels_list[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE"
2641
+ # resp.collaboration_ml_input_channels_list[0].creator_account_id #=> String
2642
+ # resp.collaboration_ml_input_channels_list[0].description #=> String
2643
+ #
2644
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListCollaborationMLInputChannels AWS API Documentation
2645
+ #
2646
+ # @overload list_collaboration_ml_input_channels(params = {})
1068
2647
  # @param [Hash] params ({})
1069
- def get_configured_audience_model(params = {}, options = {})
1070
- req = build_request(:get_configured_audience_model, params)
2648
+ def list_collaboration_ml_input_channels(params = {}, options = {})
2649
+ req = build_request(:list_collaboration_ml_input_channels, params)
1071
2650
  req.send_request(options)
1072
2651
  end
1073
2652
 
1074
- # Returns information about a configured audience model policy.
2653
+ # Returns a list of the export jobs for a trained model in a
2654
+ # collaboration.
1075
2655
  #
1076
- # @option params [required, String] :configured_audience_model_arn
1077
- # The Amazon Resource Name (ARN) of the configured audience model that
1078
- # you are interested in.
2656
+ # @option params [String] :next_token
2657
+ # The token value retrieved from a previous call to access the next page
2658
+ # of results.
1079
2659
  #
1080
- # @return [Types::GetConfiguredAudienceModelPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2660
+ # @option params [Integer] :max_results
2661
+ # The maximum size of the results that is returned per call.
1081
2662
  #
1082
- # * {Types::GetConfiguredAudienceModelPolicyResponse#configured_audience_model_arn #configured_audience_model_arn} => String
1083
- # * {Types::GetConfiguredAudienceModelPolicyResponse#configured_audience_model_policy #configured_audience_model_policy} => String
1084
- # * {Types::GetConfiguredAudienceModelPolicyResponse#policy_hash #policy_hash} => String
2663
+ # @option params [required, String] :collaboration_identifier
2664
+ # The collaboration ID of the collaboration that contains the trained
2665
+ # model export jobs that you are interested in.
2666
+ #
2667
+ # @option params [required, String] :trained_model_arn
2668
+ # The Amazon Resource Name (ARN) of the trained model that was used to
2669
+ # create the export jobs that you are interested in.
2670
+ #
2671
+ # @return [Types::ListCollaborationTrainedModelExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2672
+ #
2673
+ # * {Types::ListCollaborationTrainedModelExportJobsResponse#next_token #next_token} => String
2674
+ # * {Types::ListCollaborationTrainedModelExportJobsResponse#collaboration_trained_model_export_jobs #collaboration_trained_model_export_jobs} => Array&lt;Types::CollaborationTrainedModelExportJobSummary&gt;
2675
+ #
2676
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1085
2677
  #
1086
2678
  # @example Request syntax with placeholder values
1087
2679
  #
1088
- # resp = client.get_configured_audience_model_policy({
1089
- # configured_audience_model_arn: "ConfiguredAudienceModelArn", # required
2680
+ # resp = client.list_collaboration_trained_model_export_jobs({
2681
+ # next_token: "NextToken",
2682
+ # max_results: 1,
2683
+ # collaboration_identifier: "UUID", # required
2684
+ # trained_model_arn: "TrainedModelArn", # required
1090
2685
  # })
1091
2686
  #
1092
2687
  # @example Response structure
1093
2688
  #
1094
- # resp.configured_audience_model_arn #=> String
1095
- # resp.configured_audience_model_policy #=> String
1096
- # resp.policy_hash #=> String
1097
- #
1098
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetConfiguredAudienceModelPolicy AWS API Documentation
1099
- #
1100
- # @overload get_configured_audience_model_policy(params = {})
2689
+ # resp.next_token #=> String
2690
+ # resp.collaboration_trained_model_export_jobs #=> Array
2691
+ # resp.collaboration_trained_model_export_jobs[0].create_time #=> Time
2692
+ # resp.collaboration_trained_model_export_jobs[0].update_time #=> Time
2693
+ # resp.collaboration_trained_model_export_jobs[0].name #=> String
2694
+ # resp.collaboration_trained_model_export_jobs[0].output_configuration.members #=> Array
2695
+ # resp.collaboration_trained_model_export_jobs[0].output_configuration.members[0].account_id #=> String
2696
+ # resp.collaboration_trained_model_export_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE"
2697
+ # resp.collaboration_trained_model_export_jobs[0].status_details.status_code #=> String
2698
+ # resp.collaboration_trained_model_export_jobs[0].status_details.message #=> String
2699
+ # resp.collaboration_trained_model_export_jobs[0].description #=> String
2700
+ # resp.collaboration_trained_model_export_jobs[0].creator_account_id #=> String
2701
+ # resp.collaboration_trained_model_export_jobs[0].trained_model_arn #=> String
2702
+ # resp.collaboration_trained_model_export_jobs[0].membership_identifier #=> String
2703
+ # resp.collaboration_trained_model_export_jobs[0].collaboration_identifier #=> String
2704
+ #
2705
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListCollaborationTrainedModelExportJobs AWS API Documentation
2706
+ #
2707
+ # @overload list_collaboration_trained_model_export_jobs(params = {})
1101
2708
  # @param [Hash] params ({})
1102
- def get_configured_audience_model_policy(params = {}, options = {})
1103
- req = build_request(:get_configured_audience_model_policy, params)
2709
+ def list_collaboration_trained_model_export_jobs(params = {}, options = {})
2710
+ req = build_request(:list_collaboration_trained_model_export_jobs, params)
1104
2711
  req.send_request(options)
1105
2712
  end
1106
2713
 
1107
- # Returns information about a training dataset.
2714
+ # Returns a list of trained model inference jobs in a specified
2715
+ # collaboration.
1108
2716
  #
1109
- # @option params [required, String] :training_dataset_arn
1110
- # The Amazon Resource Name (ARN) of the training dataset that you are
1111
- # interested in.
2717
+ # @option params [String] :next_token
2718
+ # The token value retrieved from a previous call to access the next page
2719
+ # of results.
1112
2720
  #
1113
- # @return [Types::GetTrainingDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2721
+ # @option params [Integer] :max_results
2722
+ # The maximum size of the results that is returned per call.
1114
2723
  #
1115
- # * {Types::GetTrainingDatasetResponse#create_time #create_time} => Time
1116
- # * {Types::GetTrainingDatasetResponse#update_time #update_time} => Time
1117
- # * {Types::GetTrainingDatasetResponse#training_dataset_arn #training_dataset_arn} => String
1118
- # * {Types::GetTrainingDatasetResponse#name #name} => String
1119
- # * {Types::GetTrainingDatasetResponse#training_data #training_data} => Array&lt;Types::Dataset&gt;
1120
- # * {Types::GetTrainingDatasetResponse#status #status} => String
1121
- # * {Types::GetTrainingDatasetResponse#role_arn #role_arn} => String
1122
- # * {Types::GetTrainingDatasetResponse#tags #tags} => Hash&lt;String,String&gt;
1123
- # * {Types::GetTrainingDatasetResponse#description #description} => String
2724
+ # @option params [required, String] :collaboration_identifier
2725
+ # The collaboration ID of the collaboration that contains the trained
2726
+ # model inference jobs that you are interested in.
2727
+ #
2728
+ # @option params [String] :trained_model_arn
2729
+ # The Amazon Resource Name (ARN) of the trained model that was used to
2730
+ # create the trained model inference jobs that you are interested in.
2731
+ #
2732
+ # @return [Types::ListCollaborationTrainedModelInferenceJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2733
+ #
2734
+ # * {Types::ListCollaborationTrainedModelInferenceJobsResponse#next_token #next_token} => String
2735
+ # * {Types::ListCollaborationTrainedModelInferenceJobsResponse#collaboration_trained_model_inference_jobs #collaboration_trained_model_inference_jobs} => Array&lt;Types::CollaborationTrainedModelInferenceJobSummary&gt;
2736
+ #
2737
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1124
2738
  #
1125
2739
  # @example Request syntax with placeholder values
1126
2740
  #
1127
- # resp = client.get_training_dataset({
1128
- # training_dataset_arn: "TrainingDatasetArn", # required
2741
+ # resp = client.list_collaboration_trained_model_inference_jobs({
2742
+ # next_token: "NextToken",
2743
+ # max_results: 1,
2744
+ # collaboration_identifier: "UUID", # required
2745
+ # trained_model_arn: "TrainedModelArn",
1129
2746
  # })
1130
2747
  #
1131
2748
  # @example Response structure
1132
2749
  #
1133
- # resp.create_time #=> Time
1134
- # resp.update_time #=> Time
1135
- # resp.training_dataset_arn #=> String
1136
- # resp.name #=> String
1137
- # resp.training_data #=> Array
1138
- # resp.training_data[0].type #=> String, one of "INTERACTIONS"
1139
- # resp.training_data[0].input_config.schema #=> Array
1140
- # resp.training_data[0].input_config.schema[0].column_name #=> String
1141
- # resp.training_data[0].input_config.schema[0].column_types #=> Array
1142
- # resp.training_data[0].input_config.schema[0].column_types[0] #=> String, one of "USER_ID", "ITEM_ID", "TIMESTAMP", "CATEGORICAL_FEATURE", "NUMERICAL_FEATURE"
1143
- # resp.training_data[0].input_config.data_source.glue_data_source.table_name #=> String
1144
- # resp.training_data[0].input_config.data_source.glue_data_source.database_name #=> String
1145
- # resp.training_data[0].input_config.data_source.glue_data_source.catalog_id #=> String
1146
- # resp.status #=> String, one of "ACTIVE"
1147
- # resp.role_arn #=> String
1148
- # resp.tags #=> Hash
1149
- # resp.tags["TagKey"] #=> String
1150
- # resp.description #=> String
2750
+ # resp.next_token #=> String
2751
+ # resp.collaboration_trained_model_inference_jobs #=> Array
2752
+ # resp.collaboration_trained_model_inference_jobs[0].trained_model_inference_job_arn #=> String
2753
+ # resp.collaboration_trained_model_inference_jobs[0].configured_model_algorithm_association_arn #=> String
2754
+ # resp.collaboration_trained_model_inference_jobs[0].membership_identifier #=> String
2755
+ # resp.collaboration_trained_model_inference_jobs[0].trained_model_arn #=> String
2756
+ # resp.collaboration_trained_model_inference_jobs[0].collaboration_identifier #=> String
2757
+ # resp.collaboration_trained_model_inference_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED", "INACTIVE"
2758
+ # resp.collaboration_trained_model_inference_jobs[0].output_configuration.accept #=> String
2759
+ # resp.collaboration_trained_model_inference_jobs[0].output_configuration.members #=> Array
2760
+ # resp.collaboration_trained_model_inference_jobs[0].output_configuration.members[0].account_id #=> String
2761
+ # resp.collaboration_trained_model_inference_jobs[0].name #=> String
2762
+ # resp.collaboration_trained_model_inference_jobs[0].description #=> String
2763
+ # resp.collaboration_trained_model_inference_jobs[0].metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
2764
+ # resp.collaboration_trained_model_inference_jobs[0].metrics_status_details #=> String
2765
+ # resp.collaboration_trained_model_inference_jobs[0].logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
2766
+ # resp.collaboration_trained_model_inference_jobs[0].logs_status_details #=> String
2767
+ # resp.collaboration_trained_model_inference_jobs[0].create_time #=> Time
2768
+ # resp.collaboration_trained_model_inference_jobs[0].update_time #=> Time
2769
+ # resp.collaboration_trained_model_inference_jobs[0].creator_account_id #=> String
2770
+ #
2771
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListCollaborationTrainedModelInferenceJobs AWS API Documentation
2772
+ #
2773
+ # @overload list_collaboration_trained_model_inference_jobs(params = {})
2774
+ # @param [Hash] params ({})
2775
+ def list_collaboration_trained_model_inference_jobs(params = {}, options = {})
2776
+ req = build_request(:list_collaboration_trained_model_inference_jobs, params)
2777
+ req.send_request(options)
2778
+ end
2779
+
2780
+ # Returns a list of the trained models in a collaboration.
1151
2781
  #
1152
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainingDataset AWS API Documentation
2782
+ # @option params [String] :next_token
2783
+ # The token value retrieved from a previous call to access the next page
2784
+ # of results.
1153
2785
  #
1154
- # @overload get_training_dataset(params = {})
2786
+ # @option params [Integer] :max_results
2787
+ # The maximum size of the results that is returned per call.
2788
+ #
2789
+ # @option params [required, String] :collaboration_identifier
2790
+ # The collaboration ID of the collaboration that contains the trained
2791
+ # models you are interested in.
2792
+ #
2793
+ # @return [Types::ListCollaborationTrainedModelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2794
+ #
2795
+ # * {Types::ListCollaborationTrainedModelsResponse#next_token #next_token} => String
2796
+ # * {Types::ListCollaborationTrainedModelsResponse#collaboration_trained_models #collaboration_trained_models} => Array&lt;Types::CollaborationTrainedModelSummary&gt;
2797
+ #
2798
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2799
+ #
2800
+ # @example Request syntax with placeholder values
2801
+ #
2802
+ # resp = client.list_collaboration_trained_models({
2803
+ # next_token: "NextToken",
2804
+ # max_results: 1,
2805
+ # collaboration_identifier: "UUID", # required
2806
+ # })
2807
+ #
2808
+ # @example Response structure
2809
+ #
2810
+ # resp.next_token #=> String
2811
+ # resp.collaboration_trained_models #=> Array
2812
+ # resp.collaboration_trained_models[0].create_time #=> Time
2813
+ # resp.collaboration_trained_models[0].update_time #=> Time
2814
+ # resp.collaboration_trained_models[0].trained_model_arn #=> String
2815
+ # resp.collaboration_trained_models[0].name #=> String
2816
+ # resp.collaboration_trained_models[0].description #=> String
2817
+ # resp.collaboration_trained_models[0].membership_identifier #=> String
2818
+ # resp.collaboration_trained_models[0].collaboration_identifier #=> String
2819
+ # resp.collaboration_trained_models[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED"
2820
+ # resp.collaboration_trained_models[0].configured_model_algorithm_association_arn #=> String
2821
+ # resp.collaboration_trained_models[0].creator_account_id #=> String
2822
+ #
2823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListCollaborationTrainedModels AWS API Documentation
2824
+ #
2825
+ # @overload list_collaboration_trained_models(params = {})
1155
2826
  # @param [Hash] params ({})
1156
- def get_training_dataset(params = {}, options = {})
1157
- req = build_request(:get_training_dataset, params)
2827
+ def list_collaboration_trained_models(params = {}, options = {})
2828
+ req = build_request(:list_collaboration_trained_models, params)
1158
2829
  req.send_request(options)
1159
2830
  end
1160
2831
 
1161
- # Returns a list of the audience export jobs.
2832
+ # Returns a list of the configured audience models.
1162
2833
  #
1163
2834
  # @option params [String] :next_token
1164
2835
  # The token value retrieved from a previous call to access the next page
@@ -1167,51 +2838,44 @@ module Aws::CleanRoomsML
1167
2838
  # @option params [Integer] :max_results
1168
2839
  # The maximum size of the results that is returned per call.
1169
2840
  #
1170
- # @option params [String] :audience_generation_job_arn
1171
- # The Amazon Resource Name (ARN) of the audience generation job that you
1172
- # are interested in.
1173
- #
1174
- # @return [Types::ListAudienceExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2841
+ # @return [Types::ListConfiguredAudienceModelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1175
2842
  #
1176
- # * {Types::ListAudienceExportJobsResponse#next_token #next_token} => String
1177
- # * {Types::ListAudienceExportJobsResponse#audience_export_jobs #audience_export_jobs} => Array&lt;Types::AudienceExportJobSummary&gt;
2843
+ # * {Types::ListConfiguredAudienceModelsResponse#next_token #next_token} => String
2844
+ # * {Types::ListConfiguredAudienceModelsResponse#configured_audience_models #configured_audience_models} => Array&lt;Types::ConfiguredAudienceModelSummary&gt;
1178
2845
  #
1179
2846
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1180
2847
  #
1181
2848
  # @example Request syntax with placeholder values
1182
2849
  #
1183
- # resp = client.list_audience_export_jobs({
2850
+ # resp = client.list_configured_audience_models({
1184
2851
  # next_token: "NextToken",
1185
2852
  # max_results: 1,
1186
- # audience_generation_job_arn: "AudienceGenerationJobArn",
1187
2853
  # })
1188
2854
  #
1189
2855
  # @example Response structure
1190
2856
  #
1191
2857
  # resp.next_token #=> String
1192
- # resp.audience_export_jobs #=> Array
1193
- # resp.audience_export_jobs[0].create_time #=> Time
1194
- # resp.audience_export_jobs[0].update_time #=> Time
1195
- # resp.audience_export_jobs[0].name #=> String
1196
- # resp.audience_export_jobs[0].audience_generation_job_arn #=> String
1197
- # resp.audience_export_jobs[0].audience_size.type #=> String, one of "ABSOLUTE", "PERCENTAGE"
1198
- # resp.audience_export_jobs[0].audience_size.value #=> Integer
1199
- # resp.audience_export_jobs[0].description #=> String
1200
- # resp.audience_export_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE"
1201
- # resp.audience_export_jobs[0].status_details.status_code #=> String
1202
- # resp.audience_export_jobs[0].status_details.message #=> String
1203
- # resp.audience_export_jobs[0].output_location #=> String
2858
+ # resp.configured_audience_models #=> Array
2859
+ # resp.configured_audience_models[0].create_time #=> Time
2860
+ # resp.configured_audience_models[0].update_time #=> Time
2861
+ # resp.configured_audience_models[0].name #=> String
2862
+ # resp.configured_audience_models[0].audience_model_arn #=> String
2863
+ # resp.configured_audience_models[0].output_config.destination.s3_destination.s3_uri #=> String
2864
+ # resp.configured_audience_models[0].output_config.role_arn #=> String
2865
+ # resp.configured_audience_models[0].description #=> String
2866
+ # resp.configured_audience_models[0].configured_audience_model_arn #=> String
2867
+ # resp.configured_audience_models[0].status #=> String, one of "ACTIVE"
1204
2868
  #
1205
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListAudienceExportJobs AWS API Documentation
2869
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListConfiguredAudienceModels AWS API Documentation
1206
2870
  #
1207
- # @overload list_audience_export_jobs(params = {})
2871
+ # @overload list_configured_audience_models(params = {})
1208
2872
  # @param [Hash] params ({})
1209
- def list_audience_export_jobs(params = {}, options = {})
1210
- req = build_request(:list_audience_export_jobs, params)
2873
+ def list_configured_audience_models(params = {}, options = {})
2874
+ req = build_request(:list_configured_audience_models, params)
1211
2875
  req.send_request(options)
1212
2876
  end
1213
2877
 
1214
- # Returns a list of audience generation jobs.
2878
+ # Returns a list of configured model algorithm associations.
1215
2879
  #
1216
2880
  # @option params [String] :next_token
1217
2881
  # The token value retrieved from a previous call to access the next page
@@ -1220,54 +2884,48 @@ module Aws::CleanRoomsML
1220
2884
  # @option params [Integer] :max_results
1221
2885
  # The maximum size of the results that is returned per call.
1222
2886
  #
1223
- # @option params [String] :configured_audience_model_arn
1224
- # The Amazon Resource Name (ARN) of the configured audience model that
1225
- # was used for the audience generation jobs that you are interested in.
1226
- #
1227
- # @option params [String] :collaboration_id
1228
- # The identifier of the collaboration that contains the audience
1229
- # generation jobs that you are interested in.
2887
+ # @option params [required, String] :membership_identifier
2888
+ # The membership ID of the member that created the configured model
2889
+ # algorithm associations you are interested in.
1230
2890
  #
1231
- # @return [Types::ListAudienceGenerationJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2891
+ # @return [Types::ListConfiguredModelAlgorithmAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1232
2892
  #
1233
- # * {Types::ListAudienceGenerationJobsResponse#next_token #next_token} => String
1234
- # * {Types::ListAudienceGenerationJobsResponse#audience_generation_jobs #audience_generation_jobs} => Array&lt;Types::AudienceGenerationJobSummary&gt;
2893
+ # * {Types::ListConfiguredModelAlgorithmAssociationsResponse#next_token #next_token} => String
2894
+ # * {Types::ListConfiguredModelAlgorithmAssociationsResponse#configured_model_algorithm_associations #configured_model_algorithm_associations} => Array&lt;Types::ConfiguredModelAlgorithmAssociationSummary&gt;
1235
2895
  #
1236
2896
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1237
2897
  #
1238
2898
  # @example Request syntax with placeholder values
1239
2899
  #
1240
- # resp = client.list_audience_generation_jobs({
2900
+ # resp = client.list_configured_model_algorithm_associations({
1241
2901
  # next_token: "NextToken",
1242
2902
  # max_results: 1,
1243
- # configured_audience_model_arn: "ConfiguredAudienceModelArn",
1244
- # collaboration_id: "UUID",
2903
+ # membership_identifier: "UUID", # required
1245
2904
  # })
1246
2905
  #
1247
2906
  # @example Response structure
1248
2907
  #
1249
2908
  # resp.next_token #=> String
1250
- # resp.audience_generation_jobs #=> Array
1251
- # resp.audience_generation_jobs[0].create_time #=> Time
1252
- # resp.audience_generation_jobs[0].update_time #=> Time
1253
- # resp.audience_generation_jobs[0].audience_generation_job_arn #=> String
1254
- # resp.audience_generation_jobs[0].name #=> String
1255
- # resp.audience_generation_jobs[0].description #=> String
1256
- # resp.audience_generation_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
1257
- # resp.audience_generation_jobs[0].configured_audience_model_arn #=> String
1258
- # resp.audience_generation_jobs[0].collaboration_id #=> String
1259
- # resp.audience_generation_jobs[0].started_by #=> String
1260
- #
1261
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListAudienceGenerationJobs AWS API Documentation
1262
- #
1263
- # @overload list_audience_generation_jobs(params = {})
2909
+ # resp.configured_model_algorithm_associations #=> Array
2910
+ # resp.configured_model_algorithm_associations[0].create_time #=> Time
2911
+ # resp.configured_model_algorithm_associations[0].update_time #=> Time
2912
+ # resp.configured_model_algorithm_associations[0].configured_model_algorithm_association_arn #=> String
2913
+ # resp.configured_model_algorithm_associations[0].configured_model_algorithm_arn #=> String
2914
+ # resp.configured_model_algorithm_associations[0].name #=> String
2915
+ # resp.configured_model_algorithm_associations[0].description #=> String
2916
+ # resp.configured_model_algorithm_associations[0].membership_identifier #=> String
2917
+ # resp.configured_model_algorithm_associations[0].collaboration_identifier #=> String
2918
+ #
2919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListConfiguredModelAlgorithmAssociations AWS API Documentation
2920
+ #
2921
+ # @overload list_configured_model_algorithm_associations(params = {})
1264
2922
  # @param [Hash] params ({})
1265
- def list_audience_generation_jobs(params = {}, options = {})
1266
- req = build_request(:list_audience_generation_jobs, params)
2923
+ def list_configured_model_algorithm_associations(params = {}, options = {})
2924
+ req = build_request(:list_configured_model_algorithm_associations, params)
1267
2925
  req.send_request(options)
1268
2926
  end
1269
2927
 
1270
- # Returns a list of audience models.
2928
+ # Returns a list of configured model algorithms.
1271
2929
  #
1272
2930
  # @option params [String] :next_token
1273
2931
  # The token value retrieved from a previous call to access the next page
@@ -1276,16 +2934,16 @@ module Aws::CleanRoomsML
1276
2934
  # @option params [Integer] :max_results
1277
2935
  # The maximum size of the results that is returned per call.
1278
2936
  #
1279
- # @return [Types::ListAudienceModelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2937
+ # @return [Types::ListConfiguredModelAlgorithmsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1280
2938
  #
1281
- # * {Types::ListAudienceModelsResponse#next_token #next_token} => String
1282
- # * {Types::ListAudienceModelsResponse#audience_models #audience_models} => Array&lt;Types::AudienceModelSummary&gt;
2939
+ # * {Types::ListConfiguredModelAlgorithmsResponse#next_token #next_token} => String
2940
+ # * {Types::ListConfiguredModelAlgorithmsResponse#configured_model_algorithms #configured_model_algorithms} => Array&lt;Types::ConfiguredModelAlgorithmSummary&gt;
1283
2941
  #
1284
2942
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1285
2943
  #
1286
2944
  # @example Request syntax with placeholder values
1287
2945
  #
1288
- # resp = client.list_audience_models({
2946
+ # resp = client.list_configured_model_algorithms({
1289
2947
  # next_token: "NextToken",
1290
2948
  # max_results: 1,
1291
2949
  # })
@@ -1293,67 +2951,72 @@ module Aws::CleanRoomsML
1293
2951
  # @example Response structure
1294
2952
  #
1295
2953
  # resp.next_token #=> String
1296
- # resp.audience_models #=> Array
1297
- # resp.audience_models[0].create_time #=> Time
1298
- # resp.audience_models[0].update_time #=> Time
1299
- # resp.audience_models[0].audience_model_arn #=> String
1300
- # resp.audience_models[0].name #=> String
1301
- # resp.audience_models[0].training_dataset_arn #=> String
1302
- # resp.audience_models[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED"
1303
- # resp.audience_models[0].description #=> String
2954
+ # resp.configured_model_algorithms #=> Array
2955
+ # resp.configured_model_algorithms[0].create_time #=> Time
2956
+ # resp.configured_model_algorithms[0].update_time #=> Time
2957
+ # resp.configured_model_algorithms[0].configured_model_algorithm_arn #=> String
2958
+ # resp.configured_model_algorithms[0].name #=> String
2959
+ # resp.configured_model_algorithms[0].description #=> String
1304
2960
  #
1305
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListAudienceModels AWS API Documentation
2961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListConfiguredModelAlgorithms AWS API Documentation
1306
2962
  #
1307
- # @overload list_audience_models(params = {})
2963
+ # @overload list_configured_model_algorithms(params = {})
1308
2964
  # @param [Hash] params ({})
1309
- def list_audience_models(params = {}, options = {})
1310
- req = build_request(:list_audience_models, params)
2965
+ def list_configured_model_algorithms(params = {}, options = {})
2966
+ req = build_request(:list_configured_model_algorithms, params)
1311
2967
  req.send_request(options)
1312
2968
  end
1313
2969
 
1314
- # Returns a list of the configured audience models.
2970
+ # Returns a list of ML input channels.
1315
2971
  #
1316
2972
  # @option params [String] :next_token
1317
2973
  # The token value retrieved from a previous call to access the next page
1318
2974
  # of results.
1319
2975
  #
1320
2976
  # @option params [Integer] :max_results
1321
- # The maximum size of the results that is returned per call.
2977
+ # The maximum number of ML input channels to return.
1322
2978
  #
1323
- # @return [Types::ListConfiguredAudienceModelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2979
+ # @option params [required, String] :membership_identifier
2980
+ # The membership ID of the membership that contains the ML input
2981
+ # channels that you want to list.
1324
2982
  #
1325
- # * {Types::ListConfiguredAudienceModelsResponse#next_token #next_token} => String
1326
- # * {Types::ListConfiguredAudienceModelsResponse#configured_audience_models #configured_audience_models} => Array&lt;Types::ConfiguredAudienceModelSummary&gt;
2983
+ # @return [Types::ListMLInputChannelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2984
+ #
2985
+ # * {Types::ListMLInputChannelsResponse#next_token #next_token} => String
2986
+ # * {Types::ListMLInputChannelsResponse#ml_input_channels_list #ml_input_channels_list} => Array&lt;Types::MLInputChannelSummary&gt;
1327
2987
  #
1328
2988
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1329
2989
  #
1330
2990
  # @example Request syntax with placeholder values
1331
2991
  #
1332
- # resp = client.list_configured_audience_models({
2992
+ # resp = client.list_ml_input_channels({
1333
2993
  # next_token: "NextToken",
1334
2994
  # max_results: 1,
2995
+ # membership_identifier: "UUID", # required
1335
2996
  # })
1336
2997
  #
1337
2998
  # @example Response structure
1338
2999
  #
1339
3000
  # resp.next_token #=> String
1340
- # resp.configured_audience_models #=> Array
1341
- # resp.configured_audience_models[0].create_time #=> Time
1342
- # resp.configured_audience_models[0].update_time #=> Time
1343
- # resp.configured_audience_models[0].name #=> String
1344
- # resp.configured_audience_models[0].audience_model_arn #=> String
1345
- # resp.configured_audience_models[0].output_config.destination.s3_destination.s3_uri #=> String
1346
- # resp.configured_audience_models[0].output_config.role_arn #=> String
1347
- # resp.configured_audience_models[0].description #=> String
1348
- # resp.configured_audience_models[0].configured_audience_model_arn #=> String
1349
- # resp.configured_audience_models[0].status #=> String, one of "ACTIVE"
1350
- #
1351
- # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListConfiguredAudienceModels AWS API Documentation
1352
- #
1353
- # @overload list_configured_audience_models(params = {})
3001
+ # resp.ml_input_channels_list #=> Array
3002
+ # resp.ml_input_channels_list[0].create_time #=> Time
3003
+ # resp.ml_input_channels_list[0].update_time #=> Time
3004
+ # resp.ml_input_channels_list[0].membership_identifier #=> String
3005
+ # resp.ml_input_channels_list[0].collaboration_identifier #=> String
3006
+ # resp.ml_input_channels_list[0].name #=> String
3007
+ # resp.ml_input_channels_list[0].configured_model_algorithm_associations #=> Array
3008
+ # resp.ml_input_channels_list[0].configured_model_algorithm_associations[0] #=> String
3009
+ # resp.ml_input_channels_list[0].protected_query_identifier #=> String
3010
+ # resp.ml_input_channels_list[0].ml_input_channel_arn #=> String
3011
+ # resp.ml_input_channels_list[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE"
3012
+ # resp.ml_input_channels_list[0].description #=> String
3013
+ #
3014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListMLInputChannels AWS API Documentation
3015
+ #
3016
+ # @overload list_ml_input_channels(params = {})
1354
3017
  # @param [Hash] params ({})
1355
- def list_configured_audience_models(params = {}, options = {})
1356
- req = build_request(:list_configured_audience_models, params)
3018
+ def list_ml_input_channels(params = {}, options = {})
3019
+ req = build_request(:list_ml_input_channels, params)
1357
3020
  req.send_request(options)
1358
3021
  end
1359
3022
 
@@ -1387,6 +3050,121 @@ module Aws::CleanRoomsML
1387
3050
  req.send_request(options)
1388
3051
  end
1389
3052
 
3053
+ # Returns a list of trained model inference jobs that match the request
3054
+ # parameters.
3055
+ #
3056
+ # @option params [String] :next_token
3057
+ # The token value retrieved from a previous call to access the next page
3058
+ # of results.
3059
+ #
3060
+ # @option params [Integer] :max_results
3061
+ # The maximum size of the results that is returned per call.
3062
+ #
3063
+ # @option params [required, String] :membership_identifier
3064
+ # The membership
3065
+ #
3066
+ # @option params [String] :trained_model_arn
3067
+ # The Amazon Resource Name (ARN) of a trained model that was used to
3068
+ # create the trained model inference jobs that you are interested in.
3069
+ #
3070
+ # @return [Types::ListTrainedModelInferenceJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3071
+ #
3072
+ # * {Types::ListTrainedModelInferenceJobsResponse#next_token #next_token} => String
3073
+ # * {Types::ListTrainedModelInferenceJobsResponse#trained_model_inference_jobs #trained_model_inference_jobs} => Array&lt;Types::TrainedModelInferenceJobSummary&gt;
3074
+ #
3075
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3076
+ #
3077
+ # @example Request syntax with placeholder values
3078
+ #
3079
+ # resp = client.list_trained_model_inference_jobs({
3080
+ # next_token: "NextToken",
3081
+ # max_results: 1,
3082
+ # membership_identifier: "UUID", # required
3083
+ # trained_model_arn: "TrainedModelArn",
3084
+ # })
3085
+ #
3086
+ # @example Response structure
3087
+ #
3088
+ # resp.next_token #=> String
3089
+ # resp.trained_model_inference_jobs #=> Array
3090
+ # resp.trained_model_inference_jobs[0].trained_model_inference_job_arn #=> String
3091
+ # resp.trained_model_inference_jobs[0].configured_model_algorithm_association_arn #=> String
3092
+ # resp.trained_model_inference_jobs[0].membership_identifier #=> String
3093
+ # resp.trained_model_inference_jobs[0].trained_model_arn #=> String
3094
+ # resp.trained_model_inference_jobs[0].collaboration_identifier #=> String
3095
+ # resp.trained_model_inference_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED", "INACTIVE"
3096
+ # resp.trained_model_inference_jobs[0].output_configuration.accept #=> String
3097
+ # resp.trained_model_inference_jobs[0].output_configuration.members #=> Array
3098
+ # resp.trained_model_inference_jobs[0].output_configuration.members[0].account_id #=> String
3099
+ # resp.trained_model_inference_jobs[0].name #=> String
3100
+ # resp.trained_model_inference_jobs[0].description #=> String
3101
+ # resp.trained_model_inference_jobs[0].metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
3102
+ # resp.trained_model_inference_jobs[0].metrics_status_details #=> String
3103
+ # resp.trained_model_inference_jobs[0].logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
3104
+ # resp.trained_model_inference_jobs[0].logs_status_details #=> String
3105
+ # resp.trained_model_inference_jobs[0].create_time #=> Time
3106
+ # resp.trained_model_inference_jobs[0].update_time #=> Time
3107
+ #
3108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListTrainedModelInferenceJobs AWS API Documentation
3109
+ #
3110
+ # @overload list_trained_model_inference_jobs(params = {})
3111
+ # @param [Hash] params ({})
3112
+ def list_trained_model_inference_jobs(params = {}, options = {})
3113
+ req = build_request(:list_trained_model_inference_jobs, params)
3114
+ req.send_request(options)
3115
+ end
3116
+
3117
+ # Returns a list of trained models.
3118
+ #
3119
+ # @option params [String] :next_token
3120
+ # The token value retrieved from a previous call to access the next page
3121
+ # of results.
3122
+ #
3123
+ # @option params [Integer] :max_results
3124
+ # The maximum size of the results that is returned per call.
3125
+ #
3126
+ # @option params [required, String] :membership_identifier
3127
+ # The membership ID of the member that created the trained models you
3128
+ # are interested in.
3129
+ #
3130
+ # @return [Types::ListTrainedModelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3131
+ #
3132
+ # * {Types::ListTrainedModelsResponse#next_token #next_token} => String
3133
+ # * {Types::ListTrainedModelsResponse#trained_models #trained_models} => Array&lt;Types::TrainedModelSummary&gt;
3134
+ #
3135
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3136
+ #
3137
+ # @example Request syntax with placeholder values
3138
+ #
3139
+ # resp = client.list_trained_models({
3140
+ # next_token: "NextToken",
3141
+ # max_results: 1,
3142
+ # membership_identifier: "UUID", # required
3143
+ # })
3144
+ #
3145
+ # @example Response structure
3146
+ #
3147
+ # resp.next_token #=> String
3148
+ # resp.trained_models #=> Array
3149
+ # resp.trained_models[0].create_time #=> Time
3150
+ # resp.trained_models[0].update_time #=> Time
3151
+ # resp.trained_models[0].trained_model_arn #=> String
3152
+ # resp.trained_models[0].name #=> String
3153
+ # resp.trained_models[0].description #=> String
3154
+ # resp.trained_models[0].membership_identifier #=> String
3155
+ # resp.trained_models[0].collaboration_identifier #=> String
3156
+ # resp.trained_models[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED"
3157
+ # resp.trained_models[0].configured_model_algorithm_association_arn #=> String
3158
+ #
3159
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListTrainedModels AWS API Documentation
3160
+ #
3161
+ # @overload list_trained_models(params = {})
3162
+ # @param [Hash] params ({})
3163
+ def list_trained_models(params = {}, options = {})
3164
+ req = build_request(:list_trained_models, params)
3165
+ req.send_request(options)
3166
+ end
3167
+
1390
3168
  # Returns a list of training datasets.
1391
3169
  #
1392
3170
  # @option params [String] :next_token
@@ -1474,6 +3252,40 @@ module Aws::CleanRoomsML
1474
3252
  req.send_request(options)
1475
3253
  end
1476
3254
 
3255
+ # Assigns information about an ML configuration.
3256
+ #
3257
+ # @option params [required, String] :membership_identifier
3258
+ # The membership ID of the member that is being configured.
3259
+ #
3260
+ # @option params [required, Types::MLOutputConfiguration] :default_output_location
3261
+ # The default Amazon S3 location where ML output is stored for the
3262
+ # specified member.
3263
+ #
3264
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3265
+ #
3266
+ # @example Request syntax with placeholder values
3267
+ #
3268
+ # resp = client.put_ml_configuration({
3269
+ # membership_identifier: "UUID", # required
3270
+ # default_output_location: { # required
3271
+ # destination: {
3272
+ # s3_destination: { # required
3273
+ # s3_uri: "S3Path", # required
3274
+ # },
3275
+ # },
3276
+ # role_arn: "IamRoleArn", # required
3277
+ # },
3278
+ # })
3279
+ #
3280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/PutMLConfiguration AWS API Documentation
3281
+ #
3282
+ # @overload put_ml_configuration(params = {})
3283
+ # @param [Hash] params ({})
3284
+ def put_ml_configuration(params = {}, options = {})
3285
+ req = build_request(:put_ml_configuration, params)
3286
+ req.send_request(options)
3287
+ end
3288
+
1477
3289
  # Export an audience of a specified size after you have generated an
1478
3290
  # audience.
1479
3291
  #
@@ -1590,6 +3402,12 @@ module Aws::CleanRoomsML
1590
3402
  # "ParameterKey" => "ParameterValue",
1591
3403
  # },
1592
3404
  # },
3405
+ # sql_compute_configuration: {
3406
+ # worker: {
3407
+ # type: "CR.1X", # accepts CR.1X, CR.4X
3408
+ # number: 1,
3409
+ # },
3410
+ # },
1593
3411
  # },
1594
3412
  # include_seed_in_output: false,
1595
3413
  # collaboration_id: "UUID",
@@ -1612,6 +3430,181 @@ module Aws::CleanRoomsML
1612
3430
  req.send_request(options)
1613
3431
  end
1614
3432
 
3433
+ # Provides the information necessary to start a trained model export
3434
+ # job.
3435
+ #
3436
+ # @option params [required, String] :name
3437
+ # The name of the trained model export job.
3438
+ #
3439
+ # @option params [required, String] :trained_model_arn
3440
+ # The Amazon Resource Name (ARN) of the trained model that you want to
3441
+ # export.
3442
+ #
3443
+ # @option params [required, String] :membership_identifier
3444
+ # The membership ID of the member that is receiving the exported trained
3445
+ # model artifacts.
3446
+ #
3447
+ # @option params [required, Types::TrainedModelExportOutputConfiguration] :output_configuration
3448
+ # The output configuration information for the trained model export job.
3449
+ #
3450
+ # @option params [String] :description
3451
+ # The description of the trained model export job.
3452
+ #
3453
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3454
+ #
3455
+ # @example Request syntax with placeholder values
3456
+ #
3457
+ # resp = client.start_trained_model_export_job({
3458
+ # name: "NameString", # required
3459
+ # trained_model_arn: "TrainedModelArn", # required
3460
+ # membership_identifier: "UUID", # required
3461
+ # output_configuration: { # required
3462
+ # members: [ # required
3463
+ # {
3464
+ # account_id: "AccountId", # required
3465
+ # },
3466
+ # ],
3467
+ # },
3468
+ # description: "ResourceDescription",
3469
+ # })
3470
+ #
3471
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/StartTrainedModelExportJob AWS API Documentation
3472
+ #
3473
+ # @overload start_trained_model_export_job(params = {})
3474
+ # @param [Hash] params ({})
3475
+ def start_trained_model_export_job(params = {}, options = {})
3476
+ req = build_request(:start_trained_model_export_job, params)
3477
+ req.send_request(options)
3478
+ end
3479
+
3480
+ # Defines the information necessary to begin a trained model inference
3481
+ # job.
3482
+ #
3483
+ # @option params [required, String] :membership_identifier
3484
+ # The membership ID of the membership that contains the trained model
3485
+ # inference job.
3486
+ #
3487
+ # @option params [required, String] :name
3488
+ # The name of the trained model inference job.
3489
+ #
3490
+ # @option params [required, String] :trained_model_arn
3491
+ # The Amazon Resource Name (ARN) of the trained model that is used for
3492
+ # this trained model inference job.
3493
+ #
3494
+ # @option params [String] :configured_model_algorithm_association_arn
3495
+ # The Amazon Resource Name (ARN) of the configured model algorithm
3496
+ # association that is used for this trained model inference job.
3497
+ #
3498
+ # @option params [required, Types::InferenceResourceConfig] :resource_config
3499
+ # Defines the resource configuration for the trained model inference
3500
+ # job.
3501
+ #
3502
+ # @option params [required, Types::InferenceOutputConfiguration] :output_configuration
3503
+ # Defines the output configuration information for the trained model
3504
+ # inference job.
3505
+ #
3506
+ # @option params [required, Types::ModelInferenceDataSource] :data_source
3507
+ # Defines the data source that is used for the trained model inference
3508
+ # job.
3509
+ #
3510
+ # @option params [String] :description
3511
+ # The description of the trained model inference job.
3512
+ #
3513
+ # @option params [Types::InferenceContainerExecutionParameters] :container_execution_parameters
3514
+ # The execution parameters for the container.
3515
+ #
3516
+ # @option params [Hash<String,String>] :environment
3517
+ # The environment variables to set in the Docker container.
3518
+ #
3519
+ # @option params [String] :kms_key_arn
3520
+ # The Amazon Resource Name (ARN) of the KMS key. This key is used to
3521
+ # encrypt and decrypt customer-owned data in the ML inference job and
3522
+ # associated data.
3523
+ #
3524
+ # @option params [Hash<String,String>] :tags
3525
+ # The optional metadata that you apply to the resource to help you
3526
+ # categorize and organize them. Each tag consists of a key and an
3527
+ # optional value, both of which you define.
3528
+ #
3529
+ # The following basic restrictions apply to tags:
3530
+ #
3531
+ # * Maximum number of tags per resource - 50.
3532
+ #
3533
+ # * For each resource, each tag key must be unique, and each tag key can
3534
+ # have only one value.
3535
+ #
3536
+ # * Maximum key length - 128 Unicode characters in UTF-8.
3537
+ #
3538
+ # * Maximum value length - 256 Unicode characters in UTF-8.
3539
+ #
3540
+ # * If your tagging schema is used across multiple services and
3541
+ # resources, remember that other services may have restrictions on
3542
+ # allowed characters. Generally allowed characters are: letters,
3543
+ # numbers, and spaces representable in UTF-8, and the following
3544
+ # characters: + - = . \_ : / @.
3545
+ #
3546
+ # * Tag keys and values are case sensitive.
3547
+ #
3548
+ # * Do not use aws:, AWS:, or any upper or lowercase combination of such
3549
+ # as a prefix for keys as it is reserved for AWS use. You cannot edit
3550
+ # or delete tag keys with this prefix. Values can have this prefix. If
3551
+ # a tag value has aws as its prefix but the key does not, then Clean
3552
+ # Rooms ML considers it to be a user tag and will count against the
3553
+ # limit of 50 tags. Tags with only the key prefix of aws do not count
3554
+ # against your tags per resource limit.
3555
+ #
3556
+ # @return [Types::StartTrainedModelInferenceJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3557
+ #
3558
+ # * {Types::StartTrainedModelInferenceJobResponse#trained_model_inference_job_arn #trained_model_inference_job_arn} => String
3559
+ #
3560
+ # @example Request syntax with placeholder values
3561
+ #
3562
+ # resp = client.start_trained_model_inference_job({
3563
+ # membership_identifier: "UUID", # required
3564
+ # name: "NameString", # required
3565
+ # trained_model_arn: "TrainedModelArn", # required
3566
+ # configured_model_algorithm_association_arn: "ConfiguredModelAlgorithmAssociationArn",
3567
+ # resource_config: { # required
3568
+ # instance_type: "ml.r7i.48xlarge", # required, accepts ml.r7i.48xlarge, ml.r6i.16xlarge, ml.m6i.xlarge, ml.m5.4xlarge, ml.p2.xlarge, ml.m4.16xlarge, ml.r7i.16xlarge, ml.m7i.xlarge, ml.m6i.12xlarge, ml.r7i.8xlarge, ml.r7i.large, ml.m7i.12xlarge, ml.m6i.24xlarge, ml.m7i.24xlarge, ml.r6i.8xlarge, ml.r6i.large, ml.g5.2xlarge, ml.m5.large, ml.p3.16xlarge, ml.m7i.48xlarge, ml.m6i.16xlarge, ml.p2.16xlarge, ml.g5.4xlarge, ml.m7i.16xlarge, ml.c4.2xlarge, ml.c5.2xlarge, ml.c6i.32xlarge, ml.c4.4xlarge, ml.g5.8xlarge, ml.c6i.xlarge, ml.c5.4xlarge, ml.g4dn.xlarge, ml.c7i.xlarge, ml.c6i.12xlarge, ml.g4dn.12xlarge, ml.c7i.12xlarge, ml.c6i.24xlarge, ml.g4dn.2xlarge, ml.c7i.24xlarge, ml.c7i.2xlarge, ml.c4.8xlarge, ml.c6i.2xlarge, ml.g4dn.4xlarge, ml.c7i.48xlarge, ml.c7i.4xlarge, ml.c6i.16xlarge, ml.c5.9xlarge, ml.g4dn.16xlarge, ml.c7i.16xlarge, ml.c6i.4xlarge, ml.c5.xlarge, ml.c4.xlarge, ml.g4dn.8xlarge, ml.c7i.8xlarge, ml.c7i.large, ml.g5.xlarge, ml.c6i.8xlarge, ml.c6i.large, ml.g5.12xlarge, ml.g5.24xlarge, ml.m7i.2xlarge, ml.c5.18xlarge, ml.g5.48xlarge, ml.m6i.2xlarge, ml.g5.16xlarge, ml.m7i.4xlarge, ml.p3.2xlarge, ml.r6i.32xlarge, ml.m6i.4xlarge, ml.m5.xlarge, ml.m4.10xlarge, ml.r6i.xlarge, ml.m5.12xlarge, ml.m4.xlarge, ml.r7i.2xlarge, ml.r7i.xlarge, ml.r6i.12xlarge, ml.m5.24xlarge, ml.r7i.12xlarge, ml.m7i.8xlarge, ml.m7i.large, ml.r6i.24xlarge, ml.r6i.2xlarge, ml.m4.2xlarge, ml.r7i.24xlarge, ml.r7i.4xlarge, ml.m6i.8xlarge, ml.m6i.large, ml.m5.2xlarge, ml.p2.8xlarge, ml.r6i.4xlarge, ml.m6i.32xlarge, ml.p3.8xlarge, ml.m4.4xlarge
3569
+ # instance_count: 1,
3570
+ # },
3571
+ # output_configuration: { # required
3572
+ # accept: "InferenceOutputConfigurationAcceptString",
3573
+ # members: [ # required
3574
+ # {
3575
+ # account_id: "AccountId", # required
3576
+ # },
3577
+ # ],
3578
+ # },
3579
+ # data_source: { # required
3580
+ # ml_input_channel_arn: "MLInputChannelArn", # required
3581
+ # },
3582
+ # description: "ResourceDescription",
3583
+ # container_execution_parameters: {
3584
+ # max_payload_in_mb: 1,
3585
+ # },
3586
+ # environment: {
3587
+ # "InferenceEnvironmentMapKeyString" => "InferenceEnvironmentMapValueString",
3588
+ # },
3589
+ # kms_key_arn: "KmsKeyArn",
3590
+ # tags: {
3591
+ # "TagKey" => "TagValue",
3592
+ # },
3593
+ # })
3594
+ #
3595
+ # @example Response structure
3596
+ #
3597
+ # resp.trained_model_inference_job_arn #=> String
3598
+ #
3599
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/StartTrainedModelInferenceJob AWS API Documentation
3600
+ #
3601
+ # @overload start_trained_model_inference_job(params = {})
3602
+ # @param [Hash] params ({})
3603
+ def start_trained_model_inference_job(params = {}, options = {})
3604
+ req = build_request(:start_trained_model_inference_job, params)
3605
+ req.send_request(options)
3606
+ end
3607
+
1615
3608
  # Adds metadata tags to a specified resource.
1616
3609
  #
1617
3610
  # @option params [required, String] :resource_arn
@@ -1782,7 +3775,7 @@ module Aws::CleanRoomsML
1782
3775
  tracer: tracer
1783
3776
  )
1784
3777
  context[:gem_name] = 'aws-sdk-cleanroomsml'
1785
- context[:gem_version] = '1.18.0'
3778
+ context[:gem_version] = '1.20.0'
1786
3779
  Seahorse::Client::Request.new(handlers, context)
1787
3780
  end
1788
3781