aws-cdk-lib.aws_amplifyuibuilder.CfnComponent.ComponentPropertyBindingPropertiesProperty

interface ComponentPropertyBindingPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AmplifyUIBuilder.CfnComponent.ComponentPropertyBindingPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnComponent_ComponentPropertyBindingPropertiesProperty
Javasoftware.amazon.awscdk.services.amplifyuibuilder.CfnComponent.ComponentPropertyBindingPropertiesProperty
Pythonaws_cdk.aws_amplifyuibuilder.CfnComponent.ComponentPropertyBindingPropertiesProperty
TypeScript aws-cdk-lib » aws_amplifyuibuilder » CfnComponent » ComponentPropertyBindingPropertiesProperty

The ComponentPropertyBindingProperties property specifies a component property to associate with a binding property.

This enables exposed properties on the top level component to propagate data to the component's property values.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_amplifyuibuilder as amplifyuibuilder } from 'aws-cdk-lib';
const componentPropertyBindingPropertiesProperty: amplifyuibuilder.CfnComponent.ComponentPropertyBindingPropertiesProperty = {
  property: 'property',

  // the properties below are optional
  field: 'field',
};

Properties

NameTypeDescription
propertystringThe component property to bind to the data field.
field?stringThe data field to bind the property to.

property

Type: string

The component property to bind to the data field.


field?

Type: string (optional)

The data field to bind the property to.