interface FeedReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ElementalInference.FeedReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awselementalinference#FeedReference |
Java | software.amazon.awscdk.interfaces.elementalinference.FeedReference |
Python | aws_cdk.interfaces.aws_elementalinference.FeedReference |
TypeScript | aws-cdk-lib » interfaces » aws_elementalinference » FeedReference |
A reference to a Feed resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elementalinference as interfaces_elementalinference } from 'aws-cdk-lib/interfaces';
const feedReference: interfaces_elementalinference.FeedReference = {
feedArn: 'feedArn',
feedId: 'feedId',
};
Properties
| Name | Type | Description |
|---|---|---|
| feed | string | The ARN of the Feed resource. |
| feed | string | The Id of the Feed resource. |
feedArn
Type:
string
The ARN of the Feed resource.
feedId
Type:
string
The Id of the Feed resource.

.NET
Go
Java
Python
TypeScript