Class CfnAgent.AgentTagProperty
A key-value pair to associate with the agent resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAgent.AgentTagProperty : CfnAgent.IAgentTagProperty
Syntax (vb)
Public Class CfnAgent.AgentTagProperty Implements CfnAgent.IAgentTagProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var agentTagProperty = new AgentTagProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
| AgentTagProperty() | A key-value pair to associate with the agent resource. |
Properties
| Key | The key name of the tag. |
| Value | The value for the tag. |
Constructors
AgentTagProperty()
A key-value pair to associate with the agent resource.
public AgentTagProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var agentTagProperty = new AgentTagProperty {
Key = "key",
Value = "value"
};
Properties
Key
The key name of the tag.
public string Key { get; set; }
Property Value
Remarks
Value
The value for the tag.
public string Value { get; set; }