CfnConfiguredModelAlgorithmMixinProps

class aws_cdk.cfn_property_mixins.aws_cleanroomsml.CfnConfiguredModelAlgorithmMixinProps(*, description=None, inference_container_config=None, kms_key_arn=None, name=None, role_arn=None, tags=None, training_container_config=None)

Bases: object

Properties for CfnConfiguredModelAlgorithmPropsMixin.

Parameters:
  • description (Optional[str])

  • inference_container_config (Union[IResolvable, InferenceContainerConfigProperty, Dict[str, Any], None])

  • kms_key_arn (Optional[str])

  • name (Optional[str])

  • role_arn (Optional[str])

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm.

  • training_container_config (Union[IResolvable, ContainerConfigProperty, Dict[str, Any], None])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-configuredmodelalgorithm.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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_cleanroomsml as cleanroomsml

cfn_configured_model_algorithm_mixin_props = cleanroomsml.CfnConfiguredModelAlgorithmMixinProps(
    description="description",
    inference_container_config=cleanroomsml.CfnConfiguredModelAlgorithmPropsMixin.InferenceContainerConfigProperty(
        image_uri="imageUri"
    ),
    kms_key_arn="kmsKeyArn",
    name="name",
    role_arn="roleArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    training_container_config=cleanroomsml.CfnConfiguredModelAlgorithmPropsMixin.ContainerConfigProperty(
        arguments=["arguments"],
        entrypoint=["entrypoint"],
        image_uri="imageUri",
        metric_definitions=[cleanroomsml.CfnConfiguredModelAlgorithmPropsMixin.MetricDefinitionProperty(
            name="name",
            regex="regex"
        )]
    )
)

Attributes

description

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

Type:

see

inference_container_config

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-configuredmodelalgorithm.html#cfn-cleanroomsml-configuredmodelalgorithm-inferencecontainerconfig

Type:

see

kms_key_arn

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-configuredmodelalgorithm.html#cfn-cleanroomsml-configuredmodelalgorithm-kmskeyarn

Type:

see

name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-configuredmodelalgorithm.html#cfn-cleanroomsml-configuredmodelalgorithm-name

Type:

see

role_arn

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-configuredmodelalgorithm.html#cfn-cleanroomsml-configuredmodelalgorithm-rolearn

Type:

see

tags

An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm.

See:

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

training_container_config

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-configuredmodelalgorithm.html#cfn-cleanroomsml-configuredmodelalgorithm-trainingcontainerconfig

Type:

see