Interface CfnOpsItemProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOpsItemProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:12.469Z")
@Stability(Stable)
public interface CfnOpsItemProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnOpsItem.
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.ssm.*;
CfnOpsItemProps cfnOpsItemProps = CfnOpsItemProps.builder()
.description("description")
.source("source")
.title("title")
// the properties below are optional
.category("category")
.priority(123)
.severity("severity")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOpsItemPropsstatic final classAn implementation forCfnOpsItemProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnOpsItemProps.Builderbuilder()default StringThe category of the OpsItem.The description of the OpsItem.default NumberThe priority of the OpsItem.default StringThe severity of the OpsItem.The origin of the OpsItem.getTags()Tags for the OpsItem.getTitle()The title of the OpsItem.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the OpsItem.- See Also:
-
getSource
The origin of the OpsItem.- See Also:
-
getTitle
The title of the OpsItem.- See Also:
-
getCategory
The category of the OpsItem.- See Also:
-
getPriority
The priority of the OpsItem.- See Also:
-
getSeverity
The severity of the OpsItem.- See Also:
-
getTags
Tags for the OpsItem.- See Also:
-
builder
- Returns:
- a
CfnOpsItemProps.BuilderofCfnOpsItemProps
-