FeedReference
- class aws_cdk.interfaces.aws_elementalinference.FeedReference(*, feed_arn, feed_id)
Bases:
objectA reference to a Feed resource.
- Parameters:
feed_arn (
str) – The ARN of the Feed resource.feed_id (
str) – The Id of the Feed 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_elementalinference as interfaces_elementalinference feed_reference = interfaces_elementalinference.FeedReference( feed_arn="feedArn", feed_id="feedId" )
Attributes
- feed_arn
The ARN of the Feed resource.
- feed_id
The Id of the Feed resource.