Commit ee4f6491 authored by AWS SDK Rust Bot's avatar AWS SDK Rust Bot
Browse files

Update SDK models

parent d35d1cd0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
[workspace]
resolver = "2"
exclude = [
    "tests/telemetry",
    "tests/webassembly",
    "tests/no-default-features",
    "tests/webassembly"
    "tests/telemetry"
]
members = [
    "sdk/accessanalyzer",
+62 −13
Original line number Diff line number Diff line
@@ -9988,8 +9988,7 @@
                "columnClassification": {
                    "target": "com.amazonaws.cleanroomsml#ColumnClassificationDetails",
                    "traits": {
                        "smithy.api#documentation": "<p>Classification details for data columns that specify how each column should be treated during synthetic data generation.</p>",
                        "smithy.api#required": {}
                        "smithy.api#documentation": "<p>Classification details for data columns that specify how each column should be treated during synthetic data generation.</p>"
                    }
                }
            },
@@ -10277,7 +10276,16 @@
                }
            }
        },
        "com.amazonaws.cleanroomsml#ParameterKey": {
        "com.amazonaws.cleanroomsml#ParameterMap": {
            "type": "map",
            "key": {
                "target": "com.amazonaws.cleanroomsml#ParameterName"
            },
            "value": {
                "target": "com.amazonaws.cleanroomsml#ParameterValue"
            }
        },
        "com.amazonaws.cleanroomsml#ParameterName": {
            "type": "string",
            "traits": {
                "smithy.api#length": {
@@ -10287,15 +10295,6 @@
                "smithy.api#pattern": "^[0-9a-zA-Z_]+$"
            }
        },
        "com.amazonaws.cleanroomsml#ParameterMap": {
            "type": "map",
            "key": {
                "target": "com.amazonaws.cleanroomsml#ParameterKey"
            },
            "value": {
                "target": "com.amazonaws.cleanroomsml#ParameterValue"
            }
        },
        "com.amazonaws.cleanroomsml#ParameterValue": {
            "type": "string",
            "traits": {
@@ -10626,7 +10625,7 @@
                "volumeSizeInGB": {
                    "target": "smithy.api#Integer",
                    "traits": {
                        "smithy.api#documentation": "<p>The maximum size of the instance that is used to train the model.</p>",
                        "smithy.api#documentation": "<p>The volume size of the instance that is used to train the model. Please see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-store-volumes.html\">EC2 volume limit</a> for volume size limitations on different instance types.</p>",
                        "smithy.api#range": {
                            "min": 1,
                            "max": 8192
@@ -10784,6 +10783,39 @@
                }
            }
        },
        "com.amazonaws.cleanroomsml#SparkProperties": {
            "type": "map",
            "key": {
                "target": "com.amazonaws.cleanroomsml#SparkPropertyKey"
            },
            "value": {
                "target": "com.amazonaws.cleanroomsml#SparkPropertyValue"
            },
            "traits": {
                "smithy.api#length": {
                    "min": 0,
                    "max": 50
                }
            }
        },
        "com.amazonaws.cleanroomsml#SparkPropertyKey": {
            "type": "string",
            "traits": {
                "smithy.api#length": {
                    "min": 1,
                    "max": 200
                }
            }
        },
        "com.amazonaws.cleanroomsml#SparkPropertyValue": {
            "type": "string",
            "traits": {
                "smithy.api#length": {
                    "min": 0,
                    "max": 500
                }
            }
        },
        "com.amazonaws.cleanroomsml#StartAudienceExportJob": {
            "type": "operation",
            "input": {
@@ -12558,12 +12590,29 @@
                            "max": 400
                        }
                    }
                },
                "properties": {
                    "target": "com.amazonaws.cleanroomsml#WorkerComputeConfigurationProperties"
                }
            },
            "traits": {
                "smithy.api#documentation": "<p>Configuration information about the compute workers that perform the transform job.</p>"
            }
        },
        "com.amazonaws.cleanroomsml#WorkerComputeConfigurationProperties": {
            "type": "union",
            "members": {
                "spark": {
                    "target": "com.amazonaws.cleanroomsml#SparkProperties",
                    "traits": {
                        "smithy.api#documentation": "<p>The Spark configuration properties for SQL workloads. This map contains key-value pairs that configure Apache Spark settings to optimize performance for your data processing jobs. You can specify up to 50 Spark properties, with each key being 1-200 characters and each value being 0-500 characters. These properties allow you to adjust compute capacity for large datasets and complex workloads.</p>"
                    }
                }
            },
            "traits": {
                "smithy.api#documentation": "<p>The configuration properties for the worker compute environment. These properties allow you to customize the compute settings for your Clean Rooms workloads.</p>"
            }
        },
        "com.amazonaws.cleanroomsml#WorkerComputeType": {
            "type": "enum",
            "members": {
+1 −1
Original line number Diff line number Diff line
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
[package]
name = "aws-sdk-cleanroomsml"
version = "1.96.0"
version = "1.97.0"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
description = "AWS SDK for AWS Clean Rooms ML"
edition = "2021"
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ your project, add the following to your **Cargo.toml** file:
```toml
[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-cleanroomsml = "1.96.0"
aws-sdk-cleanroomsml = "1.97.0"
tokio = { version = "1", features = ["full"] }
```

+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
//! ```toml
//! [dependencies]
//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
//! aws-sdk-cleanroomsml = "1.96.0"
//! aws-sdk-cleanroomsml = "1.97.0"
//! tokio = { version = "1", features = ["full"] }
//! ```
//!
Loading