CfnFeedProps

class aws_cdk.aws_elementalinference.CfnFeedProps(*, name, outputs, tags=None)

Bases: object

Properties for defining a CfnFeed.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-feed.html

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 import aws_elementalinference as elementalinference

# cropping: Any

cfn_feed_props = elementalinference.CfnFeedProps(
    name="name",
    outputs=[elementalinference.CfnFeed.GetOutputProperty(
        name="name",
        output_config=elementalinference.CfnFeed.OutputConfigProperty(
            clipping=elementalinference.CfnFeed.ClippingConfigProperty(
                callback_metadata="callbackMetadata"
            ),
            cropping=cropping
        ),
        status="status",

        # the properties below are optional
        description="description"
    )],

    # the properties below are optional
    tags={
        "tags_key": "tags"
    }
)

Attributes

name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-feed.html#cfn-elementalinference-feed-name

Type:

see

outputs

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-feed.html#cfn-elementalinference-feed-outputs

Type:

see

tags

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-feed.html#cfn-elementalinference-feed-tags

Type:

see