interface PartnerAppConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnPartnerAppPropsMixin.PartnerAppConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnPartnerAppPropsMixin_PartnerAppConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnPartnerAppPropsMixin.PartnerAppConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnPartnerAppPropsMixin.PartnerAppConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnPartnerAppPropsMixin » PartnerAppConfigProperty |
A collection of configuration settings for the PartnerApp.
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 partnerAppConfigProperty: sagemaker_mixins.CfnPartnerAppPropsMixin.PartnerAppConfigProperty = {
adminUsers: ['adminUsers'],
arguments: {
argumentsKey: 'arguments',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| admin | string[] | A list of users that will have administrative access to the Partner AI App. |
| arguments? | { [string]: string } | IResolvable | Additional arguments passed to the Partner AI App during initialization or runtime. |
adminUsers?
Type:
string[]
(optional)
A list of users that will have administrative access to the Partner AI App.
arguments?
Type:
{ [string]: string } | IResolvable
(optional)
Additional arguments passed to the Partner AI App during initialization or runtime.

.NET
Go
Java
Python
TypeScript