interface PartnerAppConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnPartnerAppPropsMixin.PartnerAppConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnPartnerAppPropsMixin_PartnerAppConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnPartnerAppPropsMixin.PartnerAppConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnPartnerAppPropsMixin.PartnerAppConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const partnerAppConfigProperty: sagemaker.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