interface CfnFeedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElementalInference.CfnFeedProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselementalinference#CfnFeedProps |
Java | software.amazon.awscdk.services.elementalinference.CfnFeedProps |
Python | aws_cdk.aws_elementalinference.CfnFeedProps |
TypeScript | aws-cdk-lib » aws_elementalinference » CfnFeedProps |
Properties for defining a CfnFeed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elementalinference as elementalinference } from 'aws-cdk-lib';
declare const cropping: any;
const cfnFeedProps: elementalinference.CfnFeedProps = {
name: 'name',
outputs: [{
name: 'name',
outputConfig: {
clipping: {
callbackMetadata: 'callbackMetadata',
},
cropping: cropping,
},
status: 'status',
// the properties below are optional
description: 'description',
}],
// the properties below are optional
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| outputs | IResolvable | (IResolvable | Get)[] | |
| tags? | { [string]: string } |
name
Type:
string
outputs
Type:
IResolvable | (IResolvable | Get)[]
tags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript