Show / Hide Table of Contents

Class CfnActionMixinProps

Properties for CfnActionPropsMixin.

Inheritance
object
CfnActionMixinProps
Implements
ICfnActionMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnActionMixinProps : ICfnActionMixinProps
Syntax (vb)
Public Class CfnActionMixinProps Implements 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

Constructors

CfnActionMixinProps()

Properties for CfnActionPropsMixin.

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.

Constructors

CfnActionMixinProps()

Properties for CfnActionPropsMixin.

public CfnActionMixinProps()
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"
                 } }
             };

Properties

ActionName

The name of the action.

public string? ActionName { get; set; }
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.

public string? ActionType { get; set; }
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.

public string? Description { get; set; }
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.

public object? MetadataProperties { get; set; }
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.

public object? Properties { get; set; }
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.

public object? Source { get; set; }
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.

public string? Status { get; set; }
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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnActionMixinProps
Back to top Generated by DocFX