CfnFeedMixinProps

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

Bases: object

Properties for CfnFeedPropsMixin.

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

# cropping: Any

cfn_feed_mixin_props = elementalinference.CfnFeedMixinProps(
    name="name",
    outputs=[elementalinference.CfnFeedPropsMixin.GetOutputProperty(
        description="description",
        name="name",
        output_config=elementalinference.CfnFeedPropsMixin.OutputConfigProperty(
            clipping=elementalinference.CfnFeedPropsMixin.ClippingConfigProperty(
                callback_metadata="callbackMetadata"
            ),
            cropping=cropping
        ),
        status="status"
    )],
    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