Interface CfnDataSet.UntagColumnOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.UntagColumnOperationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.UntagColumnOperationProperty
extends software.amazon.jsii.JsiiSerializable
A transform operation that removes tags associated with a column.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
UntagColumnOperationProperty untagColumnOperationProperty = UntagColumnOperationProperty.builder()
.columnName("columnName")
.tagNames(List.of("tagNames"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.UntagColumnOperationPropertystatic final classAn implementation forCfnDataSet.UntagColumnOperationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The column that this operation acts on.The column tags to remove from this column.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
The column that this operation acts on.- See Also:
-
getTagNames
The column tags to remove from this column.- See Also:
-
builder
-