interface DataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Location.CfnPlaceIndexPropsMixin.DataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslocation#CfnPlaceIndexPropsMixin_DataSourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.location.CfnPlaceIndexPropsMixin.DataSourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_location.CfnPlaceIndexPropsMixin.DataSourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_location » 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 { aws_location as location } from '@aws-cdk/cfn-property-mixins';
const dataSourceConfigurationProperty: location.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