AWS cli documentation change
Summary
Added version identifier parameter, incremental training data channel details, training input mode documentation, and S3 data distribution strategy explanations
Security assessment
Added documentation about S3 data distribution strategies ('FullyReplicated' vs 'ShardedByS3Key') provides security-relevant information about data handling patterns, though it does not address a specific vulnerability. This qualifies as security feature documentation.
Diff
diff --git a/cli/latest/reference/cleanroomsml/get-trained-model.md b/cli/latest/reference/cleanroomsml/get-trained-model.md index 760d918b1..23bc15c87 100644 --- a//cli/latest/reference/cleanroomsml/get-trained-model.md +++ b//cli/latest/reference/cleanroomsml/get-trained-model.md @@ -15 +15 @@ - * [AWS CLI 2.27.46 Command Reference](../../index.html) » + * [AWS CLI 2.27.49 Command Reference](../../index.html) » @@ -68,0 +69 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/cleanr + [--version-identifier <value>] @@ -100,0 +102,4 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/cleanr +`--version-identifier` (string) + +> The version identifier of the trained model to retrieve. If not specified, the operation returns information about the latest version of the trained model. + @@ -211,0 +217,24 @@ trainedModelArn -> (string) +versionIdentifier -> (string) + +> The version identifier of the trained model. This unique identifier distinguishes this version from other versions of the same trained model. + +incrementalTrainingDataChannels -> (list) + +> Information about the incremental training data channels used to create this version of the trained model. This includes details about the base model that was used for incremental training and the channel configuration. +> +> (structure) +> +>> Contains information about an incremental training data channel that was used to create a trained model. This structure provides details about the base model and channel configuration used during incremental training. +>> +>> channelName -> (string) +>> +>>> The name of the incremental training data channel that was used. +>> +>> versionIdentifier -> (string) +>> +>>> The version identifier of the trained model that was used for incremental training. +>> +>> modelName -> (string) +>> +>>> The name of the base trained model that was used for incremental training. + @@ -255,0 +285,4 @@ resourceConfig -> (structure) +trainingInputMode -> (string) + +> The input mode that was used for accessing the training data when this trained model was created. This indicates how the training data was made available to the training algorithm. + @@ -346,0 +380,9 @@ dataChannels -> (list) +>> +>> s3DataDistributionType -> (string) +>> +>>> Specifies how the training data stored in Amazon S3 should be distributed to training instances. This parameter controls the data distribution strategy for the training job: +>>> +>>> * `FullyReplicated` \- The entire dataset is replicated on each training instance. This is suitable for smaller datasets and algorithms that require access to the complete dataset. +>>> * `ShardedByS3Key` \- The dataset is distributed across training instances based on Amazon S3 key names. This is suitable for larger datasets and distributed training scenarios where each instance processes a subset of the data. +>>> + @@ -358 +400 @@ dataChannels -> (list) - * [AWS CLI 2.27.46 Command Reference](../../index.html) » + * [AWS CLI 2.27.49 Command Reference](../../index.html) »