1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Defines the Amazon S3 bucket where the configured audience is stored.
type AudienceDestination struct {
// The Amazon S3 bucket and path for the configured audience.
//
// This member is required.
S3Destination *S3ConfigMap
noSmithyDocumentSerde
}
// Provides information about the audience export job.
type AudienceExportJobSummary struct {
// The Amazon Resource Name (ARN) of the audience generation job that was exported.
//
// This member is required.
AudienceGenerationJobArn *string
// The size of the generated audience. Must match one of the sizes in the
// configured audience model.
//
// This member is required.
AudienceSize *AudienceSize
// The time at which the audience export job was created.
//
// This member is required.
CreateTime *time.Time
// The name of the audience export job.
//
// This member is required.
Name *string
// The status of the audience export job.
//
// This member is required.
Status AudienceExportJobStatus
// The most recent time at which the audience export job was updated.
//
// This member is required.
UpdateTime *time.Time
// The description of the audience export job.
Description *string
// The Amazon S3 bucket where the audience export is stored.
OutputLocation *string
// Details about the status of a resource.
StatusDetails *StatusDetails
noSmithyDocumentSerde
}
// Defines the Amazon S3 bucket where the training data for the configured
// audience is stored.
type AudienceGenerationJobDataSource struct {
// The Amazon S3 bucket where the training data for the configured audience is
// stored.
//
// This member is required.
DataSource *S3ConfigMap
// The ARN of the IAM role that can read the Amazon S3 bucket where the training
// data is stored.
//
// This member is required.
RoleArn *string
noSmithyDocumentSerde
}
// Provides information about the configured audience generation job.
type AudienceGenerationJobSummary struct {
// The Amazon Resource Name (ARN) of the audience generation job.
//
// This member is required.
AudienceGenerationJobArn *string
// The Amazon Resource Name (ARN) of the configured audience model that was used
// for this audience generation job.
//
// This member is required.
ConfiguredAudienceModelArn *string
// The time at which the audience generation job was created.
//
// This member is required.
CreateTime *time.Time
// The name of the audience generation job.
//
// This member is required.
Name *string
// The status of the audience generation job.
//
// This member is required.
Status AudienceGenerationJobStatus
// The most recent time at which the audience generation job was updated.
//
// This member is required.
UpdateTime *time.Time
// The identifier of the collaboration that contains this audience generation job.
CollaborationId *string
// The description of the audience generation job.
Description *string
// The AWS Account that submitted the job.
StartedBy *string
noSmithyDocumentSerde
}
// The audience model metrics.
type AudienceModelMetric struct {
// The number of users that were used to generate these model metrics.
//
// This member is required.
ForTopKItemPredictions *int32
// The audience model metric.
//
// This member is required.
Type AudienceModelMetricType
// The value of the audience model metric
//
// This member is required.
Value *float64
noSmithyDocumentSerde
}
// Information about the audience model.
type AudienceModelSummary struct {
// The Amazon Resource Name (ARN) of the audience model.
//
// This member is required.
AudienceModelArn *string
// The time at which the audience model was created.
//
// This member is required.
CreateTime *time.Time
// The name of the audience model.
//
// This member is required.
Name *string
// The status of the audience model.
//
// This member is required.
Status AudienceModelStatus
// The Amazon Resource Name (ARN) of the training dataset that was used for the
// audience model.
//
// This member is required.
TrainingDatasetArn *string
// The most recent time at which the audience model was updated.
//
// This member is required.
UpdateTime *time.Time
// The description of the audience model.
Description *string
noSmithyDocumentSerde
}
// Metrics that describe the quality of the generated audience.
type AudienceQualityMetrics struct {
// The relevance scores of the generated audience.
//
// This member is required.
RelevanceMetrics []RelevanceMetric
noSmithyDocumentSerde
}
// The size of the generated audience. Must match one of the sizes in the
// configured audience model.
type AudienceSize struct {
// Whether the audience size is defined in absolute terms or as a percentage. You
// can use the ABSOLUTE AudienceSize to configure out audience sizes using the
// count of identifiers in the output. You can use the Percentage AudienceSize to
// configure sizes in the range 1-100 percent.
//
// This member is required.
Type AudienceSizeType
// Specify an audience size value.
//
// This member is required.
Value *int32
noSmithyDocumentSerde
}
// Configure the list of audience output sizes that can be created. A request to
// StartAudienceGenerationJob that uses this configured audience model must have an
// audienceSize selected from this list. You can use the ABSOLUTE AudienceSize to
// configure out audience sizes using the count of identifiers in the output. You
// can use the Percentage AudienceSize to configure sizes in the range 1-100
// percent.
type AudienceSizeConfig struct {
// An array of the different audience output sizes.
//
// This member is required.
AudienceSizeBins []int32
// Whether the audience output sizes are defined as an absolute number or a
// percentage.
//
// This member is required.
AudienceSizeType AudienceSizeType
noSmithyDocumentSerde
}
// Metadata for a column.
type ColumnSchema struct {
// The name of a column.
//
// This member is required.
ColumnName *string
// The data type of column.
//
// This member is required.
ColumnTypes []ColumnType
noSmithyDocumentSerde
}
// Configuration information necessary for the configure audience model output.
type ConfiguredAudienceModelOutputConfig struct {
// Defines the Amazon S3 bucket where the configured audience is stored.
//
// This member is required.
Destination *AudienceDestination
// The ARN of the IAM role that can write the Amazon S3 bucket.
//
// This member is required.
RoleArn *string
noSmithyDocumentSerde
}
// Information about the configured audience model.
type ConfiguredAudienceModelSummary struct {
// The Amazon Resource Name (ARN) of the audience model that was used to create
// the configured audience model.
//
// This member is required.
AudienceModelArn *string
// The Amazon Resource Name (ARN) of the configured audience model that you are
// interested in.
//
// This member is required.
ConfiguredAudienceModelArn *string
// The time at which the configured audience model was created.
//
// This member is required.
CreateTime *time.Time
// The name of the configured audience model.
//
// This member is required.
Name *string
// The output configuration of the configured audience model.
//
// This member is required.
OutputConfig *ConfiguredAudienceModelOutputConfig
// The status of the configured audience model.
//
// This member is required.
Status ConfiguredAudienceModelStatus
// The most recent time at which the configured audience model was updated.
//
// This member is required.
UpdateTime *time.Time
// The description of the configured audience model.
Description *string
noSmithyDocumentSerde
}
// Defines where the training dataset is located, what type of data it contains,
// and how to access the data.
type Dataset struct {
// A DatasetInputConfig object that defines the data source and schema mapping.
//
// This member is required.
InputConfig *DatasetInputConfig
// What type of information is found in the dataset.
//
// This member is required.
Type DatasetType
noSmithyDocumentSerde
}
// Defines the Glue data source and schema mapping information.
type DatasetInputConfig struct {
// A DataSource object that specifies the Glue data source for the training data.
//
// This member is required.
DataSource *DataSource
// The schema information for the training data.
//
// This member is required.
Schema []ColumnSchema
noSmithyDocumentSerde
}
// Defines information about the Glue data source that contains the training data.
type DataSource struct {
// A GlueDataSource object that defines the catalog ID, database name, and table
// name for the training data.
//
// This member is required.
GlueDataSource *GlueDataSource
noSmithyDocumentSerde
}
// Defines the Glue data source that contains the training data.
type GlueDataSource struct {
// The Glue database that contains the training data.
//
// This member is required.
DatabaseName *string
// The Glue table that contains the training data.
//
// This member is required.
TableName *string
// The Glue catalog that contains the training data.
CatalogId *string
noSmithyDocumentSerde
}
// The relevance score of a generated audience.
type RelevanceMetric struct {
// The size of the generated audience. Must match one of the sizes in the
// configured audience model.
//
// This member is required.
AudienceSize *AudienceSize
// The relevance score of the generated audience.
Score *float64
noSmithyDocumentSerde
}
// Provides information about an Amazon S3 bucket and path.
type S3ConfigMap struct {
// The Amazon S3 location URI.
//
// This member is required.
S3Uri *string
noSmithyDocumentSerde
}
// Details about the status of a resource.
type StatusDetails struct {
// The error message that was returned. The message is intended for human
// consumption and can change at any time. Use the statusCode for programmatic
// error handling.
Message *string
// The status code that was returned. The status code is intended for programmatic
// error handling. Clean Rooms ML will not change the status code for existing
// error conditions.
StatusCode *string
noSmithyDocumentSerde
}
// Provides information about the training dataset.
type TrainingDatasetSummary struct {
// The time at which the training dataset was created.
//
// This member is required.
CreateTime *time.Time
// The name of the training dataset.
//
// This member is required.
Name *string
// The status of the training dataset.
//
// This member is required.
Status TrainingDatasetStatus
// The Amazon Resource Name (ARN) of the training dataset.
//
// This member is required.
TrainingDatasetArn *string
// The most recent time at which the training dataset was updated.
//
// This member is required.
UpdateTime *time.Time
// The description of the training dataset.
Description *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|