Skip to content

SourceTagAttachmentValue

Detailed information about the value of a source tag's attachment to an asset.

Complete reference

This is a complete reference for the SourceTagAttachmentValue struct in Atlan, showing all of its embedded properties. For an introduction, you probably want to start with:

  • Snippets — small, atomic examples of single-step use cases.
  • Patterns — walkthroughs of common multi-step implementation patterns.

Embedded properties

These are the attributes embedded within each instance of the SourceTagAttachmentValue struct in an asset:

tagAttachmentKey
Attachment key, for example: 'has_pii' or 'type_pii'.
1
2
builder.tagAttachmentKey(...); // (1)
sourceTagAttachmentValue.getTagAttachmentKey(); // (2)
  1. Set the tagAttachmentKey for a SourceTagAttachmentValue.

    For more details

    For more information, see the asset CRUD snippets on either creating or updating assets.

  2. Retrieve the tagAttachmentKey from a SourceTagAttachmentValue.

    For more details

    For more information, see the asset CRUD snippets on retrieving assets.

tagAttachmentValue
Attachment value, for example: 'true' or 'email'.
1
2
builder.tagAttachmentValue(...); // (1)
sourceTagAttachmentValue.getTagAttachmentValue(); // (2)
  1. Set the tagAttachmentValue for a SourceTagAttachmentValue.

    For more details

    For more information, see the asset CRUD snippets on either creating or updating assets.

  2. Retrieve the tagAttachmentValue from a SourceTagAttachmentValue.

    For more details

    For more information, see the asset CRUD snippets on retrieving assets.

tagAttachmentKey
Attachment key, for example: 'has_pii' or 'type_pii'.
1
2
3
4
5
{
  "attributes": {
    "tagAttachmentKey": ... // (1)
  }
}
  1. Set the tagAttachmentKey for a SourceTagAttachmentValue.

    For more details

    For more information, see the asset CRUD snippets.

tagAttachmentValue
Attachment value, for example: 'true' or 'email'.
1
2
3
4
5
{
  "attributes": {
    "tagAttachmentValue": ... // (1)
  }
}
  1. Set the tagAttachmentValue for a SourceTagAttachmentValue.

    For more details

    For more information, see the asset CRUD snippets.