Interface CfnServiceFunctionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceFunctionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:31.946Z")
@Stability(Stable)
public interface CfnServiceFunctionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnServiceFunction.
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.resiliencehubv2.*;
CfnServiceFunctionProps cfnServiceFunctionProps = CfnServiceFunctionProps.builder()
.criticality("criticality")
.name("name")
.serviceArn("serviceArn")
// the properties below are optional
.description("description")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServiceFunctionPropsstatic final classAn implementation forCfnServiceFunctionProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCriticality
The criticality of the service function.- See Also:
-
getName
The name of the service function.- See Also:
-
getServiceArn
The ARN of the parent service.- See Also:
-
getDescription
The description of the service function.- See Also:
-
builder
- Returns:
- a
CfnServiceFunctionProps.BuilderofCfnServiceFunctionProps
-