published on Thursday, Apr 30, 2026 by Pulumi
published on Thursday, Apr 30, 2026 by Pulumi
Resource for managing an AWS OpenSearch Serverless Collection Group.
Collection groups let multiple OpenSearch Serverless collections share compute resources while keeping encryption and access controls independent.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.opensearch.ServerlessCollectionGroup("example", {
name: "example-group",
description: "Shared compute for production collections",
standbyReplicas: "ENABLED",
capacityLimits: [{
minIndexingCapacityInOcu: 2,
maxIndexingCapacityInOcu: 16,
minSearchCapacityInOcu: 2,
maxSearchCapacityInOcu: 16,
}],
});
import pulumi
import pulumi_aws as aws
example = aws.opensearch.ServerlessCollectionGroup("example",
name="example-group",
description="Shared compute for production collections",
standby_replicas="ENABLED",
capacity_limits=[{
"min_indexing_capacity_in_ocu": 2,
"max_indexing_capacity_in_ocu": 16,
"min_search_capacity_in_ocu": 2,
"max_search_capacity_in_ocu": 16,
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/opensearch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := opensearch.NewServerlessCollectionGroup(ctx, "example", &opensearch.ServerlessCollectionGroupArgs{
Name: pulumi.String("example-group"),
Description: pulumi.String("Shared compute for production collections"),
StandbyReplicas: pulumi.String("ENABLED"),
CapacityLimits: opensearch.ServerlessCollectionGroupCapacityLimitArray{
&opensearch.ServerlessCollectionGroupCapacityLimitArgs{
MinIndexingCapacityInOcu: pulumi.Float64(2),
MaxIndexingCapacityInOcu: pulumi.Float64(16),
MinSearchCapacityInOcu: pulumi.Float64(2),
MaxSearchCapacityInOcu: pulumi.Float64(16),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.OpenSearch.ServerlessCollectionGroup("example", new()
{
Name = "example-group",
Description = "Shared compute for production collections",
StandbyReplicas = "ENABLED",
CapacityLimits = new[]
{
new Aws.OpenSearch.Inputs.ServerlessCollectionGroupCapacityLimitArgs
{
MinIndexingCapacityInOcu = 2,
MaxIndexingCapacityInOcu = 16,
MinSearchCapacityInOcu = 2,
MaxSearchCapacityInOcu = 16,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.opensearch.ServerlessCollectionGroup;
import com.pulumi.aws.opensearch.ServerlessCollectionGroupArgs;
import com.pulumi.aws.opensearch.inputs.ServerlessCollectionGroupCapacityLimitArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ServerlessCollectionGroup("example", ServerlessCollectionGroupArgs.builder()
.name("example-group")
.description("Shared compute for production collections")
.standbyReplicas("ENABLED")
.capacityLimits(ServerlessCollectionGroupCapacityLimitArgs.builder()
.minIndexingCapacityInOcu(2.0)
.maxIndexingCapacityInOcu(16.0)
.minSearchCapacityInOcu(2.0)
.maxSearchCapacityInOcu(16.0)
.build())
.build());
}
}
resources:
example:
type: aws:opensearch:ServerlessCollectionGroup
properties:
name: example-group
description: Shared compute for production collections
standbyReplicas: ENABLED
capacityLimits:
- minIndexingCapacityInOcu: 2
maxIndexingCapacityInOcu: 16
minSearchCapacityInOcu: 2
maxSearchCapacityInOcu: 16
Create ServerlessCollectionGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerlessCollectionGroup(name: string, args: ServerlessCollectionGroupArgs, opts?: CustomResourceOptions);@overload
def ServerlessCollectionGroup(resource_name: str,
args: ServerlessCollectionGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServerlessCollectionGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
standby_replicas: Optional[str] = None,
capacity_limits: Optional[Sequence[ServerlessCollectionGroupCapacityLimitArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewServerlessCollectionGroup(ctx *Context, name string, args ServerlessCollectionGroupArgs, opts ...ResourceOption) (*ServerlessCollectionGroup, error)public ServerlessCollectionGroup(string name, ServerlessCollectionGroupArgs args, CustomResourceOptions? opts = null)
public ServerlessCollectionGroup(String name, ServerlessCollectionGroupArgs args)
public ServerlessCollectionGroup(String name, ServerlessCollectionGroupArgs args, CustomResourceOptions options)
type: aws:opensearch:ServerlessCollectionGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServerlessCollectionGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServerlessCollectionGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServerlessCollectionGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerlessCollectionGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerlessCollectionGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serverlessCollectionGroupResource = new Aws.OpenSearch.ServerlessCollectionGroup("serverlessCollectionGroupResource", new()
{
StandbyReplicas = "string",
CapacityLimits = new[]
{
new Aws.OpenSearch.Inputs.ServerlessCollectionGroupCapacityLimitArgs
{
MaxIndexingCapacityInOcu = 0,
MaxSearchCapacityInOcu = 0,
MinIndexingCapacityInOcu = 0,
MinSearchCapacityInOcu = 0,
},
},
Description = "string",
Name = "string",
Region = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := opensearch.NewServerlessCollectionGroup(ctx, "serverlessCollectionGroupResource", &opensearch.ServerlessCollectionGroupArgs{
StandbyReplicas: pulumi.String("string"),
CapacityLimits: opensearch.ServerlessCollectionGroupCapacityLimitArray{
&opensearch.ServerlessCollectionGroupCapacityLimitArgs{
MaxIndexingCapacityInOcu: pulumi.Float64(0),
MaxSearchCapacityInOcu: pulumi.Float64(0),
MinIndexingCapacityInOcu: pulumi.Float64(0),
MinSearchCapacityInOcu: pulumi.Float64(0),
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var serverlessCollectionGroupResource = new ServerlessCollectionGroup("serverlessCollectionGroupResource", ServerlessCollectionGroupArgs.builder()
.standbyReplicas("string")
.capacityLimits(ServerlessCollectionGroupCapacityLimitArgs.builder()
.maxIndexingCapacityInOcu(0.0)
.maxSearchCapacityInOcu(0.0)
.minIndexingCapacityInOcu(0.0)
.minSearchCapacityInOcu(0.0)
.build())
.description("string")
.name("string")
.region("string")
.tags(Map.of("string", "string"))
.build());
serverless_collection_group_resource = aws.opensearch.ServerlessCollectionGroup("serverlessCollectionGroupResource",
standby_replicas="string",
capacity_limits=[{
"max_indexing_capacity_in_ocu": float(0),
"max_search_capacity_in_ocu": float(0),
"min_indexing_capacity_in_ocu": float(0),
"min_search_capacity_in_ocu": float(0),
}],
description="string",
name="string",
region="string",
tags={
"string": "string",
})
const serverlessCollectionGroupResource = new aws.opensearch.ServerlessCollectionGroup("serverlessCollectionGroupResource", {
standbyReplicas: "string",
capacityLimits: [{
maxIndexingCapacityInOcu: 0,
maxSearchCapacityInOcu: 0,
minIndexingCapacityInOcu: 0,
minSearchCapacityInOcu: 0,
}],
description: "string",
name: "string",
region: "string",
tags: {
string: "string",
},
});
type: aws:opensearch:ServerlessCollectionGroup
properties:
capacityLimits:
- maxIndexingCapacityInOcu: 0
maxSearchCapacityInOcu: 0
minIndexingCapacityInOcu: 0
minSearchCapacityInOcu: 0
description: string
name: string
region: string
standbyReplicas: string
tags:
string: string
ServerlessCollectionGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ServerlessCollectionGroup resource accepts the following input properties:
- Standby
Replicas string Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- Capacity
Limits List<ServerlessCollection Group Capacity Limit> - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - Description string
- Description of the collection group.
- Name string
- Name of the collection group.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Standby
Replicas string Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- Capacity
Limits []ServerlessCollection Group Capacity Limit Args - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - Description string
- Description of the collection group.
- Name string
- Name of the collection group.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- standby
Replicas String Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- capacity
Limits List<ServerlessCollection Group Capacity Limit> - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - description String
- Description of the collection group.
- name String
- Name of the collection group.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- standby
Replicas string Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- capacity
Limits ServerlessCollection Group Capacity Limit[] - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - description string
- Description of the collection group.
- name string
- Name of the collection group.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- standby_
replicas str Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- capacity_
limits Sequence[ServerlessCollection Group Capacity Limit Args] - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - description str
- Description of the collection group.
- name str
- Name of the collection group.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- standby
Replicas String Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- capacity
Limits List<Property Map> - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - description String
- Description of the collection group.
- name String
- Name of the collection group.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerlessCollectionGroup resource produces the following output properties:
- Arn string
- Amazon Resource Name (ARN) of the collection group.
- Created
Date string - Date the collection group was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- Arn string
- Amazon Resource Name (ARN) of the collection group.
- Created
Date string - Date the collection group was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the collection group.
- created
Date String - Date the collection group was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn string
- Amazon Resource Name (ARN) of the collection group.
- created
Date string - Date the collection group was created.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn str
- Amazon Resource Name (ARN) of the collection group.
- created_
date str - Date the collection group was created.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the collection group.
- created
Date String - Date the collection group was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
Look up Existing ServerlessCollectionGroup Resource
Get an existing ServerlessCollectionGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ServerlessCollectionGroupState, opts?: CustomResourceOptions): ServerlessCollectionGroup@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
capacity_limits: Optional[Sequence[ServerlessCollectionGroupCapacityLimitArgs]] = None,
created_date: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
standby_replicas: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> ServerlessCollectionGroupfunc GetServerlessCollectionGroup(ctx *Context, name string, id IDInput, state *ServerlessCollectionGroupState, opts ...ResourceOption) (*ServerlessCollectionGroup, error)public static ServerlessCollectionGroup Get(string name, Input<string> id, ServerlessCollectionGroupState? state, CustomResourceOptions? opts = null)public static ServerlessCollectionGroup get(String name, Output<String> id, ServerlessCollectionGroupState state, CustomResourceOptions options)resources: _: type: aws:opensearch:ServerlessCollectionGroup get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- Amazon Resource Name (ARN) of the collection group.
- Capacity
Limits List<ServerlessCollection Group Capacity Limit> - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - Created
Date string - Date the collection group was created.
- Description string
- Description of the collection group.
- Name string
- Name of the collection group.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Standby
Replicas string Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- Dictionary<string, string>
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- Arn string
- Amazon Resource Name (ARN) of the collection group.
- Capacity
Limits []ServerlessCollection Group Capacity Limit Args - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - Created
Date string - Date the collection group was created.
- Description string
- Description of the collection group.
- Name string
- Name of the collection group.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Standby
Replicas string Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- map[string]string
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the collection group.
- capacity
Limits List<ServerlessCollection Group Capacity Limit> - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - created
Date String - Date the collection group was created.
- description String
- Description of the collection group.
- name String
- Name of the collection group.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- standby
Replicas String Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- Map<String,String>
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn string
- Amazon Resource Name (ARN) of the collection group.
- capacity
Limits ServerlessCollection Group Capacity Limit[] - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - created
Date string - Date the collection group was created.
- description string
- Description of the collection group.
- name string
- Name of the collection group.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- standby
Replicas string Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- {[key: string]: string}
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn str
- Amazon Resource Name (ARN) of the collection group.
- capacity_
limits Sequence[ServerlessCollection Group Capacity Limit Args] - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - created_
date str - Date the collection group was created.
- description str
- Description of the collection group.
- name str
- Name of the collection group.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- standby_
replicas str Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- Mapping[str, str]
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the collection group.
- capacity
Limits List<Property Map> - Configuration block for the collection group's indexing and search capacity limits. See
capacityLimitsbelow for details. - created
Date String - Date the collection group was created.
- description String
- Description of the collection group.
- name String
- Name of the collection group.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- standby
Replicas String Indicates whether standby replicas should be used for collections in this group. Valid values are
ENABLEDandDISABLED.The following arguments are optional:
- Map<String>
- A map of tags to assign to the collection group. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
Supporting Types
ServerlessCollectionGroupCapacityLimit, ServerlessCollectionGroupCapacityLimitArgs
- Max
Indexing doubleCapacity In Ocu - Maximum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- Max
Search doubleCapacity In Ocu - Maximum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- Min
Indexing doubleCapacity In Ocu - Minimum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- Min
Search doubleCapacity In Ocu - Minimum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- Max
Indexing float64Capacity In Ocu - Maximum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- Max
Search float64Capacity In Ocu - Maximum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- Min
Indexing float64Capacity In Ocu - Minimum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- Min
Search float64Capacity In Ocu - Minimum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max
Indexing DoubleCapacity In Ocu - Maximum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max
Search DoubleCapacity In Ocu - Maximum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min
Indexing DoubleCapacity In Ocu - Minimum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min
Search DoubleCapacity In Ocu - Minimum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max
Indexing numberCapacity In Ocu - Maximum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max
Search numberCapacity In Ocu - Maximum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min
Indexing numberCapacity In Ocu - Minimum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min
Search numberCapacity In Ocu - Minimum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max_
indexing_ floatcapacity_ in_ ocu - Maximum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max_
search_ floatcapacity_ in_ ocu - Maximum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min_
indexing_ floatcapacity_ in_ ocu - Minimum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min_
search_ floatcapacity_ in_ ocu - Minimum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max
Indexing NumberCapacity In Ocu - Maximum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- max
Search NumberCapacity In Ocu - Maximum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min
Indexing NumberCapacity In Ocu - Minimum indexing capacity, in OpenSearch Compute Units (OCUs), for the collection group.
- min
Search NumberCapacity In Ocu - Minimum search capacity, in OpenSearch Compute Units (OCUs), for the collection group.
Import
Identity Schema
Required
id(String) Unique identifier for the collection group.
Optional
accountId(String) AWS Account where this resource is managed.region(String) Region where this resource is managed.
Using pulumi import, import OpenSearch Serverless Collection Group using the id. For example:
$ pulumi import aws:opensearch/serverlessCollectionGroup:ServerlessCollectionGroup example example-group-id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Thursday, Apr 30, 2026 by Pulumi
