CfnApplicationInferenceProfileMixinProps

class aws_cdk.mixins_preview.aws_bedrock.mixins.CfnApplicationInferenceProfileMixinProps(*, description=None, inference_profile_name=None, model_source=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.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.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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#cfn-bedrock-applicationinferenceprofile-description

inference_profile_name

The name of the inference profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#cfn-bedrock-applicationinferenceprofile-inferenceprofilename

model_source

Contains configurations for the inference profile to copy as the resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#cfn-bedrock-applicationinferenceprofile-modelsource

tags

A list of tags associated with the inference profile.

See:

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