interface CfnServiceFunctionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2.CfnServiceFunctionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresiliencehubv2#CfnServiceFunctionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.CfnServiceFunctionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnServiceFunctionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resiliencehubv2 » CfnServiceFunctionMixinProps |
Properties for CfnServiceFunctionPropsMixin.
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/cfn-property-mixins';
const cfnServiceFunctionMixinProps: resiliencehubv2.CfnServiceFunctionMixinProps = {
criticality: 'criticality',
description: 'description',
name: 'name',
serviceArn: 'serviceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| criticality? | string | The criticality of the service function. |
| description? | string | The description of the service function. |
| name? | string | The name of the service function. |
| service | string | The ARN of the parent service. |
criticality?
Type:
string
(optional)
The criticality of the service function.
description?
Type:
string
(optional)
The description of the service function.
name?
Type:
string
(optional)
The name of the service function.
serviceArn?
Type:
string
(optional)
The ARN of the parent service.

.NET
Go
Java
Python
TypeScript