Skip to main content

Intelidentitymachineaggregate

Properties

NameTypeDescriptionNotes
IdStringIdentity Security Cloud identifier for this non-human identity.[required]
TypeEnum [ "NHI" ]Identity type for the matched record.[required]
DisplayNameStringPreferred display name for the non-human identity.[optional]
DescriptionStringOptional description from upstream when present.[optional]
SubtypeStringSub-classification label for that NHI.[optional]
CreatedSystem.DateTimeTimestamp when the identity record was created in Identity Security Cloud.[optional]
ModifiedSystem.DateTimeTimestamp when the identity record was last modified in Identity Security Cloud.[optional]
MatchConfidenceEnum [ "exact", "partial" ]Match quality for opaque prefix resolution; omitted for direct id eq and exact opaque matches.[optional]
IdentityGraphIntelidentitygraphlinkOmitted when the tenant lacks the idg:base license.[optional]
AccountsIntelmachineaccountsslice[required]
NativeIdentityStringNative identifier on the source system.[required]
DatasetIdStringDataset identifier from upstream machine-identity services when present.[optional]
SourceIntelmachinesourcewireSource metadata for the machine identity when present upstream.[optional]
ExistsOnSourceStringUpstream existsOnSource value. Wire uses uppercase strings such as TRUE or FALSE.[optional]
ManuallyEditedBooleanTrue when an administrator manually edited machine identity attributes.[optional] [default to $false]
ManuallyCreatedBooleanTrue when the machine identity was created manually in Identity Security Cloud.[optional] [default to $false]
OwnersIntelmachineidentityowners[required]
UserEntitlements[]IntelmachineuserentitlementEntitlements associated with the machine identity from upstream.[optional]
Attributesmap[string]AnyTypeConnector or runtime metadata; empty object when absent upstream.[required]
DerivedIntelmachinederived[required]

Examples

  • Prepare the resource
$Intelidentitymachineaggregate = Initialize-Intelidentitymachineaggregate  -Id ef38f94347e94562b5bb8424a56397d8 `
-Type NHI `
-DisplayName display name `
-Description null `
-Subtype AI Agent `
-Created 2026-05-12T08:00Z `
-Modified 2026-05-12T09:15:30Z `
-MatchConfidence exact `
-IdentityGraph null `
-Accounts null `
-NativeIdentity arn:aws:bedrock:us-east-1:336721:agent/ABCDEFGHI `
-DatasetId dataset-001 `
-Source null `
-ExistsOnSource TRUE `
-ManuallyEdited false `
-ManuallyCreated false `
-Owners null `
-UserEntitlements null `
-Attributes {} `
-Derived null
  • Convert the resource to JSON
$Intelidentitymachineaggregate | ConvertTo-JSON

[Back to top]