interface CfnIndexMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResourceExplorer2.CfnIndexMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresourceexplorer2#CfnIndexMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.resourceexplorer2.CfnIndexMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_resourceexplorer2.CfnIndexMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resourceexplorer2 » 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 { aws_resourceexplorer2 as resourceexplorer2 } from '@aws-cdk/cfn-property-mixins';
const cfnIndexMixinProps: resourceexplorer2.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