CfnFeedPropsMixin
- class aws_cdk.cfn_property_mixins.aws_elementalinference.CfnFeedPropsMixin(props, *, strategy=None)
Bases:
MixinRepresents a feed that receives media for inference processing.
- See:
- CloudformationResource:
AWS::ElementalInference::Feed
- Mixin:
true
- 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 import aws_cdk as cdk # cropping: Any # merge_strategy: cdk.IMergeStrategy cfn_feed_props_mixin = elementalinference.CfnFeedPropsMixin(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" } ), strategy=merge_strategy )
Create a mixin to apply properties to
AWS::ElementalInference::Feed.- Parameters:
props (
Union[CfnFeedMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
None
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['name', 'outputs', 'tags']
Static Methods
- classmethod is_mixin(x)
Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
ClippingConfigProperty
- class CfnFeedPropsMixin.ClippingConfigProperty(*, callback_metadata=None)
Bases:
object- Parameters:
callback_metadata (
Optional[str])- See:
- 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 clipping_config_property = elementalinference.CfnFeedPropsMixin.ClippingConfigProperty( callback_metadata="callbackMetadata" )
Attributes
GetOutputProperty
- class CfnFeedPropsMixin.GetOutputProperty(*, description=None, name=None, output_config=None, status=None)
Bases:
object- Parameters:
description (
Optional[str])name (
Optional[str])output_config (
Union[IResolvable,OutputConfigProperty,Dict[str,Any],None])status (
Optional[str])
- See:
- 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 get_output_property = elementalinference.CfnFeedPropsMixin.GetOutputProperty( description="description", name="name", output_config=elementalinference.CfnFeedPropsMixin.OutputConfigProperty( clipping=elementalinference.CfnFeedPropsMixin.ClippingConfigProperty( callback_metadata="callbackMetadata" ), cropping=cropping ), status="status" )
Attributes
- description
-
- Type:
see
- name
-
- Type:
see
- output_config
-
- Type:
see
OutputConfigProperty
- class CfnFeedPropsMixin.OutputConfigProperty(*, clipping=None, cropping=None)
Bases:
object- Parameters:
clipping (
Union[IResolvable,ClippingConfigProperty,Dict[str,Any],None])cropping (
Any)
- See:
- 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 output_config_property = elementalinference.CfnFeedPropsMixin.OutputConfigProperty( clipping=elementalinference.CfnFeedPropsMixin.ClippingConfigProperty( callback_metadata="callbackMetadata" ), cropping=cropping )
Attributes
- clipping
-
- Type:
see