aws-cdk-lib.aws_opsworks.CfnApp.DataSourceProperty

interface DataSourceProperty

LanguageType name
.NETAmazon.CDK.AWS.OpsWorks.CfnApp.DataSourceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsopsworks#CfnApp_DataSourceProperty
Javasoftware.amazon.awscdk.services.opsworks.CfnApp.DataSourceProperty
Pythonaws_cdk.aws_opsworks.CfnApp.DataSourceProperty
TypeScript aws-cdk-lib » aws_opsworks » CfnApp » DataSourceProperty

Describes an app's data source.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opsworks as opsworks } from 'aws-cdk-lib';
const dataSourceProperty: opsworks.CfnApp.DataSourceProperty = {
  arn: 'arn',
  databaseName: 'databaseName',
  type: 'type',
};

Properties

NameTypeDescription
arn?stringThe data source's ARN.
databaseName?stringThe database name.
type?stringThe 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 .