AWS cli documentation change
Summary
Added new parameters for workflow version creation including readme documentation sources, parameter templates, and repository-based definitions. Updated CLI version reference.
Security assessment
Added parameters like --readme-uri enforce security controls by specifying requirements for S3 bucket ownership and access permissions. The --definition-repository structure includes security-relevant fields like connectionArn for secure repository access. However, there's no evidence these changes address a specific existing vulnerability.
Diff
diff --git a/cli/latest/reference/omics/create-workflow-version.md b/cli/latest/reference/omics/create-workflow-version.md index 143f780c3..f80cfb8a8 100644 --- a//cli/latest/reference/omics/create-workflow-version.md +++ b//cli/latest/reference/omics/create-workflow-version.md @@ -15 +15 @@ - * [AWS CLI 2.27.56 Command Reference](../../index.html) » + * [AWS CLI 2.27.59 Command Reference](../../index.html) » @@ -69 +69 @@ Don’t include any personally identifiable information (PII) in the version nam -For more information, see [Workflow versioning in Amazon Web Services HealthOmics](https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html) in the Amazon Web Services HealthOmics User Guide. +For more information, see [Workflow versioning in Amazon Web Services HealthOmics](https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html) in the _Amazon Web Services HealthOmics User Guide_ . @@ -90,0 +91,5 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/omics- + [--readme-markdown <value>] + [--parameter-template-path <value>] + [--readme-path <value>] + [--definition-repository <value>] + [--readme-uri <value>] @@ -240,0 +246,72 @@ JSON Syntax: +`--readme-markdown` (string) + +> The markdown content for the workflow version’s README file. This provides documentation and usage information for users of this specific workflow version. + +`--parameter-template-path` (string) + +> The path to the workflow version parameter template JSON file within the repository. This file defines the input parameters for runs that use this workflow version. If not specified, the workflow version will be created without a parameter template. + +`--readme-path` (string) + +> The path to the workflow version README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the `README.md` file from the root directory of the repository will be used. + +`--definition-repository` (structure) + +> The repository information for the workflow version definition. This allows you to source your workflow version definition directly from a code repository. +> +> connectionArn -> (string) +> +>> The Amazon Resource Name (ARN) of the connection to the source code repository. +> +> fullRepositoryId -> (string) +> +>> The full repository identifier, including the repository owner and name. For example, ‘repository-owner/repository-name’. +> +> sourceReference -> (structure) +> +>> The source reference for the repository, such as a branch name, tag, or commit ID. +>> +>> type -> (string) +>> +>>> The type of source reference, such as branch, tag, or commit. +>> +>> value -> (string) +>> +>>> The value of the source reference, such as the branch name, tag name, or commit ID. +> +> excludeFilePatterns -> (list) +> +>> A list of file patterns to exclude when retrieving the workflow definition from the repository. +>> +>> (string) + +Shorthand Syntax: + + + connectionArn=string,fullRepositoryId=string,sourceReference={type=string,value=string},excludeFilePatterns=string,string + + +JSON Syntax: + + + { + "connectionArn": "string", + "fullRepositoryId": "string", + "sourceReference": { + "type": "BRANCH"|"TAG"|"COMMIT", + "value": "string" + }, + "excludeFilePatterns": ["string", ...] + } + + +`--readme-uri` (string) + +> The S3 URI of the README file for the workflow version. This file provides documentation and usage information for the workflow version. Requirements include: +> +> * The S3 URI must begin with `s3://USER-OWNED-BUCKET/` +> * The requester must have access to the S3 bucket and object. +> * The max README content length is 500 KiB. +> + + @@ -378 +455 @@ uuid -> (string) - * [AWS CLI 2.27.56 Command Reference](../../index.html) » + * [AWS CLI 2.27.59 Command Reference](../../index.html) »