Interface CfnChannelNamespacePropsMixin.IntegrationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelNamespacePropsMixin.IntegrationProperty.Jsii$Proxy
- Enclosing class:
CfnChannelNamespacePropsMixin
@Stability(Stable)
public static interface CfnChannelNamespacePropsMixin.IntegrationProperty
extends software.amazon.jsii.JsiiSerializable
The
Integration property type specifies the integration data source configuration for the handler.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appsync.*;
IntegrationProperty integrationProperty = IntegrationProperty.builder()
.dataSourceName("dataSourceName")
.lambdaConfig(LambdaConfigProperty.builder()
.invokeType("invokeType")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelNamespacePropsMixin.IntegrationPropertystatic final classAn implementation forCfnChannelNamespacePropsMixin.IntegrationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSourceName
The unique name of the data source that has been configured on the API.- See Also:
-
getLambdaConfig
The configuration for a Lambda data source.Returns union: either
IResolvableorCfnChannelNamespacePropsMixin.LambdaConfigProperty- See Also:
-
builder
-