interface CfnServiceFunctionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnServiceFunctionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnServiceFunctionProps |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnServiceFunctionProps |
Python | aws_cdk.aws_resiliencehubv2.CfnServiceFunctionProps |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnServiceFunctionProps |
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 { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const cfnServiceFunctionProps: resiliencehubv2.CfnServiceFunctionProps = {
criticality: 'criticality',
name: 'name',
serviceArn: 'serviceArn',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| criticality | string | The criticality of the service function. |
| name | string | The name of the service function. |
| service | string | The ARN of the parent service. |
| description? | string | The description of the service function. |
criticality
Type:
string
The criticality of the service function.
name
Type:
string
The name of the service function.
serviceArn
Type:
string
The ARN of the parent service.
description?
Type:
string
(optional)
The description of the service function.

.NET
Go
Java
Python
TypeScript