interface DataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Location.Mixins.CfnPlaceIndexPropsMixin.DataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslocation/mixins#CfnPlaceIndexPropsMixin_DataSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.location.mixins.CfnPlaceIndexPropsMixin.DataSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_location.mixins.CfnPlaceIndexPropsMixin.DataSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_location » mixins » CfnPlaceIndexPropsMixin » DataSourceConfigurationProperty |
Specifies the data storage option requesting Places.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as location_mixins } from '@aws-cdk/mixins-preview/aws-location';
const dataSourceConfigurationProperty: location_mixins.CfnPlaceIndexPropsMixin.DataSourceConfigurationProperty = {
intendedUse: 'intendedUse',
};
Properties
| Name | Type | Description |
|---|---|---|
| intended | string | Specifies how the results of an operation will be stored by the caller. |
intendedUse?
Type:
string
(optional)
Specifies how the results of an operation will be stored by the caller.
Valid values include:
SingleUsespecifies that the results won't be stored.Storagespecifies that the result can be cached or stored in a database.
Default value: SingleUse

.NET
Go
Java
Python
TypeScript