Note:

You are viewing the documentation for an older major version of the AWS CLI (version 1).

AWS CLI version 2, the latest major version of AWS CLI, is now stable and recommended for general use. To view this page for the AWS CLI version 2, click here. For more information see the AWS CLI version 2 installation instructions and migration guide.

[ aws . osis ]

update-pipeline

Description

Updates an OpenSearch Ingestion pipeline. For more information, see Updating Amazon OpenSearch Ingestion pipelines .

See also: AWS API Documentation

Synopsis

  update-pipeline
--pipeline-name <value>
[--min-units <value>]
[--max-units <value>]
[--pipeline-configuration-body <value>]
[--log-publishing-options <value>]
[--buffer-options <value>]
[--encryption-at-rest-options <value>]
[--cli-input-json <value>]
[--generate-cli-skeleton <value>]
[--debug]
[--endpoint-url <value>]
[--no-verify-ssl]
[--no-paginate]
[--output <value>]
[--query <value>]
[--profile <value>]
[--region <value>]
[--version <value>]
[--color <value>]
[--no-sign-request]
[--ca-bundle <value>]
[--cli-read-timeout <value>]
[--cli-connect-timeout <value>]

Options

--pipeline-name (string)

The name of the pipeline to update.

--min-units (integer)

The minimum pipeline capacity, in Ingestion Compute Units (ICUs).

--max-units (integer)

The maximum pipeline capacity, in Ingestion Compute Units (ICUs)

--pipeline-configuration-body (string)

The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n .

--log-publishing-options (structure)

Key-value pairs to configure log publishing.

IsLoggingEnabled -> (boolean)

Whether logs should be published.

CloudWatchLogDestination -> (structure)

The destination for OpenSearch Ingestion logs sent to Amazon CloudWatch Logs. This parameter is required if IsLoggingEnabled is set to true .

LogGroup -> (string)

The name of the CloudWatch Logs group to send pipeline logs to. You can specify an existing log group or create a new one. For example, /aws/OpenSearchService/IngestionService/my-pipeline .

Shorthand Syntax:

IsLoggingEnabled=boolean,CloudWatchLogDestination={LogGroup=string}

JSON Syntax:

{
  "IsLoggingEnabled": true|false,
  "CloudWatchLogDestination": {
    "LogGroup": "string"
  }
}

--buffer-options (structure)

Key-value pairs to configure persistent buffering for the pipeline.

PersistentBufferEnabled -> (boolean)

Whether persistent buffering should be enabled.

Shorthand Syntax:

PersistentBufferEnabled=boolean

JSON Syntax:

{
  "PersistentBufferEnabled": true|false
}

--encryption-at-rest-options (structure)

Key-value pairs to configure encryption for data that is written to a persistent buffer.

KmsKeyArn -> (string)

The ARN of the KMS key used to encrypt data-at-rest in OpenSearch Ingestion. By default, data is encrypted using an AWS owned key.

Shorthand Syntax:

KmsKeyArn=string

JSON Syntax:

{
  "KmsKeyArn": "string"
}

--cli-input-json (string) Performs service operation based on the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, the CLI values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally.

--generate-cli-skeleton (string) Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input, prints a sample input JSON that can be used as an argument for --cli-input-json. If provided with the value output, it validates the command inputs and returns a sample output JSON for that command.

Global Options

--debug (boolean)

Turn on debug logging.

--endpoint-url (string)

Override command's default URL with the given URL.

--no-verify-ssl (boolean)

By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates. This option overrides the default behavior of verifying SSL certificates.

--no-paginate (boolean)

Disable automatic pagination.

--output (string)

The formatting style for command output.

  • json
  • text
  • table

--query (string)

A JMESPath query to use in filtering the response data.

--profile (string)

Use a specific profile from your credential file.

--region (string)

The region to use. Overrides config/env settings.

--version (string)

Display the version of this tool.

--color (string)

Turn on/off color output.

  • on
  • off
  • auto

--no-sign-request (boolean)

Do not sign requests. Credentials will not be loaded if this argument is provided.

--ca-bundle (string)

The CA certificate bundle to use when verifying SSL certificates. Overrides config/env settings.

--cli-read-timeout (int)

The maximum socket read time in seconds. If the value is set to 0, the socket read will be blocking and not timeout. The default value is 60 seconds.

--cli-connect-timeout (int)

The maximum socket connect time in seconds. If the value is set to 0, the socket connect will be blocking and not timeout. The default value is 60 seconds.

Output

Pipeline -> (structure)

Container for information about the updated pipeline.

PipelineName -> (string)

The name of the pipeline.

PipelineArn -> (string)

The Amazon Resource Name (ARN) of the pipeline.

MinUnits -> (integer)

The minimum pipeline capacity, in Ingestion Compute Units (ICUs).

MaxUnits -> (integer)

The maximum pipeline capacity, in Ingestion Compute Units (ICUs).

Status -> (string)

The current status of the pipeline.

StatusReason -> (structure)

The reason for the current status of the pipeline.

Description -> (string)

A description of why a pipeline has a certain status.

PipelineConfigurationBody -> (string)

The Data Prepper pipeline configuration in YAML format.

CreatedAt -> (timestamp)

The date and time when the pipeline was created.

LastUpdatedAt -> (timestamp)

The date and time when the pipeline was last updated.

IngestEndpointUrls -> (list)

The ingestion endpoints for the pipeline, which you can send data to.

(string)

LogPublishingOptions -> (structure)

Key-value pairs that represent log publishing settings.

IsLoggingEnabled -> (boolean)

Whether logs should be published.

CloudWatchLogDestination -> (structure)

The destination for OpenSearch Ingestion logs sent to Amazon CloudWatch Logs. This parameter is required if IsLoggingEnabled is set to true .

LogGroup -> (string)

The name of the CloudWatch Logs group to send pipeline logs to. You can specify an existing log group or create a new one. For example, /aws/OpenSearchService/IngestionService/my-pipeline .

VpcEndpoints -> (list)

The VPC interface endpoints that have access to the pipeline.

(structure)

An OpenSearch Ingestion-managed VPC endpoint that will access one or more pipelines.

VpcEndpointId -> (string)

The unique identifier of the endpoint.

VpcId -> (string)

The ID for your VPC. Amazon Web Services PrivateLink generates this value when you create a VPC.

VpcOptions -> (structure)

Information about the VPC, including associated subnets and security groups.

SubnetIds -> (list)

A list of subnet IDs associated with the VPC endpoint.

(string)

SecurityGroupIds -> (list)

A list of security groups associated with the VPC endpoint.

(string)

BufferOptions -> (structure)

Options that specify the configuration of a persistent buffer. To configure how OpenSearch Ingestion encrypts this data, set the EncryptionAtRestOptions.

PersistentBufferEnabled -> (boolean)

Whether persistent buffering should be enabled.

EncryptionAtRestOptions -> (structure)

Options to control how OpenSearch encrypts all data-at-rest.

KmsKeyArn -> (string)

The ARN of the KMS key used to encrypt data-at-rest in OpenSearch Ingestion. By default, data is encrypted using an AWS owned key.

ServiceVpcEndpoints -> (list)

A list of VPC endpoints that OpenSearch Ingestion has created to other AWS services.

(structure)

A container for information about VPC endpoints that were created to other services

ServiceName -> (string)

The name of the service for which a VPC endpoint was created.

VpcEndpointId -> (string)

The ID of the VPC endpoint that was created.

Tags -> (list)

A list of tags associated with the given pipeline.

(structure)

A tag (key-value pair) for an OpenSearch Ingestion pipeline.

Key -> (string)

The tag key. Tag keys must be unique for the pipeline to which they are attached.

Value -> (string)

The value assigned to the corresponding tag key. Tag values can be null and don't have to be unique in a tag set. For example, you can have a key value pair in a tag set of project : Trinity and cost-center : Trinity