interface GetOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElementalInference.CfnFeed.GetOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselementalinference#CfnFeed_GetOutputProperty |
Java | software.amazon.awscdk.services.elementalinference.CfnFeed.GetOutputProperty |
Python | aws_cdk.aws_elementalinference.CfnFeed.GetOutputProperty |
TypeScript | aws-cdk-lib » aws_elementalinference » CfnFeed » GetOutputProperty |
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 getOutputProperty: elementalinference.CfnFeed.GetOutputProperty = {
name: 'name',
outputConfig: {
clipping: {
callbackMetadata: 'callbackMetadata',
},
cropping: cropping,
},
status: 'status',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| output | IResolvable | Output | |
| status | string | |
| description? | string |
name
Type:
string
outputConfig
Type:
IResolvable | Output
status
Type:
string
description?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript