Interface CfnOpsItemMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOpsItemMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:26.727Z")
@Stability(Stable)
public interface CfnOpsItemMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnOpsItemPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ssm.*;
CfnOpsItemMixinProps cfnOpsItemMixinProps = CfnOpsItemMixinProps.builder()
.category("category")
.description("description")
.priority(123)
.severity("severity")
.source("source")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.title("title")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOpsItemMixinPropsstatic final classAn implementation forCfnOpsItemMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnOpsItemMixinProps.Builderbuilder()default StringThe category of the OpsItem.default StringThe description of the OpsItem.default NumberThe priority of the OpsItem.default StringThe severity of the OpsItem.default StringThe origin of the OpsItem.getTags()Tags for the OpsItem.default StringgetTitle()The title of the OpsItem.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategory
The category of the OpsItem.- See Also:
-
getDescription
The description of the OpsItem.- See Also:
-
getPriority
The priority of the OpsItem.- See Also:
-
getSeverity
The severity of the OpsItem.- See Also:
-
getSource
The origin of the OpsItem.- See Also:
-
getTags
Tags for the OpsItem.- See Also:
-
getTitle
The title of the OpsItem.- See Also:
-
builder
- Returns:
- a
CfnOpsItemMixinProps.BuilderofCfnOpsItemMixinProps
-