CfnApplicationInferenceProfileMixinProps
- class aws_cdk.mixins_preview.aws_bedrock.mixins.CfnApplicationInferenceProfileMixinProps(*, description=None, inference_profile_name=None, model_source=None, tags=None)
Bases:
objectProperties for CfnApplicationInferenceProfilePropsMixin.
- Parameters:
description (
Optional[str]) – The description of the inference profile.inference_profile_name (
Optional[str]) – The name of the inference profile.model_source (
Union[IResolvable,InferenceProfileModelSourceProperty,Dict[str,Any],None]) – Contains configurations for the inference profile to copy as the resource.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of tags associated with the inference profile.
- 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.mixins_preview.aws_bedrock import mixins as bedrock_mixins cfn_application_inference_profile_mixin_props = bedrock_mixins.CfnApplicationInferenceProfileMixinProps( description="description", inference_profile_name="inferenceProfileName", model_source=bedrock_mixins.CfnApplicationInferenceProfilePropsMixin.InferenceProfileModelSourceProperty( copy_from="copyFrom" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the inference profile.
- inference_profile_name
The name of the inference profile.
- model_source
Contains configurations for the inference profile to copy as the resource.
- tags
A list of tags associated with the inference profile.