interface CfnTemplateProviderDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnProjectPropsMixin_CfnTemplateProviderDetailProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnProjectPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const cfnTemplateProviderDetailProperty: sagemaker_mixins.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty = {
parameters: [{
key: 'key',
value: 'value',
}],
roleArn: 'roleArn',
templateName: 'templateName',
templateUrl: 'templateUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameters? | IResolvable | (IResolvable | Cfn)[] | An array of CloudFormation stack parameters. |
| role | string | The IAM role used by CloudFormation to create the stack. |
| template | string | The unique identifier of the template within the project. |
| template | 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.
templateName?
Type:
string
(optional)
The unique identifier of the template within the project.
templateUrl?
Type:
string
(optional)
The Amazon S3 URL of the CloudFormation template.

.NET
Go
Java
Python
TypeScript