Skip to content

Commit

Permalink
fixing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcruse3 committed Oct 26, 2023
1 parent 7fa6768 commit dc29948
Show file tree
Hide file tree
Showing 24 changed files with 358 additions and 390 deletions.
86 changes: 43 additions & 43 deletions acai_aws/docs/apigateway/configuration-details.md

Large diffs are not rendered by default.

39 changes: 15 additions & 24 deletions acai_aws/docs/documentdb/configuration-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@ Below is a full list of all the configurations available and examples of their u

## DocumentDB Record Properties

| property | type | description |
|-------------------------------------------------------------------|--------|------------------------------------------------------|
| **[`event_id`]({{web.url}}/documentdb/#recordevent_id)** | string | id of the event |
| **[`cluster_time`]({{web.url}}/documentdb/#recordcluster_time)** | string | time from the cluster of the event |
| **[`document_key`]({{web.url}}/documentdb/#recorddocument_key)** | string | key of the document which was triggered |
| **[`full_document`]({{web.url}}/documentdb/#recordfull_document)**| dict | full document of what was triggered |
| **[`operation`]({{web.url}}/documentdb/#recordoperation)** | string | operation which triggered the event |
| **[`change_event`]({{web.url}}/documentdb/#recordchange_event)** | string | detailed mongo specific operation event name |
| **[`body`]({{web.url}}/documentdb/#recordbody)** | dict | the new image of dynamodb record; created or updated |
| **[`db`]({{web.url}}/documentdb/#recorddb)** | dict | mongo database details |
| **[`collection`]({{web.url}}/documentdb/#recordcollection)** | dict | mongo collections details |
| property | type | description |
|------------------------------------------------------------------------------------------------|--------|------------------------------------------------------|
| **[`event_id`](/acai-python-docs/documentdb/configuration-details/#recordevent_id)** | string | id of the event |
| **[`cluster_time`](/acai-python-docs/documentdb/configuration-details/#recordcluster_time)** | string | time from the cluster of the event |
| **[`document_key`](/acai-python-docs/documentdb/configuration-details/#recorddocument_key)** | string | key of the document which was triggered |
| **[`full_document`](/acai-python-docs/documentdb/configuration-details/#recordfull_document)** | dict | full document of what was triggered |
| **[`operation`](/acai-python-docs/documentdb/configuration-details/#recordoperation)** | string | operation which triggered the event |
| **[`change_event`](/acai-python-docs/documentdb/configuration-details/#recordchange_event)** | string | detailed mongo specific operation event name |
| **[`body`](/acai-python-docs/documentdb/configuration-details/#recordbody)** | dict | the new image of dynamodb record; created or updated |
| **[`db`](/acai-python-docs/documentdb/configuration-details/#recorddb)** | dict | mongo database details |
| **[`collection`](/acai-python-docs/documentdb/configuration-details/#recordcollection)** | dict | mongo collections details |


#### `record.event_id`
Expand All @@ -114,19 +114,19 @@ print(record.cluster_time);
'2023-02-16T00:00:00Z'
```

#### `record.documentKey`
#### `record.document_key`

```python
print(record.documentKey);
print(record.document_key);

# output
'63eeb6e7d418cd98afb1c1d7'
```

#### `record.fullDocument`
#### `record.full_document`

```python
print(record.fullDocument);
print(record.full_document);

# output
{
Expand Down Expand Up @@ -158,15 +158,6 @@ print(record.change_event);
'insert'
```

#### `record.change_event`

```python
print(record.change_event);

# output
'insert'
```

#### `record.body`

```python
Expand Down
38 changes: 19 additions & 19 deletions acai_aws/docs/dynamodb/configuration-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,25 +83,25 @@ Below is a full list of all the configurations available and examples of their u

## DynamoDB Record Properties

| property | type | description |
|-------------------------------------------------------------|--------|------------------------------------------------------|
| **[`body`]({{web.url}}/dynamodb/#recordbody)** | object | the new image of dynamodb record; created or updated |
| **[`created`]({{web.url}}/dynamodb/#recordcreated)** | float | the approximate creationDate time |
| **[`expired`]({{web.url}}/dynamodb/#recordexpired)** | bool | whether the ttl has expired |
| **[`id`]({{web.url}}/dynamodb/#recordid)** | str | the id of the event which invoked the lambda |
| **[`identity`]({{web.url}}/dynamodb/#recordidentity)** | object | the identity who triggered the dynamodb change |
| **[`keys`]({{web.url}}/dynamodb/#recordkeys)** | object | the keys of DynamoDB record |
| **[`name`]({{web.url}}/dynamodb/#recordname)** | str | the name of the event which invoked the lambda |
| **[`new_image`]({{web.url}}/dynamodb/#recordnewimage)** | object | the new image of dynamodb record; created or updated |
| **[`old_image`]({{web.url}}/dynamodb/#recordoldimage)** | object | the old image of dynamodb record; updated or deleted |
| **[`operation`]({{web.url}}/dynamodb/#recordoperation)** | str | triggered operation lambda (create, update, delete) |
| **[`region`]({{web.url}}/dynamodb/#recordregion)** | str | the region the record is from |
| **[`size`]({{web.url}}/dynamodb/#recordsize)** | int | the size in bytes of the record |
| **[`source`]({{web.url}}/dynamodb/#recordsource)** | str | the source of the event which invoked the lambda |
| **[`source_arn`]({{web.url}}/dynamodb/#recordsourcearn)** | str | the event source arn |
| **[`stream_type`]({{web.url}}/dynamodb/#recordstreamtype)** | str | the stream view type |
| **[`version`]({{web.url}}/dynamodb/#recordversion)** | str | the event version |
| **[`operation`]({{web.url}}/s3/#recordoperation)** | str | enum of `created`, `deleted`, `updated` |
| property | type | description |
|-----------------------------------------------------------------------------------------|--------|------------------------------------------------------|
| **[`body`](/acai-python-docs/dynamodb/configuration-details/#recordbody)** | object | the new image of dynamodb record; created or updated |
| **[`created`](/acai-python-docs/dynamodb/configuration-details/#recordcreated)** | float | the approximate creationDate time |
| **[`expired`](/acai-python-docs/dynamodb/configuration-details/#recordexpired)** | bool | whether the ttl has expired |
| **[`id`](/acai-python-docs/dynamodb/configuration-details/#recordid)** | str | the id of the event which invoked the lambda |
| **[`identity`](/acai-python-docs/dynamodb/configuration-details/#recordidentity)** | object | the identity who triggered the dynamodb change |
| **[`keys`](/acai-python-docs/dynamodb/configuration-details/#recordkeys)** | object | the keys of DynamoDB record |
| **[`name`](/acai-python-docs/dynamodb/configuration-details/#recordname)** | str | the name of the event which invoked the lambda |
| **[`new_image`](/acai-python-docs/dynamodb/configuration-details/#recordnewimage)** | object | the new image of dynamodb record; created or updated |
| **[`old_image`](/acai-python-docs/dynamodb/configuration-details/#recordoldimage)** | object | the old image of dynamodb record; updated or deleted |
| **[`operation`](/acai-python-docs/dynamodb/configuration-details/#recordoperation)** | str | triggered operation lambda (create, update, delete) |
| **[`region`](/acai-python-docs/dynamodb/configuration-details/#recordregion)** | str | the region the record is from |
| **[`size`](/acai-python-docs/dynamodb/configuration-details/#recordsize)** | int | the size in bytes of the record |
| **[`source`](/acai-python-docs/dynamodb/configuration-details/#recordsource)** | str | the source of the event which invoked the lambda |
| **[`source_arn`](/acai-python-docs/dynamodb/configuration-details/#recordsourcearn)** | str | the event source arn |
| **[`stream_type`](/acai-python-docs/dynamodb/configuration-details/#recordstreamtype)** | str | the stream view type |
| **[`version`](/acai-python-docs/dynamodb/configuration-details/#recordversion)** | str | the event version |
| **[`operation`](/acai-python-docs/dynamodb/configuration-details/#recordoperation)** | str | enum of `created`, `deleted`, `updated` |

#### `record.region`

Expand Down
18 changes: 9 additions & 9 deletions acai_aws/docs/firehose/configuration-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ Below is a full list of all the configurations available and examples of their u

| property | type | description |
|------------------------------------------------------------------------------|--------|------------------------------------------------------|
| **[`record_id`]({{web.url}}/firehose/#recordrecord_id)** | str | record id of the stream |
| **[`epoc_time_stamp`]({{web.url}}/firehose/#recordepoc_time_stamp)** | int | epoc time stamp of the stream |
| **[`shard_id`]({{web.url}}/firehose/#recordshard_id)** | str | shard id arn of the stream |
| **[`subsequence_number`]({{web.url}}/firehose/#recordvsubsequence_number)** | str | subsequence number arn of the stream |
| **[`partition_key`]({{web.url}}/firehose/#recordpartition_key)** | str | partition key |
| **[`time_stamp`]({{web.url}}/firehose/#recordtime_stamp)** | str | time stamp |
| **[`sequence_number`]({{web.url}}/firehose/#recordsequence_number)** | str | sequence number |
| **[`data`]({{web.url}}/firehose/#recorddata)** | any | can be anything, automaticallyed b64 decoded objects |
| **[`body`]({{web.url}}/firehose/#recordbody)** | any | can be anything, automaticallyed b64 decoded objects |
| **[`record_id`](/acai-python-docs/firehose/configuration-details/#recordrecord_id)** | str | record id of the stream |
| **[`epoc_time_stamp`](/acai-python-docs/firehose/configuration-details/#recordepoc_time_stamp)** | int | epoc time stamp of the stream |
| **[`shard_id`](/acai-python-docs/firehose/configuration-details/#recordshard_id)** | str | shard id arn of the stream |
| **[`subsequence_number`](/acai-python-docs/firehose/configuration-details/#recordvsubsequence_number)** | str | subsequence number arn of the stream |
| **[`partition_key`](/acai-python-docs/firehose/configuration-details/#recordpartition_key)** | str | partition key |
| **[`time_stamp`](/acai-python-docs/firehose/configuration-details/#recordtime_stamp)** | str | time stamp |
| **[`sequence_number`](/acai-python-docs/firehose/configuration-details/#recordsequence_number)** | str | sequence number |
| **[`data`](/acai-python-docs/firehose/configuration-details/#recorddata)** | any | can be anything, automaticallyed b64 decoded objects |
| **[`body`](/acai-python-docs/firehose/configuration-details/#recordbody)** | any | can be anything, automaticallyed b64 decoded objects |


#### `record.record_id`
Expand Down
2 changes: 1 addition & 1 deletion acai_aws/docs/generic/configuration-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Below is a full list of all the configurations available and examples of their u

| property | type | description |
|------------------------------------------------------------------------------|--------|------------------------------------------------------|
| **[`body`]({{web.url}}/firehose/#recordbody)** | any | can be anything, automaticallyed b64 decoded objects |
| **[`body`](/acai-python-docs/firehose/#recordbody)** | any | can be anything, automaticallyed b64 decoded objects |


#### `event.body`
Expand Down
24 changes: 12 additions & 12 deletions acai_aws/docs/kinesis/configuration-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,18 @@ Below is a full list of all the configurations available and examples of their u

| property | type | description |
|-----------------------------------------------------------------------------|--------|------------------------------------------------------|
| **[`id`]({{web.url}}/kinesis/#recordid)** | str | id of the stream |
| **[`name`]({{web.url}}/kinesis/#recordname)** | str | name of the stream |
| **[`source_arn`]({{web.url}}/kinesis/#recordsource_arn)** | str | source arn of the stream |
| **[`region`]({{web.url}}/kinesis/#recordregion)** | str | region arn of the stream |
| **[`version`]({{web.url}}/kinesis/#recordversion)** | str | version arn of the stream |
| **[`invoke_identity_arn`]({{web.url}}/kinesis/#recordinvoke_identity_arn)** | str | arn of the indentity |
| **[`schema_version`]({{web.url}}/kinesis/#recordschema_version)** | str | schema version |
| **[`partition_key`]({{web.url}}/kinesis/#recordpartition_key)** | str | partition key |
| **[`time_stamp`]({{web.url}}/kinesis/#recordtime_stamp)** | str | time stamp |
| **[`sequence_number`]({{web.url}}/kinesis/#recordsequence_number)** | str | sequence number |
| **[`data`]({{web.url}}/kinesis/#recorddata)** | any | can be anything, automaticallyed b64 decoded objects |
| **[`body`]({{web.url}}/kinesis/#recordbody)** | any | can be anything, automaticallyed b64 decoded objects |
| **[`id`](/acai-python-docs/kinesis/configuration-details/#recordid)** | str | id of the stream |
| **[`name`](/acai-python-docs/kinesis/configuration-details/#recordname)** | str | name of the stream |
| **[`source_arn`](/acai-python-docs/kinesis/configuration-details/#recordsource_arn)** | str | source arn of the stream |
| **[`region`](/acai-python-docs/kinesis/configuration-details/#recordregion)** | str | region arn of the stream |
| **[`version`](/acai-python-docs/kinesis/configuration-details/#recordversion)** | str | version arn of the stream |
| **[`invoke_identity_arn`](/acai-python-docs/kinesis/configuration-details/#recordinvoke_identity_arn)** | str | arn of the indentity |
| **[`schema_version`](/acai-python-docs/kinesis/configuration-details/#recordschema_version)** | str | schema version |
| **[`partition_key`](/acai-python-docs/kinesis/configuration-details/#recordpartition_key)** | str | partition key |
| **[`time_stamp`](/acai-python-docs/kinesis/configuration-details/#recordtime_stamp)** | str | time stamp |
| **[`sequence_number`](/acai-python-docs/kinesis/configuration-details/#recordsequence_number)** | str | sequence number |
| **[`data`](/acai-python-docs/kinesis/configuration-details/#recorddata)** | any | can be anything, automaticallyed b64 decoded objects |
| **[`body`](/acai-python-docs/kinesis/configuration-details/#recordbody)** | any | can be anything, automaticallyed b64 decoded objects |


#### `record.id`
Expand Down
Loading

0 comments on commit dc29948

Please sign in to comment.