interface TemplateProviderDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProject.TemplateProviderDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProject_TemplateProviderDetailProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProject.TemplateProviderDetailProperty |
Python | aws_cdk.aws_sagemaker.CfnProject.TemplateProviderDetailProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnProject » TemplateProviderDetailProperty |
Details about a template provider configuration and associated provisioning information.
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 templateProviderDetailProperty: sagemaker.CfnProject.TemplateProviderDetailProperty = {
cfnTemplateProviderDetail: {
templateName: 'templateName',
templateUrl: 'templateUrl',
// the properties below are optional
parameters: [{
key: 'key',
value: 'value',
}],
roleArn: 'roleArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cfn | IResolvable | Cfn | Details about a CloudFormation template provider configuration and associated provisioning information. |
cfnTemplateProviderDetail
Type:
IResolvable | Cfn
Details about a CloudFormation template provider configuration and associated provisioning information.

.NET
Go
Java
Python
TypeScript