Class InstanceEngineBindOptions
The options passed to IInstanceEngine.bind.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class InstanceEngineBindOptions : IInstanceEngineBindOptions
Syntax (vb)
Public Class InstanceEngineBindOptions Implements IInstanceEngineBindOptions
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;
using Amazon.CDK.Interfaces.IAM;
OptionGroup optionGroup;
IRoleRef roleRef;
var instanceEngineBindOptions = new InstanceEngineBindOptions {
Domain = "domain",
OptionGroup = optionGroup,
S3ExportRole = roleRef,
S3ImportRole = roleRef,
Timezone = "timezone"
};
Synopsis
Constructors
| InstanceEngineBindOptions() | The options passed to |
Properties
| Domain | The Active Directory directory ID to create the DB instance in. |
| OptionGroup | The option group of the database. |
| S3ExportRole | The role used for S3 exporting. |
| S3ImportRole | The role used for S3 importing. |
| Timezone | The timezone of the database, set by the customer. |
Constructors
InstanceEngineBindOptions()
The options passed to IInstanceEngine.bind.
public InstanceEngineBindOptions()
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;
using Amazon.CDK.Interfaces.IAM;
OptionGroup optionGroup;
IRoleRef roleRef;
var instanceEngineBindOptions = new InstanceEngineBindOptions {
Domain = "domain",
OptionGroup = optionGroup,
S3ExportRole = roleRef,
S3ImportRole = roleRef,
Timezone = "timezone"
};
Properties
Domain
The Active Directory directory ID to create the DB instance in.
public string? Domain { get; set; }
Property Value
Remarks
Default: - none (it's an optional field)
OptionGroup
The option group of the database.
public IOptionGroup? OptionGroup { get; set; }
Property Value
Remarks
Default: - none
S3ExportRole
The role used for S3 exporting.
public IRoleRef? S3ExportRole { get; set; }
Property Value
Remarks
Default: - none
S3ImportRole
The role used for S3 importing.
public IRoleRef? S3ImportRole { get; set; }
Property Value
Remarks
Default: - none
Timezone
The timezone of the database, set by the customer.
public string? Timezone { get; set; }
Property Value
Remarks
Default: - none (it's an optional field)