interface AgentTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAgent.AgentTagProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAgent_AgentTagProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAgent.AgentTagProperty |
Python | aws_cdk.aws_quicksight.CfnAgent.AgentTagProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAgent » AgentTagProperty |
A key-value pair to associate with the agent resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const agentTagProperty: quicksight.CfnAgent.AgentTagProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The key name of the tag. |
| value | string | The value for the tag. |
key
Type:
string
The key name of the tag.
value
Type:
string
The value for the tag.

.NET
Go
Java
Python
TypeScript