Class InstanceEngineFeatures
Represents Database Engine features.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class InstanceEngineFeatures : IInstanceEngineFeatures
Syntax (vb)
Public Class InstanceEngineFeatures Implements IInstanceEngineFeatures
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var instanceEngineFeatures = new InstanceEngineFeatures {
S3Export = "s3Export",
S3Import = "s3Import"
};
Synopsis
Constructors
InstanceEngineFeatures() | Represents Database Engine features. |
Properties
S3Export | Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with. |
S3Import | Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with. |
Constructors
InstanceEngineFeatures()
Represents Database Engine features.
public InstanceEngineFeatures()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var instanceEngineFeatures = new InstanceEngineFeatures {
S3Export = "s3Export",
S3Import = "s3Import"
};
Properties
S3Export
Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.
public string? S3Export { get; set; }
Property Value
Remarks
Default: - no s3Export feature name
S3Import
Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with.
public string? S3Import { get; set; }
Property Value
Remarks
Default: - no s3Import feature name