Show / Hide Table of Contents

Class SageMakerModelStateChange.SageMakerModelStateChangeProps

(experimental) Props type for aws.sagemaker@SageMakerModelStateChange event.

Inheritance
object
SageMakerModelStateChange.SageMakerModelStateChangeProps
Implements
SageMakerModelStateChange.ISageMakerModelStateChangeProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class SageMakerModelStateChange.SageMakerModelStateChangeProps : SageMakerModelStateChange.ISageMakerModelStateChangeProps
Syntax (vb)
Public Class SageMakerModelStateChange.SageMakerModelStateChangeProps Implements SageMakerModelStateChange.ISageMakerModelStateChangeProps
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.SageMaker.Events;

             var sageMakerModelStateChangeProps = new SageMakerModelStateChangeProps {
                 CreationTime = new [] { "creationTime" },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 ExecutionRoleArn = new [] { "executionRoleArn" },
                 ModelArn = new [] { "modelArn" },
                 ModelName = new [] { "modelName" },
                 PrimaryContainer = new PrimaryContainer {
                     ContainerHostname = new [] { "containerHostname" },
                     Image = new [] { "image" },
                     ModelDataUrl = new [] { "modelDataUrl" }
                 },
                 Tags = new [] { new Tags {
                     Key = new [] { "key" },
                     Value = new [] { "value" }
                 } }
             };

Synopsis

Constructors

SageMakerModelStateChangeProps()

(experimental) Props type for aws.sagemaker@SageMakerModelStateChange event.

Properties

CreationTime

(experimental) CreationTime property.

EventMetadata

(experimental) EventBridge event metadata.

ExecutionRoleArn

(experimental) ExecutionRoleArn property.

ModelArn

(experimental) ModelArn property.

ModelName

(experimental) ModelName property.

PrimaryContainer

(experimental) PrimaryContainer property.

Tags

(experimental) Tags property.

Constructors

SageMakerModelStateChangeProps()

(experimental) Props type for aws.sagemaker@SageMakerModelStateChange event.

public SageMakerModelStateChangeProps()
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.SageMaker.Events;

             var sageMakerModelStateChangeProps = new SageMakerModelStateChangeProps {
                 CreationTime = new [] { "creationTime" },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 ExecutionRoleArn = new [] { "executionRoleArn" },
                 ModelArn = new [] { "modelArn" },
                 ModelName = new [] { "modelName" },
                 PrimaryContainer = new PrimaryContainer {
                     ContainerHostname = new [] { "containerHostname" },
                     Image = new [] { "image" },
                     ModelDataUrl = new [] { "modelDataUrl" }
                 },
                 Tags = new [] { new Tags {
                     Key = new [] { "key" },
                     Value = new [] { "value" }
                 } }
             };

Properties

CreationTime

(experimental) CreationTime property.

public string[]? CreationTime { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of CreationTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

EventMetadata

(experimental) EventBridge event metadata.

public IAWSEventMetadataProps? EventMetadata { get; set; }
Property Value

IAWSEventMetadataProps

Remarks

Default: - -

Stability: Experimental

ExecutionRoleArn

(experimental) ExecutionRoleArn property.

public string[]? ExecutionRoleArn { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of ExecutionRoleArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

ModelArn

(experimental) ModelArn property.

public string[]? ModelArn { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of ModelArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

ModelName

(experimental) ModelName property.

public string[]? ModelName { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of ModelName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

PrimaryContainer

(experimental) PrimaryContainer property.

public SageMakerModelStateChange.IPrimaryContainer? PrimaryContainer { get; set; }
Property Value

SageMakerModelStateChange.IPrimaryContainer

Remarks

Specify an array of string values to match this event if the actual value of PrimaryContainer is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Tags

(experimental) Tags property.

public SageMakerModelStateChange.ITags[]? Tags { get; set; }
Property Value

ITags[]

Remarks

Specify an array of string values to match this event if the actual value of Tags is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Implements

SageMakerModelStateChange.ISageMakerModelStateChangeProps
Back to top Generated by DocFX