interface ActionSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAction.ActionSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAction_ActionSourceProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAction.ActionSourceProperty |
Python | aws_cdk.aws_sagemaker.CfnAction.ActionSourceProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnAction » ActionSourceProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const actionSourceProperty: sagemaker.CfnAction.ActionSourceProperty = {
sourceUri: 'sourceUri',
// the properties below are optional
sourceId: 'sourceId',
sourceType: 'sourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The URI of the source. |
| source | string | The ID of the source. |
| source | string | The type of the source. |
sourceUri
Type:
string
The URI of the source.
sourceId?
Type:
string
(optional)
The ID of the source.
sourceType?
Type:
string
(optional)
The type of the source.

.NET
Go
Java
Python
TypeScript