GetItem
type: "io.kestra.plugin.aws.dynamodb.GetItem"
Get an item from a table.
Examples
Get an item from its key.
id: "get_item"
type: "io.kestra.plugin.aws.dynamodb.GetItem"
tableName: "persons"
key:
id: "1"
Properties
tableName
- Type: string
- Dynamic: ✔️
- Required: ✔️
The DynamoDB table name.
accessKeyId
- Type: string
- Dynamic: ✔️
- Required: ❌
The Access Key Id in order to connect to AWS
If no connection is defined, we will use default DefaultCredentialsProvider that will try to guess the value
endpointOverride
- Type: string
- Dynamic: ✔️
- Required: ❌
The endpoint with which the SDK should communicate.
Should normally not be used except for local development.
key
- Type: object
- Dynamic: ✔️
- Required: ❌
The DynamoDB item key.
The DynamoDB item key. It's a map of string -> object.
region
- Type: string
- Dynamic: ✔️
- Required: ❌
The region with which the SDK should communicate.
secretKeyId
- Type: string
- Dynamic: ✔️
- Required: ❌
The Secret Key Id in order to connect to AWS
If no connection is defined, we will use default DefaultCredentialsProvider that will try to guess the value
sessionToken
- Type: string
- Dynamic: ✔️
- Required: ❌
The he AWS session token, retrieved from an AWS token service, used for authenticating that this user has received temporary permission to access some resource.
If no connection is defined, we will use default DefaultCredentialsProvider that will try to guess the value
Outputs
row
- Type: object
Map containing the fetched item.