interface AIMLOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService.CfnDomainPropsMixin.AIMLOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchservice#CfnDomainPropsMixin_AIMLOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchservice.CfnDomainPropsMixin.AIMLOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_opensearchservice.CfnDomainPropsMixin.AIMLOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchservice » CfnDomainPropsMixin » AIMLOptionsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as opensearchservice } from '@aws-cdk/cfn-property-mixins';
const aIMLOptionsProperty: opensearchservice.CfnDomainPropsMixin.AIMLOptionsProperty = {
s3VectorsEngine: {
enabled: false,
},
serverlessVectorAcceleration: {
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | |
| serverless | IResolvable | Serverless |
s3VectorsEngine?
Type:
IResolvable | S3
(optional)
serverlessVectorAcceleration?
Type:
IResolvable | Serverless
(optional)

.NET
Go
Java
Python
TypeScript