AWS cli documentation change
Summary
Updated AWS CLI version reference and added documentation for new response fields: networkingMode, configuration, and vpcConfig (including securityGroupIds and subnetIds) for run networking behavior
Security assessment
The change adds documentation for VPC configuration and networking mode options (RESTRICTED/VPC) which are security features for network isolation. However, there is no evidence this addresses a specific security vulnerability; it appears to be a feature enhancement.
Diff
diff --git a/cli/latest/reference/omics/get-run.md b/cli/latest/reference/omics/get-run.md index 8edf0730a..6907741ed 100644 --- a//cli/latest/reference/omics/get-run.md +++ b//cli/latest/reference/omics/get-run.md @@ -15 +15 @@ - * [AWS CLI 2.34.16 Command Reference](../../index.html) » + * [AWS CLI 2.34.19 Command Reference](../../index.html) » @@ -789,0 +790,95 @@ workflowUuid -> (string) +networkingMode -> (string) + +> Configuration for run networking behavior. If absent, this will default to RESTRICTED. +> +> Possible values: +> +> * `RESTRICTED` +> * `VPC` +> + + +configuration -> (structure) + +> Configuration details for the workflow run. +> +> name -> (string) +> +>> User-friendly name for the configuration. +>> +>> Constraints: +>> +>> * min: `1` +>> * max: `128` +>> * pattern: `[A-Za-z0-9][A-Za-z0-9\-\._]*` +>> + +> +> arn -> (string) +> +>> Unique resource identifier for the configuration. +>> +>> Constraints: +>> +>> * min: `1` +>> * max: `190` +>> * pattern: `arn:.+` +>> + +> +> uuid -> (string) +> +>> Unique identifier for the configuration. +>> +>> Constraints: +>> +>> * min: `1` +>> * max: `128` +>> * pattern: `[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+` +>> + + +vpcConfig -> (structure) + +> VPC configuration for the workflow run. +> +> securityGroupIds -> (list) +> +>> List of security group IDs. +>> +>> (string) +>> +>>> Constraints: +>>> +>>> * min: `4` +>>> * max: `128` +>>> * pattern: `sg-[0-9a-f]+` +>>> + +> +> subnetIds -> (list) +> +>> List of subnet IDs. +>> +>> (string) +>> +>>> Constraints: +>>> +>>> * min: `8` +>>> * max: `128` +>>> * pattern: `subnet-[0-9a-f]+` +>>> + +> +> vpcId -> (string) +> +>> VPC ID computed from the provided subnet IDs. +>> +>> Constraints: +>> +>> * min: `5` +>> * max: `128` +>> * pattern: `vpc-[0-9a-f]+` +>> + + @@ -800 +895 @@ workflowUuid -> (string) - * [AWS CLI 2.34.16 Command Reference](../../index.html) » + * [AWS CLI 2.34.19 Command Reference](../../index.html) »