interface ActionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.ActionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#ActionReference |
Java | software.amazon.awscdk.interfaces.sagemaker.ActionReference |
Python | aws_cdk.interfaces.aws_sagemaker.ActionReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » ActionReference |
A reference to a Action resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as interfaces_sagemaker } from 'aws-cdk-lib/interfaces';
const actionReference: interfaces_sagemaker.ActionReference = {
actionArn: 'actionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The Arn of the Action resource. |
actionArn
Type:
string
The Arn of the Action resource.

.NET
Go
Java
Python
TypeScript