All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIndexMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-22T17:37:45.333Z") @Stability(Stable) public interface CfnIndexMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnIndexPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.*;
 PropertyMappingProperty propertyMappingProperty_;
 CfnIndexMixinProps cfnIndexMixinProps = CfnIndexMixinProps.builder()
         .collectionEndpoint("collectionEndpoint")
         .indexName("indexName")
         .mappings(MappingsProperty.builder()
                 .properties(Map.of(
                         "propertiesKey", PropertyMappingProperty.builder()
                                 .analyzer("analyzer")
                                 .compressionLevel("compressionLevel")
                                 .dimension(123)
                                 .index(false)
                                 .method(MethodProperty.builder()
                                         .engine("engine")
                                         .name("name")
                                         .parameters(ParametersProperty.builder()
                                                 .efConstruction(123)
                                                 .m(123)
                                                 .build())
                                         .spaceType("spaceType")
                                         .build())
                                 .properties(Map.of(
                                         "propertiesKey", propertyMappingProperty_))
                                 .spaceType("spaceType")
                                 .type("type")
                                 .value("value")
                                 .build()))
                 .build())
         .settings(IndexSettingsProperty.builder()
                 .analysis(AnalysisProperty.builder()
                         .analyzer(Map.of(
                                 "analyzerKey", AnalyzerItemsProperty.builder()
                                         .charFilter(List.of("charFilter"))
                                         .filter(List.of("filter"))
                                         .tokenizer("tokenizer")
                                         .type("type")
                                         .build()))
                         .build())
                 .index(IndexProperty.builder()
                         .knn(false)
                         .knnAlgoParamEfSearch(123)
                         .refreshInterval("refreshInterval")
                         .build())
                 .build())
         .build();
 

See Also: