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

.NET
Go
Java
Python
TypeScript