AppsyncFunctionAttributes

class aws_cdk.aws_appsync.AppsyncFunctionAttributes(*, function_arn)

Bases: object

The attributes for imported AppSync Functions.

Parameters:

function_arn (str) – the ARN of the AppSync function.

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 import aws_appsync as appsync

appsync_function_attributes = appsync.AppsyncFunctionAttributes(
    function_arn="functionArn"
)

Attributes

function_arn

the ARN of the AppSync function.