Interface ICfnTagOptionProps
Properties for defining a CfnTagOption.
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnTagOptionProps
Syntax (vb)
Public Interface ICfnTagOptionProps
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.Servicecatalog;
var cfnTagOptionProps = new CfnTagOptionProps {
Key = "key",
Value = "value",
// the properties below are optional
Active = false
};
Synopsis
Properties
| Active | The TagOption active state. |
| Key | The TagOption key. |
| Value | The TagOption value. |
Properties
Active
The TagOption active state.
object? Active { get; }
Property Value
Remarks
Key
The TagOption key.
string Key { get; }
Property Value
Remarks
Value
The TagOption value.
string Value { get; }