Show / Hide Table of Contents

Interface ICfnActionMixinProps

Properties for CfnActionPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnActionMixinProps
Syntax (vb)
Public Interface ICfnActionMixinProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;

             var cfnActionMixinProps = new CfnActionMixinProps {
                 ActionName = "actionName",
                 ActionType = "actionType",
                 Description = "description",
                 MetadataProperties = new MetadataPropertiesProperty {
                     CommitId = "commitId",
                     GeneratedBy = "generatedBy",
                     ProjectId = "projectId",
                     Repository = "repository"
                 },
                 Properties = new Dictionary<string, string> {
                     { "propertiesKey", "properties" }
                 },
                 Source = new ActionSourceProperty {
                     SourceId = "sourceId",
                     SourceType = "sourceType",
                     SourceUri = "sourceUri"
                 },
                 Status = "status",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

ActionName

The name of the action.

ActionType

The action type.

Description

The description of the action.

MetadataProperties

Properties for CfnActionPropsMixin.

Properties

A list of properties to add to the action.

Source

Properties for CfnActionPropsMixin.

Status

The status of the action.

Tags

A list of tags to apply to the action.

Properties

ActionName

The name of the action.

string? ActionName { get; }
Property Value

string

Remarks

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

ActionType

The action type.

string? ActionType { get; }
Property Value

string

Remarks

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

Description

The description of the action.

string? Description { get; }
Property Value

string

Remarks

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

MetadataProperties

Properties for CfnActionPropsMixin.

object? MetadataProperties { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnActionPropsMixin.IMetadataPropertiesProperty

Properties

A list of properties to add to the action.

object? Properties { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or Dictionary<string, string>

Source

Properties for CfnActionPropsMixin.

object? Source { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnActionPropsMixin.IActionSourceProperty

Status

The status of the action.

string? Status { get; }
Property Value

string

Remarks

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.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX