interface AppConfigResourceObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Evidently.CfnProjectPropsMixin.AppConfigResourceObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsevidently#CfnProjectPropsMixin_AppConfigResourceObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.evidently.CfnProjectPropsMixin.AppConfigResourceObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_evidently.CfnProjectPropsMixin.AppConfigResourceObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_evidently » CfnProjectPropsMixin » AppConfigResourceObjectProperty |
This is a structure that defines the configuration of how your application integrates with AWS AppConfig to run client-side evaluation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_evidently as evidently } from '@aws-cdk/cfn-property-mixins';
const appConfigResourceObjectProperty: evidently.CfnProjectPropsMixin.AppConfigResourceObjectProperty = {
applicationId: 'applicationId',
environmentId: 'environmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | IApplication | The ID of the AWS AppConfig application to use for client-side evaluation. |
| environment | string | The ID of the AWS AppConfig environment to use for client-side evaluation. |
applicationId?
Type:
string | IApplication
(optional)
The ID of the AWS AppConfig application to use for client-side evaluation.
environmentId?
Type:
string
(optional)
The ID of the AWS AppConfig environment to use for client-side evaluation.

.NET
Go
Java
Python
TypeScript