Skip to main content

CorrelationConfig

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the correlation config.[required]
SourceIdStringThe source ID this config belongs to.[required]
ResourceIdStringThe source resource identifier for this config scope.[required]
TypeEnum [ "OWNER_PRIMARY", "OWNER_SECONDARY" ]The correlation config type.[required]
Attributesmap[string]AnyTypeJSON object of config attributes. May include syncPrimaryToMachineAccounts (boolean) on OWNER_PRIMARY only.[required]
Rules[]CorrelationRuleThe ordered set of correlation rules for this config.[required]
CreatedSystem.DateTimeCreation date of the config.[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the config.[optional] [readonly]

Examples

  • Prepare the resource
$CorrelationConfig = Initialize-CorrelationConfig  -Id f5dd23fe-3414-42b7-bb1c-869400ad7a10 `
-SourceId 2c9180835d191a86015d28455b4a2329 `
-ResourceId aws:iam-role `
-Type OWNER_PRIMARY `
-Attributes {"syncPrimaryToMachineAccounts":true} `
-Rules null `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z
  • Convert the resource to JSON
$CorrelationConfig | ConvertTo-JSON

[Back to top]