interface CfnSqlHaStandbyDetectedInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnSqlHaStandbyDetectedInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnSqlHaStandbyDetectedInstanceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnSqlHaStandbyDetectedInstanceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnSqlHaStandbyDetectedInstanceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnSqlHaStandbyDetectedInstanceMixinProps |
Properties for CfnSqlHaStandbyDetectedInstancePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnSqlHaStandbyDetectedInstanceMixinProps: ec2.CfnSqlHaStandbyDetectedInstanceMixinProps = {
instanceId: 'instanceId',
sqlServerCredentials: 'sqlServerCredentials',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The ID of the EC2 instance to enable for SQL Server high availability standby detection. |
| sql | string | The ARN of the AWS Secrets Manager secret containing SQL Server access credentials to the EC2 instance. |
instanceId?
Type:
string
(optional)
The ID of the EC2 instance to enable for SQL Server high availability standby detection.
sqlServerCredentials?
Type:
string
(optional)
The ARN of the AWS Secrets Manager secret containing SQL Server access credentials to the EC2 instance.
If not specified, AWS Systems Manager agent will use default local user credentials.

.NET
Go
Java
Python
TypeScript