interface CfnCollectionGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchServerless.Mixins.CfnCollectionGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchserverless/mixins#CfnCollectionGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.opensearchserverless.mixins.CfnCollectionGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_opensearchserverless.mixins.CfnCollectionGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchserverless » mixins » CfnCollectionGroupMixinProps |
Properties for CfnCollectionGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opensearchserverless_mixins } from '@aws-cdk/mixins-preview/aws-opensearchserverless';
const cfnCollectionGroupMixinProps: opensearchserverless_mixins.CfnCollectionGroupMixinProps = {
capacityLimits: {
maxIndexingCapacityInOcu: 123,
maxSearchCapacityInOcu: 123,
minIndexingCapacityInOcu: 123,
minSearchCapacityInOcu: 123,
},
description: 'description',
name: 'name',
standbyReplicas: 'standbyReplicas',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| capacity | IResolvable | Capacity | |
| description? | string | The description of the collection group. |
| name? | string | The name of the collection group. |
| standby | string | Indicates whether standby replicas are used for the collection group. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
capacityLimits?
Type:
IResolvable | Capacity
(optional)
description?
Type:
string
(optional)
The description of the collection group.
name?
Type:
string
(optional)
The name of the collection group.
standbyReplicas?
Type:
string
(optional)
Indicates whether standby replicas are used for the collection group.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript