interface DataSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins.CfnAppPropsMixin.DataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopsworks/mixins#CfnAppPropsMixin_DataSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.opsworks.mixins.CfnAppPropsMixin.DataSourceProperty |
Python | aws_cdk.mixins_preview.aws_opsworks.mixins.CfnAppPropsMixin.DataSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opsworks » mixins » CfnAppPropsMixin » DataSourceProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opsworks_mixins } from '@aws-cdk/mixins-preview/aws-opsworks';
const dataSourceProperty: opsworks_mixins.CfnAppPropsMixin.DataSourceProperty = {
arn: 'arn',
databaseName: 'databaseName',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The data source's ARN. |
| database | string | The database name. |
| type? | string | The data source's type, AutoSelectOpsworksMysqlInstance , OpsworksMysqlInstance , RdsDbInstance , or None . |
arn?
Type:
string
(optional)
The data source's ARN.
databaseName?
Type:
string
(optional)
The database name.
type?
Type:
string
(optional)
The data source's type, AutoSelectOpsworksMysqlInstance , OpsworksMysqlInstance , RdsDbInstance , or None .

.NET
Go
Java
Python
TypeScript