interface TemplateProviderDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnProjectPropsMixin.TemplateProviderDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnProjectPropsMixin_TemplateProviderDetailProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnProjectPropsMixin.TemplateProviderDetailProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnProjectPropsMixin.TemplateProviderDetailProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnProjectPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const templateProviderDetailProperty: sagemaker_mixins.CfnProjectPropsMixin.TemplateProviderDetailProperty = {
cfnTemplateProviderDetail: {
parameters: [{
key: 'key',
value: 'value',
}],
roleArn: 'roleArn',
templateName: 'templateName',
templateUrl: 'templateUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cfn | IResolvable | Cfn | Details about a CloudFormation template provider configuration and associated provisioning information. |
cfnTemplateProviderDetail?
Type:
IResolvable | Cfn
(optional)
Details about a CloudFormation template provider configuration and associated provisioning information.

.NET
Go
Java
Python
TypeScript