CfnActionMixinProps

class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnActionMixinProps(*, action_name=None, action_type=None, description=None, metadata_properties=None, properties=None, source=None, status=None, tags=None)

Bases: object

Properties for CfnActionPropsMixin.

Parameters:
  • action_name (Optional[str]) – The name of the action. Must be unique to your account in an AWS Region.

  • action_type (Optional[str]) – The action type.

  • description (Optional[str]) – The description of the action.

  • metadata_properties (Union[IResolvable, MetadataPropertiesProperty, Dict[str, Any], None])

  • properties (Union[IResolvable, Mapping[str, str], None]) – A list of properties to add to the action.

  • source (Union[IResolvable, ActionSourceProperty, Dict[str, Any], None])

  • status (Optional[str]) – The status of the action.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of tags to apply to the action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-action.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_sagemaker as sagemaker

cfn_action_mixin_props = sagemaker.CfnActionMixinProps(
    action_name="actionName",
    action_type="actionType",
    description="description",
    metadata_properties=sagemaker.CfnActionPropsMixin.MetadataPropertiesProperty(
        commit_id="commitId",
        generated_by="generatedBy",
        project_id="projectId",
        repository="repository"
    ),
    properties={
        "properties_key": "properties"
    },
    source=sagemaker.CfnActionPropsMixin.ActionSourceProperty(
        source_id="sourceId",
        source_type="sourceType",
        source_uri="sourceUri"
    ),
    status="status",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

action_name

The name of the action.

Must be unique to your account in an AWS Region.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-action.html#cfn-sagemaker-action-actionname

action_type

The action type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-action.html#cfn-sagemaker-action-actiontype

description

The description of the action.

See:

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

metadata_properties

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-action.html#cfn-sagemaker-action-metadataproperties

Type:

see

properties

A list of properties to add to the action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-action.html#cfn-sagemaker-action-properties

source

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-action.html#cfn-sagemaker-action-source

Type:

see

status

The status of the action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-action.html#cfn-sagemaker-action-status

tags

A list of tags to apply to the action.

See:

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