interface SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnContextPropsMixin.SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnContextPropsMixin_SourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnContextPropsMixin.SourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnContextPropsMixin.SourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnContextPropsMixin » SourceProperty |
The source type, ID, and URI.
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/cfn-property-mixins';
const sourceProperty: sagemaker.CfnContextPropsMixin.SourceProperty = {
sourceId: 'sourceId',
sourceType: 'sourceType',
sourceUri: 'sourceUri',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The ID of the source. |
| source | string | The type of the source. |
| source | string | The URI of the source. |
sourceId?
Type:
string
(optional)
The ID of the source.
sourceType?
Type:
string
(optional)
The type of the source.
sourceUri?
Type:
string
(optional)
The URI of the source.

.NET
Go
Java
Python
TypeScript