CfnFeedProps
- class aws_cdk.aws_elementalinference.CfnFeedProps(*, name, outputs, access_role_arn=None, tags=None)
Bases:
objectProperties for defining a
CfnFeed.- Parameters:
name (
str)outputs (
Union[IResolvable,Sequence[Union[IResolvable,GetOutputProperty,Dict[str,Any]]]])access_role_arn (
Optional[str])tags (
Optional[Mapping[str,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 import aws_elementalinference as elementalinference 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", data_source_configuration=elementalinference.CfnFeed.DataSourceConfigurationProperty( fixture_id="fixtureId" ) ), cropping=elementalinference.CfnFeed.CroppingConfigProperty( template_groups=[elementalinference.CfnFeed.TemplateGroupProperty( name="name", template_uris=["templateUris"] )] ), subtitling=elementalinference.CfnFeed.SubtitlingConfigProperty( language="language", # the properties below are optional aspect_ratio=elementalinference.CfnFeed.AspectRatioProperty( height=123, width=123 ), dictionary="dictionary", profanity_filter="profanityFilter" ) ), status="status", # the properties below are optional description="description" )], # the properties below are optional access_role_arn="accessRoleArn", tags={ "tags_key": "tags" } )
Attributes
- access_role_arn
-
- Type:
see
- name
-
- Type:
see
- outputs
-
- Type:
see