interface CfnTemplateProviderDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProject.CfnTemplateProviderDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProject_CfnTemplateProviderDetailProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProject.CfnTemplateProviderDetailProperty |
Python | aws_cdk.aws_sagemaker.CfnProject.CfnTemplateProviderDetailProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnProject » CfnTemplateProviderDetailProperty |
Details about a CloudFormation 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 cfnTemplateProviderDetailProperty: sagemaker.CfnProject.CfnTemplateProviderDetailProperty = {
templateName: 'templateName',
templateUrl: 'templateUrl',
// the properties below are optional
parameters: [{
key: 'key',
value: 'value',
}],
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| template | string | The unique identifier of the template within the project. |
| template | string | The Amazon S3 URL of the CloudFormation template. |
| parameters? | IResolvable | (IResolvable | Cfn)[] | An array of CloudFormation stack parameters. |
| role | string | The IAM role used by CloudFormation to create the stack. |
templateName
Type:
string
The unique identifier of the template within the project.
templateUrl
Type:
string
The Amazon S3 URL of the CloudFormation template.
parameters?
Type:
IResolvable | (IResolvable | Cfn)[]
(optional)
An array of CloudFormation stack parameters.
roleArn?
Type:
string
(optional)
The IAM role used by CloudFormation to create the stack.

.NET
Go
Java
Python
TypeScript