![]()
Contents
Cirrus Link Resources
Cirrus Link Website![]()
Contact Us (Sales/Support)![]()
Forum![]()
Cirrus Link Modules Docs for Ignition 7.9.x![]()
Inductive Resources
Ignition User Manual![]()
Knowledge Base Articles![]()
Inductive University![]()
Forum![]()
The following API calls are available for the AWS Injector Module and can be executed within any of the available Ignition scopes.
Configuration changes made through scripting do not have the same validation as when made through the UI.
For example, deleting a Sets configuring that is being referenced by a Servers configuration will result in the UI showing an Internal Error. Follow the instructions here to recover the configuration.
APIs system.cirruslink.aws.createConfig(type, props) → voidParametersString typeThe type of configuration to create with valid options:
Kinesis
Dynamo
Agents
Sets
Map propsDictionary of properties making up the configuration with the following keys and datatypes:KinesisId (long)(cannot be null)
Name (str)
Enabled (bool)
UseAwsKeys (bool)(added 4.0.22)AwsAccessKey (str)
AwsSecretKey (str)
EnableSessionTokens (bool)
RoleARN (str)
SessionDuration (int)
RoleSessionName (str)
StreamName (str)
FirehoseStream (bool)
AwsRegion (str)
AwsSetId (long) (must be included)
HistoryEnabled (bool)
HistoryStoreType (str) "In_Memory" or "Disk_Backed" (added 4.0.17)
MessageCapacity (int)(deprecated 4.0.19)
HistoryMaxSize (int)(added 4.0.22)HistoryMaxAge (int)(added 4.0.19)FlushPeriod (long)
PartitionKeyCount (int)
PartitionKeyPattern (str)
MaxSize (int)
H2dbDirectory (str)(added 4.0.25)
H2dbPort (int)(added 4.0.22)DynamoId (long)(cannot be null)
Name (str)
Enabled (bool)
AwsAccessKey (str)
AwsSecretKey (str)
TableName (str)
AwsRegion (str)
AwsSetId (long) (must be included)
HistoryEnabled (bool)
HistoryStoreType (str) "In_Memory" or "Disk_Backed" (added 4.0.17)
MessageCapacity (int)(deprecated 4.0.19)
HistoryMaxSize (int)(added 4.0.22)HistoryMaxAge (int)(added 4.0.19)FlushPeriod (long)
H2dbDirectory (str)(added 4.0.25)H2dbPort (int)(added 4.0.22)AgentsId (long)(cannot be null)
Name (str) (added 4.0.17)
Enabled (bool) (added 4.0.17)
TagProvider (str)
TagPath (str)
PushTrigger (str) "EVENT_DRIVEN", "PERIODIC" or "HYBRID"
TagPacingPeriod (long)
ConvertUdts (bool)
PublishUdtDefinitions (bool)
OptimizeUdts (bool)
AwsSetId (long)(must be included)
GroupId (str)
EdgeNodeId (str)
DeviceId (str)
FilteredProperties (str)
SendAllProps (bool)(added 4.0.25)
IncludeInfoFolders (bool)(added 4.0.30)
SetsId (long)(cannot be null)
Name (str)
Description (str)
PushPolicy (str) "PUSH_TO_ALL" or "PUSH_TO_ANY"
Return ValueA map representing the newly created configuration after it has been written to the database. (added 4.0.16) system.cirruslink.aws.readConfig(type) → List ParametersString typeThe type of configuration to read with valid options:
GeneralKinesisDynamoAgentsSetsReturn ValueA List of Dictionaries of properties making up the configurations with the following keys and datatypes:GeneralId (long)
Enabled (bool)
KinesisId (long)
Name (str)
Enabled (bool)
EnableAwsKeys (bool)(added 4.0.22)
AwsAccessKey (str)
AwsSecretKey (str)
EnableSessionTokens (bool)
RoleARN (str)
SessionDuration (int)
RoleSessionName (str)
StreamName (str)
FirehoseStream (bool)
AwsRegion (str)
AwsSetId (long)
HistoryEnabled (bool)
HistoryStoreType (str) "In_Memory" or "Disk_Backed" (added 4.0.17)
MessageCapacity (int)(deprecated 4.0.19)
HistoryMaxSize (int)(added 4.0.22)HistoryMaxAge (int)(added 4.0.19)FlushPeriod (long)
PartitionKeyCount (int)
PartitionKeyPattern (str)
MaxSize (int)
H2dbDirectory (str)(added 4.0.25)H2dbPort (int)(added 4.0.22)DynamoId (long)
Name (str)
Enabled (bool)
AwsAccessKey (str)
AwsSecretKey (str)
TableName (str)
AwsRegion (str)
AwsSetId (long)
HistoryEnabled (bool)
HistoryStoreType (str) "In_Memory" or "Disk_Backed" (added 4.0.17)
MessageCapacity (int)(deprecated 4.0.19)
HistoryMaxSize (int)(added 4.0.22)HistoryMaxAge (int)(added 4.0.19)FlushPeriod (long)
H2dbDirectory (str)(added 4.0.25)
H2dbPort (int)(added 4.0.22)AgentsId (long)
Name (str) (added 4.0.17)Enabled (bool) (added 4.0.17)TagProvider (str)
TagPath (str)
PushTrigger (str) "EVENT_DRIVEN", "PERIODIC" or "HYBRID"
TagPacingPeriod (long)
ConvertUdts (bool)
PublishUdtDefinitions (bool)
OptimizeUdts (bool)
AwsSetId (long)
GroupId (str)
EdgeNodeId (str)
DeviceId (str)
FilteredProperties (str)
SendAllProps (bool)(added 4.0.25)IncludeInfoFolders (bool)(added 4.0.30)SetsId (long)
Name (str)
Description (str)
PushPolicy (str) "PUSH_TO_ALL" or "PUSH_TO_ANY"
system.cirruslink.aws.updateConfig(type, id, collisionPolicy, props) → voidParametersString typeThe type of configuration to update with valid options:
GeneralKinesisDynamoAgentsSetsLong idThe ID of the record to updateString collisionPolicy"MergeOverwrite" or "Overwrite""MergeOverwrite" will replace the existing properties in the record ID with only those included in the call"Overwrite" will replace all properties in the record ID with those in the callMap propsDictionary of properties making up the configuration with the following keys and datatypes:GeneralId (long)
Enabled (bool)
KinesisId (long)
Name (str)
Enabled (bool)
UseAwsKeys (bool)(added 4.0.22)AwsAccessKey (str)
AwsSecretKey (str)
EnableSessionTokens (bool)
RoleARN (str)
SessionDuration (int)
RoleSessionName (str)
StreamName (str)
FirehoseStream (bool)
AwsRegion (str)
AwsSetId (long)
HistoryEnabled (bool)
HistoryStoreType (str) "In_Memory" or "Disk_Backed" (added 4.0.17)
MessageCapacity (int)(deprecated 4.0.19)
HistoryMaxSize (int)(added 4.0.22)HistoryMaxAge (int)(added 4.0.19)FlushPeriod (long)
PartitionKeyCount (int)
PartitionKeyPattern (str)
MaxSize (int)
H2dbDirectory (str)(added 4.0.25)H2dbPort (int)(added 4.0.22)DynamoId (long)
Name (str)
Enabled (bool)
AwsAccessKey (str)
AwsSecretKey (str)
TableName (str)
AwsRegion (str)
AwsSetId (long)
HistoryEnabled (bool)
HistoryStoreType (str) "In_Memory" or "Disk_Backed" (added 4.0.17)
MessageCapacity (int)(deprecated 4.0.19)
HistoryMaxSize (int)(added 4.0.22)HistoryMaxAge (int)(added 4.0.19)
FlushPeriod (long)
H2dbDirectory (str)(added 4.0.25)
H2dbPort (int)(added 4.0.22)AgentsId (long)
Name (str) (added 4.0.17)Enabled (bool) (added 4.0.17)TagProvider (str)
TagPath (str)
PushTrigger (str) "EVENT_DRIVEN", "PERIODIC" or "HYBRID"
TagPacingPeriod (long)
ConvertUdts (bool)
PublishUdtDefinitions (bool)
OptimizeUdts (bool)
AwsSetId (long)
GroupId (str)
EdgeNodeId (str)
DeviceId (str)
FilteredProperties (str)
SendAllProps (bool)(added 4.0.25)
IncludeInfoFolders (bool)(added 4.0.30)SetsId (long)
Name (str)
Description (str)
PushPolicy (str) "PUSH_TO_ALL" or "PUSH_TO_ANY"
Return ValueA map representing the updated configuration after it has been written to the database. (added 4.0.16) system.cirruslink.aws.deleteConfig(type, id) → voidParametersString typeThe type of configuration to delete with valid options:
KinesisDynamoAgentsSetsLong idThe ID of the record to deleteReturn ValueTrue if the record was successfully deleted otherwise False is returned (added 4.0.16)