@aws-sdk/client-cleanroomsml 3.533.0 → 3.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/CleanRoomsML.d.ts +6 -1
- package/dist-types/CleanRoomsMLClient.d.ts +1 -1
- package/dist-types/commands/CreateAudienceModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateConfiguredAudienceModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateTrainingDatasetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAudienceGenerationJobCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAudienceModelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConfiguredAudienceModelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConfiguredAudienceModelPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTrainingDatasetCommand.d.ts +2 -1
- package/dist-types/commands/GetAudienceGenerationJobCommand.d.ts +2 -1
- package/dist-types/commands/GetAudienceModelCommand.d.ts +2 -1
- package/dist-types/commands/GetConfiguredAudienceModelCommand.d.ts +2 -1
- package/dist-types/commands/GetConfiguredAudienceModelPolicyCommand.d.ts +2 -1
- package/dist-types/commands/GetTrainingDatasetCommand.d.ts +2 -1
- package/dist-types/commands/ListAudienceExportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListAudienceGenerationJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListAudienceModelsCommand.d.ts +2 -1
- package/dist-types/commands/ListConfiguredAudienceModelsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListTrainingDatasetsCommand.d.ts +2 -1
- package/dist-types/commands/PutConfiguredAudienceModelPolicyCommand.d.ts +2 -1
- package/dist-types/commands/StartAudienceExportJobCommand.d.ts +2 -1
- package/dist-types/commands/StartAudienceGenerationJobCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateConfiguredAudienceModelCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +233 -233
- package/dist-types/ts3.4/CleanRoomsML.d.ts +5 -0
- package/dist-types/ts3.4/commands/CreateAudienceModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateConfiguredAudienceModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateTrainingDatasetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAudienceGenerationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAudienceModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteConfiguredAudienceModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteConfiguredAudienceModelPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteTrainingDatasetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAudienceGenerationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAudienceModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetConfiguredAudienceModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetConfiguredAudienceModelPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetTrainingDatasetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAudienceExportJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAudienceGenerationJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAudienceModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListConfiguredAudienceModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTrainingDatasetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutConfiguredAudienceModelPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartAudienceExportJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartAudienceGenerationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateConfiguredAudienceModelCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -107,24 +107,28 @@ export interface CleanRoomsML {
|
|
|
107
107
|
/**
|
|
108
108
|
* @see {@link ListAudienceExportJobsCommand}
|
|
109
109
|
*/
|
|
110
|
+
listAudienceExportJobs(): Promise<ListAudienceExportJobsCommandOutput>;
|
|
110
111
|
listAudienceExportJobs(args: ListAudienceExportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListAudienceExportJobsCommandOutput>;
|
|
111
112
|
listAudienceExportJobs(args: ListAudienceExportJobsCommandInput, cb: (err: any, data?: ListAudienceExportJobsCommandOutput) => void): void;
|
|
112
113
|
listAudienceExportJobs(args: ListAudienceExportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAudienceExportJobsCommandOutput) => void): void;
|
|
113
114
|
/**
|
|
114
115
|
* @see {@link ListAudienceGenerationJobsCommand}
|
|
115
116
|
*/
|
|
117
|
+
listAudienceGenerationJobs(): Promise<ListAudienceGenerationJobsCommandOutput>;
|
|
116
118
|
listAudienceGenerationJobs(args: ListAudienceGenerationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListAudienceGenerationJobsCommandOutput>;
|
|
117
119
|
listAudienceGenerationJobs(args: ListAudienceGenerationJobsCommandInput, cb: (err: any, data?: ListAudienceGenerationJobsCommandOutput) => void): void;
|
|
118
120
|
listAudienceGenerationJobs(args: ListAudienceGenerationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAudienceGenerationJobsCommandOutput) => void): void;
|
|
119
121
|
/**
|
|
120
122
|
* @see {@link ListAudienceModelsCommand}
|
|
121
123
|
*/
|
|
124
|
+
listAudienceModels(): Promise<ListAudienceModelsCommandOutput>;
|
|
122
125
|
listAudienceModels(args: ListAudienceModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListAudienceModelsCommandOutput>;
|
|
123
126
|
listAudienceModels(args: ListAudienceModelsCommandInput, cb: (err: any, data?: ListAudienceModelsCommandOutput) => void): void;
|
|
124
127
|
listAudienceModels(args: ListAudienceModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAudienceModelsCommandOutput) => void): void;
|
|
125
128
|
/**
|
|
126
129
|
* @see {@link ListConfiguredAudienceModelsCommand}
|
|
127
130
|
*/
|
|
131
|
+
listConfiguredAudienceModels(): Promise<ListConfiguredAudienceModelsCommandOutput>;
|
|
128
132
|
listConfiguredAudienceModels(args: ListConfiguredAudienceModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfiguredAudienceModelsCommandOutput>;
|
|
129
133
|
listConfiguredAudienceModels(args: ListConfiguredAudienceModelsCommandInput, cb: (err: any, data?: ListConfiguredAudienceModelsCommandOutput) => void): void;
|
|
130
134
|
listConfiguredAudienceModels(args: ListConfiguredAudienceModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfiguredAudienceModelsCommandOutput) => void): void;
|
|
@@ -137,6 +141,7 @@ export interface CleanRoomsML {
|
|
|
137
141
|
/**
|
|
138
142
|
* @see {@link ListTrainingDatasetsCommand}
|
|
139
143
|
*/
|
|
144
|
+
listTrainingDatasets(): Promise<ListTrainingDatasetsCommandOutput>;
|
|
140
145
|
listTrainingDatasets(args: ListTrainingDatasetsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrainingDatasetsCommandOutput>;
|
|
141
146
|
listTrainingDatasets(args: ListTrainingDatasetsCommandInput, cb: (err: any, data?: ListTrainingDatasetsCommandOutput) => void): void;
|
|
142
147
|
listTrainingDatasets(args: ListTrainingDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrainingDatasetsCommandOutput) => void): void;
|
|
@@ -178,13 +183,13 @@ export interface CleanRoomsML {
|
|
|
178
183
|
updateConfiguredAudienceModel(args: UpdateConfiguredAudienceModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfiguredAudienceModelCommandOutput) => void): void;
|
|
179
184
|
}
|
|
180
185
|
/**
|
|
181
|
-
* @public
|
|
182
186
|
* <p>Welcome to the <i>Amazon Web Services Clean Rooms ML API Reference</i>.</p>
|
|
183
187
|
* <p>Amazon Web Services Clean Rooms ML provides a privacy-enhancing method for two parties to identify similar users in their data without the need to share their data with each other. The first party brings the training data to Clean Rooms so that they can create and configure an audience model (lookalike model) and associate it with a collaboration. The second party then brings their seed data to Clean Rooms and generates an audience (lookalike segment) that resembles the training data.</p>
|
|
184
188
|
* <p>To learn more about Amazon Web Services Clean Rooms ML concepts, procedures, and best practices, see the
|
|
185
189
|
* <a href="https://docs.aws.amazon.com/clean-rooms/latest/userguide/machine-learning.html">Clean Rooms User Guide</a>.</p>
|
|
186
190
|
* <p>To learn more about SQL commands, functions, and conditions supported in Clean Rooms, see the
|
|
187
191
|
* <a href="https://docs.aws.amazon.com/clean-rooms/latest/sql-reference/sql-reference.html">Clean Rooms SQL Reference</a>.</p>
|
|
192
|
+
* @public
|
|
188
193
|
*/
|
|
189
194
|
export declare class CleanRoomsML extends CleanRoomsMLClient implements CleanRoomsML {
|
|
190
195
|
}
|
|
@@ -176,13 +176,13 @@ export type CleanRoomsMLClientResolvedConfigType = __SmithyResolvedConfiguration
|
|
|
176
176
|
export interface CleanRoomsMLClientResolvedConfig extends CleanRoomsMLClientResolvedConfigType {
|
|
177
177
|
}
|
|
178
178
|
/**
|
|
179
|
-
* @public
|
|
180
179
|
* <p>Welcome to the <i>Amazon Web Services Clean Rooms ML API Reference</i>.</p>
|
|
181
180
|
* <p>Amazon Web Services Clean Rooms ML provides a privacy-enhancing method for two parties to identify similar users in their data without the need to share their data with each other. The first party brings the training data to Clean Rooms so that they can create and configure an audience model (lookalike model) and associate it with a collaboration. The second party then brings their seed data to Clean Rooms and generates an audience (lookalike segment) that resembles the training data.</p>
|
|
182
181
|
* <p>To learn more about Amazon Web Services Clean Rooms ML concepts, procedures, and best practices, see the
|
|
183
182
|
* <a href="https://docs.aws.amazon.com/clean-rooms/latest/userguide/machine-learning.html">Clean Rooms User Guide</a>.</p>
|
|
184
183
|
* <p>To learn more about SQL commands, functions, and conditions supported in Clean Rooms, see the
|
|
185
184
|
* <a href="https://docs.aws.amazon.com/clean-rooms/latest/sql-reference/sql-reference.html">Clean Rooms SQL Reference</a>.</p>
|
|
185
|
+
* @public
|
|
186
186
|
*/
|
|
187
187
|
export declare class CleanRoomsMLClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CleanRoomsMLClientResolvedConfig> {
|
|
188
188
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateAudienceModelCommandOutput extends CreateAudienceModelRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateAudienceModelCommand_base: {
|
|
24
24
|
new (input: CreateAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAudienceModelCommandInput, CreateAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAudienceModelCommandInput, CreateAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Defines the information necessary to create an audience model. An audience model is a machine learning model that Clean Rooms ML trains to measure similarity between users. Clean Rooms ML manages training and storing the audience model. The audience model can be used in multiple calls to the <a>StartAudienceGenerationJob</a> API.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -76,6 +76,7 @@ declare const CreateAudienceModelCommand_base: {
|
|
|
76
76
|
* @throws {@link CleanRoomsMLServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class CreateAudienceModelCommand extends CreateAudienceModelCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateConfiguredAudienceModelCommandOutput extends CreateConfig
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateConfiguredAudienceModelCommand_base: {
|
|
24
24
|
new (input: CreateConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfiguredAudienceModelCommandInput, CreateConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfiguredAudienceModelCommandInput, CreateConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Defines the information necessary to create a configured audience model.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -92,6 +92,7 @@ declare const CreateConfiguredAudienceModelCommand_base: {
|
|
|
92
92
|
* @throws {@link CleanRoomsMLServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class CreateConfiguredAudienceModelCommand extends CreateConfiguredAudienceModelCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateTrainingDatasetCommandOutput extends CreateTrainingDatase
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateTrainingDatasetCommand_base: {
|
|
24
24
|
new (input: CreateTrainingDatasetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTrainingDatasetCommandInput, CreateTrainingDatasetCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateTrainingDatasetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTrainingDatasetCommandInput, CreateTrainingDatasetCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Defines the information necessary to create a training dataset, or seed audience. In Clean Rooms ML, the <code>TrainingDataset</code> is metadata that points to a Glue table, which is read only during <code>AudienceModel</code> creation.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const CreateTrainingDatasetCommand_base: {
|
|
|
89
89
|
* @throws {@link CleanRoomsMLServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class CreateTrainingDatasetCommand extends CreateTrainingDatasetCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteAudienceGenerationJobCommandOutput extends __MetadataBear
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteAudienceGenerationJobCommand_base: {
|
|
24
24
|
new (input: DeleteAudienceGenerationJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAudienceGenerationJobCommandInput, DeleteAudienceGenerationJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteAudienceGenerationJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAudienceGenerationJobCommandInput, DeleteAudienceGenerationJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified audience generation job, and removes all data associated with the job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const DeleteAudienceGenerationJobCommand_base: {
|
|
|
63
63
|
* @throws {@link CleanRoomsMLServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DeleteAudienceGenerationJobCommand extends DeleteAudienceGenerationJobCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteAudienceModelCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteAudienceModelCommand_base: {
|
|
24
24
|
new (input: DeleteAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAudienceModelCommandInput, DeleteAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAudienceModelCommandInput, DeleteAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Specifies an audience model that you want to delete. You can't delete an audience model if there are any configured audience models that depend on the audience model.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const DeleteAudienceModelCommand_base: {
|
|
|
63
63
|
* @throws {@link CleanRoomsMLServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DeleteAudienceModelCommand extends DeleteAudienceModelCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteConfiguredAudienceModelCommandOutput extends __MetadataBe
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteConfiguredAudienceModelCommand_base: {
|
|
24
24
|
new (input: DeleteConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConfiguredAudienceModelCommandInput, DeleteConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConfiguredAudienceModelCommandInput, DeleteConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified configured audience model. You can't delete a configured audience model if there are any lookalike models that use the configured audience model. If you delete a configured audience model, it will be removed from any collaborations that it is associated to.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const DeleteConfiguredAudienceModelCommand_base: {
|
|
|
63
63
|
* @throws {@link CleanRoomsMLServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DeleteConfiguredAudienceModelCommand extends DeleteConfiguredAudienceModelCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteConfiguredAudienceModelPolicyCommandOutput extends __Meta
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteConfiguredAudienceModelPolicyCommand_base: {
|
|
24
24
|
new (input: DeleteConfiguredAudienceModelPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConfiguredAudienceModelPolicyCommandInput, DeleteConfiguredAudienceModelPolicyCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteConfiguredAudienceModelPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConfiguredAudienceModelPolicyCommandInput, DeleteConfiguredAudienceModelPolicyCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified configured audience model policy.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -60,6 +60,7 @@ declare const DeleteConfiguredAudienceModelPolicyCommand_base: {
|
|
|
60
60
|
* @throws {@link CleanRoomsMLServiceException}
|
|
61
61
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
62
62
|
*
|
|
63
|
+
* @public
|
|
63
64
|
*/
|
|
64
65
|
export declare class DeleteConfiguredAudienceModelPolicyCommand extends DeleteConfiguredAudienceModelPolicyCommand_base {
|
|
65
66
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteTrainingDatasetCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteTrainingDatasetCommand_base: {
|
|
24
24
|
new (input: DeleteTrainingDatasetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrainingDatasetCommandInput, DeleteTrainingDatasetCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteTrainingDatasetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrainingDatasetCommandInput, DeleteTrainingDatasetCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Specifies a training dataset that you want to delete. You can't delete a training dataset if there are any audience models that depend on the training dataset. In Clean Rooms ML, the <code>TrainingDataset</code> is metadata that points to a Glue table, which is read only during <code>AudienceModel</code> creation. This action deletes the metadata.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const DeleteTrainingDatasetCommand_base: {
|
|
|
63
63
|
* @throws {@link CleanRoomsMLServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DeleteTrainingDatasetCommand extends DeleteTrainingDatasetCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAudienceGenerationJobCommandOutput extends GetAudienceGenera
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAudienceGenerationJobCommand_base: {
|
|
24
24
|
new (input: GetAudienceGenerationJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetAudienceGenerationJobCommandInput, GetAudienceGenerationJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetAudienceGenerationJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetAudienceGenerationJobCommandInput, GetAudienceGenerationJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about an audience generation job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -95,6 +95,7 @@ declare const GetAudienceGenerationJobCommand_base: {
|
|
|
95
95
|
* @throws {@link CleanRoomsMLServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class GetAudienceGenerationJobCommand extends GetAudienceGenerationJobCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAudienceModelCommandOutput extends GetAudienceModelResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAudienceModelCommand_base: {
|
|
24
24
|
new (input: GetAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetAudienceModelCommandInput, GetAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetAudienceModelCommandInput, GetAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about an audience model</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -85,6 +85,7 @@ declare const GetAudienceModelCommand_base: {
|
|
|
85
85
|
* @throws {@link CleanRoomsMLServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class GetAudienceModelCommand extends GetAudienceModelCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetConfiguredAudienceModelCommandOutput extends GetConfiguredAu
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetConfiguredAudienceModelCommand_base: {
|
|
24
24
|
new (input: GetConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredAudienceModelCommandInput, GetConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredAudienceModelCommandInput, GetConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a specified configured audience model.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -90,6 +90,7 @@ declare const GetConfiguredAudienceModelCommand_base: {
|
|
|
90
90
|
* @throws {@link CleanRoomsMLServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class GetConfiguredAudienceModelCommand extends GetConfiguredAudienceModelCommand_base {
|
|
95
96
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetConfiguredAudienceModelPolicyCommandOutput extends GetConfig
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetConfiguredAudienceModelPolicyCommand_base: {
|
|
24
24
|
new (input: GetConfiguredAudienceModelPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredAudienceModelPolicyCommandInput, GetConfiguredAudienceModelPolicyCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetConfiguredAudienceModelPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredAudienceModelPolicyCommandInput, GetConfiguredAudienceModelPolicyCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a configured audience model policy.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const GetConfiguredAudienceModelPolicyCommand_base: {
|
|
|
64
64
|
* @throws {@link CleanRoomsMLServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class GetConfiguredAudienceModelPolicyCommand extends GetConfiguredAudienceModelPolicyCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetTrainingDatasetCommandOutput extends GetTrainingDatasetRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetTrainingDatasetCommand_base: {
|
|
24
24
|
new (input: GetTrainingDatasetCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrainingDatasetCommandInput, GetTrainingDatasetCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetTrainingDatasetCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrainingDatasetCommandInput, GetTrainingDatasetCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a training dataset.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const GetTrainingDatasetCommand_base: {
|
|
|
93
93
|
* @throws {@link CleanRoomsMLServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class GetTrainingDatasetCommand extends GetTrainingDatasetCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAudienceExportJobsCommandOutput extends ListAudienceExportJ
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAudienceExportJobsCommand_base: {
|
|
24
24
|
new (input: ListAudienceExportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAudienceExportJobsCommandInput, ListAudienceExportJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListAudienceExportJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAudienceExportJobsCommandInput, ListAudienceExportJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of the audience export jobs.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const ListAudienceExportJobsCommand_base: {
|
|
|
80
80
|
* @throws {@link CleanRoomsMLServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class ListAudienceExportJobsCommand extends ListAudienceExportJobsCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAudienceGenerationJobsCommandOutput extends ListAudienceGen
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAudienceGenerationJobsCommand_base: {
|
|
24
24
|
new (input: ListAudienceGenerationJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAudienceGenerationJobsCommandInput, ListAudienceGenerationJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListAudienceGenerationJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAudienceGenerationJobsCommandInput, ListAudienceGenerationJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of audience generation jobs.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const ListAudienceGenerationJobsCommand_base: {
|
|
|
75
75
|
* @throws {@link CleanRoomsMLServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class ListAudienceGenerationJobsCommand extends ListAudienceGenerationJobsCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAudienceModelsCommandOutput extends ListAudienceModelsRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAudienceModelsCommand_base: {
|
|
24
24
|
new (input: ListAudienceModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAudienceModelsCommandInput, ListAudienceModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListAudienceModelsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAudienceModelsCommandInput, ListAudienceModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of audience models.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const ListAudienceModelsCommand_base: {
|
|
|
71
71
|
* @throws {@link CleanRoomsMLServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class ListAudienceModelsCommand extends ListAudienceModelsCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListConfiguredAudienceModelsCommandOutput extends ListConfigure
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListConfiguredAudienceModelsCommand_base: {
|
|
24
24
|
new (input: ListConfiguredAudienceModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfiguredAudienceModelsCommandInput, ListConfiguredAudienceModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListConfiguredAudienceModelsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConfiguredAudienceModelsCommandInput, ListConfiguredAudienceModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of the configured audience models.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const ListConfiguredAudienceModelsCommand_base: {
|
|
|
79
79
|
* @throws {@link CleanRoomsMLServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListConfiguredAudienceModelsCommand extends ListConfiguredAudienceModelsCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of tags for a provided resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link CleanRoomsMLServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTrainingDatasetsCommandOutput extends ListTrainingDatasetsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTrainingDatasetsCommand_base: {
|
|
24
24
|
new (input: ListTrainingDatasetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTrainingDatasetsCommandInput, ListTrainingDatasetsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListTrainingDatasetsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListTrainingDatasetsCommandInput, ListTrainingDatasetsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of training datasets.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const ListTrainingDatasetsCommand_base: {
|
|
|
70
70
|
* @throws {@link CleanRoomsMLServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class ListTrainingDatasetsCommand extends ListTrainingDatasetsCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutConfiguredAudienceModelPolicyCommandOutput extends PutConfig
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutConfiguredAudienceModelPolicyCommand_base: {
|
|
24
24
|
new (input: PutConfiguredAudienceModelPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutConfiguredAudienceModelPolicyCommandInput, PutConfiguredAudienceModelPolicyCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutConfiguredAudienceModelPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutConfiguredAudienceModelPolicyCommandInput, PutConfiguredAudienceModelPolicyCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Create or update the resource policy for a configured audience model.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const PutConfiguredAudienceModelPolicyCommand_base: {
|
|
|
66
66
|
* @throws {@link CleanRoomsMLServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class PutConfiguredAudienceModelPolicyCommand extends PutConfiguredAudienceModelPolicyCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartAudienceExportJobCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartAudienceExportJobCommand_base: {
|
|
24
24
|
new (input: StartAudienceExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartAudienceExportJobCommandInput, StartAudienceExportJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartAudienceExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartAudienceExportJobCommandInput, StartAudienceExportJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Export an audience of a specified size after you have generated an audience.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -72,6 +72,7 @@ declare const StartAudienceExportJobCommand_base: {
|
|
|
72
72
|
* @throws {@link CleanRoomsMLServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class StartAudienceExportJobCommand extends StartAudienceExportJobCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartAudienceGenerationJobCommandOutput extends StartAudienceGe
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartAudienceGenerationJobCommand_base: {
|
|
24
24
|
new (input: StartAudienceGenerationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartAudienceGenerationJobCommandInput, StartAudienceGenerationJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartAudienceGenerationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartAudienceGenerationJobCommandInput, StartAudienceGenerationJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Information necessary to start the audience generation job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const StartAudienceGenerationJobCommand_base: {
|
|
|
81
81
|
* @throws {@link CleanRoomsMLServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class StartAudienceGenerationJobCommand extends StartAudienceGenerationJobCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds metadata tags to a specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const TagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link CleanRoomsMLServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes metadata tags from a specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link CleanRoomsMLServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateConfiguredAudienceModelCommandOutput extends UpdateConfig
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateConfiguredAudienceModelCommand_base: {
|
|
24
24
|
new (input: UpdateConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConfiguredAudienceModelCommandInput, UpdateConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateConfiguredAudienceModelCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConfiguredAudienceModelCommandInput, UpdateConfiguredAudienceModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Provides the information necessary to update a configured audience model. Updates that impact audience generation jobs take effect when a new job starts, but do not impact currently running jobs.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -85,6 +85,7 @@ declare const UpdateConfiguredAudienceModelCommand_base: {
|
|
|
85
85
|
* @throws {@link CleanRoomsMLServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class UpdateConfiguredAudienceModelCommand extends UpdateConfiguredAudienceModelCommand_base {
|
|
90
91
|
}
|