Add a value to the new attribute - Optional - AWS Directory Service
Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.

Add a value to the new attribute - Optional

Use this optional step when you have created a new attribute and want to add a new value to the attribute in your AWS Managed Microsoft AD directory.

To add a value to an attribute
  1. Open the PowerShell command line utility and set the new attribute with the following command. In this example, we will add a new EC2InstanceID value to the attribute for a specific computer.

    PS C:\> set-adcomputer -Identity computer name -add @{example-EC2InstanceID = 'EC2 instance ID'}

  2. You can validate if the EC2InstanceID value was added to the computer object by running the following command:

    PS C:\> get-adcomputer -Identity computer name –Property example-EC2InstanceID