Skip to content

Commit

Permalink
Fix docs style
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyuvn committed Oct 28, 2022
1 parent 555684b commit 03cc525
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions content/docs/2.9/scalers/aws-cloudwatch.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ triggers:
**Parameter list:**
- `awsRegion` - AWS Region for the AWS Cloudwatch.
- `awsEndpoint` - Endpoint URL to override the default AWS endpoint. (Default: `""`, Optional)
- `dimensionName` - Supports specifying multiple dimension names by using ";" as a separator i.e. dimensionName: QueueName;QueueName (Optional, Required when `expression` is not specified)
- `dimensionValue` - Supports specifying multiple dimension values by using ";" as a separator i.e. dimensionValue: queue1;queue2 (Optional, Required when `expression` is not specified)
- `expression` - Supports query with [expression](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch-metrics-insights-querylanguage.html) (Optional, Required when `dimensionName` & `dimensionValue` are not specified)
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.9/scalers/aws-dynamodb-streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ triggers:
**Parameter list:**
- `awsRegion` - AWS Region for the DynamoDB.
- `awsEndpoint` - An optional endpoint URL that overrides the default AWS endpoint.
- `awsEndpoint` - Endpoint URL to override the default AWS endpoint. (Default: `""`, Optional)
- `tableName` - The target DynamoDB table to which the stream belongs.
- `shardCount` - The target value that a DynamoDB streams consumer can handle. (Default: `2`, Optional)
- `activationShardCount` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds).(Default: `0`, Optional)
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.9/scalers/aws-dynamodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ triggers:
**Parameter list:**
- `awsRegion` - AWS Region for the DynamoDB Table.
- `awsEndpoint` - An optional endpoint URL that overrides the default AWS endpoint.
- `awsEndpoint` - Endpoint URL to override the default AWS endpoint. (Default: `""`, Optional)
- `tableName` - The target table where the scaler execute the query.
- `targetValue` - The target value for the number of items retrieved by the query.
- `activationTargetValue` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds).(Default: `0`, Optional)
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.9/scalers/aws-kinesis.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ triggers:
- `shardCount` - The target value that a Kinesis data streams consumer can handle. (Default: `2`, Optional)
- `activationShardCount` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds).(Default: `0`, Optional)
- `awsRegion` - AWS Region for the Kinesis Stream.
- `awsEndpoint` - An optional endpoint URL that overrides the default AWS endpoint.
- `awsEndpoint` - Endpoint URL to override the default AWS endpoint. (Default: `""`, Optional)
- `identityOwner` - Receive permissions on the Kinesis Stream via Pod Identity or from the KEDA operator itself (see below). (Values: `pod`, `operator`, Default: `pod`, Optional)

> When `identityOwner` set to `operator` - the only requirement is that the KEDA operator has the correct IAM permissions on the Kinesis Stream. Additional Authentication Parameters are not required.
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.9/scalers/aws-sqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ triggers:
- `scaleOnInFlight` - Indication whether or not to scale on queued messages or to include in-flight messages as well.
- When set to `false` "actual messages" is equal to `ApproximateNumberOfMessages`. When set to `true` "actual messages" is equal to `ApproximateNumberOfMessages` + `ApproximateNumberOfMessagesNotVisible`, since `NotVisible` in SQS terms means the message is still in-flight/processing. (default: true)
- `awsRegion` - AWS Region for the SQS Queue.
- `awsEndpoint` - An optional endpoint URL that overrides the default AWS endpoint.
- `awsEndpoint` - Endpoint URL to override the default AWS endpoint. (Default: `""`, Optional)
- `identityOwner` - Receive permissions on the SQS Queue via Pod Identity or from the KEDA operator itself (see below). (Values: `pod`, `operator`, Default: `pod`, Optional)

> When `identityOwner` set to `operator` - the only requirement is that the KEDA operator has the correct IAM permissions on the SQS queue. Additional Authentication Parameters are not required.
Expand Down

0 comments on commit 03cc525

Please sign in to comment.