interface CfnIndexMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ResourceExplorer2.Mixins.CfnIndexMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsresourceexplorer2/mixins#CfnIndexMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.resourceexplorer2.mixins.CfnIndexMixinProps |
Python | aws_cdk.mixins_preview.aws_resourceexplorer2.mixins.CfnIndexMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_resourceexplorer2 » mixins » CfnIndexMixinProps |
Properties for CfnIndexPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as resourceexplorer2_mixins } from '@aws-cdk/mixins-preview/aws-resourceexplorer2';
const cfnIndexMixinProps: resourceexplorer2_mixins.CfnIndexMixinProps = {
tags: {
tagsKey: 'tags',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | { [string]: string } | The specified tags are attached to only the index created in this AWS Region . |
| type? | string | Specifies the type of the index in this Region. |
tags?
Type:
{ [string]: string }
(optional)
The specified tags are attached to only the index created in this AWS Region .
The tags don't attach to any of the resources listed in the index.
type?
Type:
string
(optional)
Specifies the type of the index in this Region.
For information about the aggregator index and how it differs from a local index, see Turning on cross-Region search by creating an aggregator index in the AWS Resource Explorer User Guide. .

.NET
Go
Java
Python
TypeScript