interface ServiceFunctionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ResilienceHubV2.ServiceFunctionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsresiliencehubv2#ServiceFunctionReference |
Java | software.amazon.awscdk.interfaces.resiliencehubv2.ServiceFunctionReference |
Python | aws_cdk.interfaces.aws_resiliencehubv2.ServiceFunctionReference |
TypeScript | aws-cdk-lib » interfaces » aws_resiliencehubv2 » ServiceFunctionReference |
A reference to a ServiceFunction resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resiliencehubv2 as interfaces_resiliencehubv2 } from 'aws-cdk-lib/interfaces';
const serviceFunctionReference: interfaces_resiliencehubv2.ServiceFunctionReference = {
serviceArn: 'serviceArn',
serviceFunctionId: 'serviceFunctionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | string | The ServiceArn of the ServiceFunction resource. |
| service | string | The ServiceFunctionId of the ServiceFunction resource. |
serviceArn
Type:
string
The ServiceArn of the ServiceFunction resource.
serviceFunctionId
Type:
string
The ServiceFunctionId of the ServiceFunction resource.

.NET
Go
Java
Python
TypeScript