interface CfnFeedMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElementalInference.CfnFeedMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselementalinference#CfnFeedMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.elementalinference.CfnFeedMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_elementalinference.CfnFeedMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elementalinference » CfnFeedMixinProps |
Properties for CfnFeedPropsMixin.
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/cfn-property-mixins';
declare const cropping: any;
const cfnFeedMixinProps: elementalinference.CfnFeedMixinProps = {
name: 'name',
outputs: [{
description: 'description',
name: 'name',
outputConfig: {
clipping: {
callbackMetadata: 'callbackMetadata',
},
cropping: cropping,
},
status: 'status',
}],
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | |
| outputs? | IResolvable | (IResolvable | Get)[] | |
| tags? | { [string]: string } |
name?
Type:
string
(optional)
outputs?
Type:
IResolvable | (IResolvable | Get)[]
(optional)
tags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript