Skip to content

AwsTag

Detailed information about an AWS tag.

Complete reference

This is a complete reference for the AwsTag 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 AwsTag struct in an asset:

awsTagKey
Key of the AWS tag.
1
2
builder.awsTagKey(...); // (1)
awsTag.getAwsTagKey(); // (2)
  1. Set the awsTagKey for a AwsTag.

    For more details

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

  2. Retrieve the awsTagKey from a AwsTag.

    For more details

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

awsTagValue
Value for the AWS tag.
1
2
builder.awsTagValue(...); // (1)
awsTag.getAwsTagValue(); // (2)
  1. Set the awsTagValue for a AwsTag.

    For more details

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

  2. Retrieve the awsTagValue from a AwsTag.

    For more details

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

awsTagKey
Key of the AWS tag.
1
2
3
4
5
{
  "attributes": {
    "awsTagKey": ... // (1)
  }
}
  1. Set the awsTagKey for a AwsTag.

    For more details

    For more information, see the asset CRUD snippets.

awsTagValue
Value for the AWS tag.
1
2
3
4
5
{
  "attributes": {
    "awsTagValue": ... // (1)
  }
}
  1. Set the awsTagValue for a AwsTag.

    For more details

    For more information, see the asset CRUD snippets.