ServiceFunctionReference
- class aws_cdk.interfaces.aws_resiliencehubv2.ServiceFunctionReference(*, service_arn, service_function_id)
Bases:
objectA reference to a ServiceFunction resource.
- Parameters:
service_arn (
str) – The ServiceArn of the ServiceFunction resource.service_function_id (
str) – The ServiceFunctionId of the ServiceFunction resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_resiliencehubv2 as interfaces_resiliencehubv2 service_function_reference = interfaces_resiliencehubv2.ServiceFunctionReference( service_arn="serviceArn", service_function_id="serviceFunctionId" )
Attributes
- service_arn
The ServiceArn of the ServiceFunction resource.
- service_function_id
The ServiceFunctionId of the ServiceFunction resource.