Show / Hide Table of Contents

Interface IInstanceEngineBindOptions

The options passed to IInstanceEngine.bind.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IInstanceEngineBindOptions
Syntax (vb)
Public Interface 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.IAM;
            using Amazon.CDK.AWS.RDS;

            OptionGroup optionGroup;
            Role role;

            var instanceEngineBindOptions = new InstanceEngineBindOptions {
                Domain = "domain",
                OptionGroup = optionGroup,
                S3ExportRole = role,
                S3ImportRole = role,
                Timezone = "timezone"
            };

Synopsis

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.

Properties

Domain

The Active Directory directory ID to create the DB instance in.

string? Domain { get; }
Property Value

string

Remarks

Default: - none (it's an optional field)

OptionGroup

The option group of the database.

IOptionGroup? OptionGroup { get; }
Property Value

IOptionGroup

Remarks

Default: - none

S3ExportRole

The role used for S3 exporting.

IRole? S3ExportRole { get; }
Property Value

IRole

Remarks

Default: - none

S3ImportRole

The role used for S3 importing.

IRole? S3ImportRole { get; }
Property Value

IRole

Remarks

Default: - none

Timezone

The timezone of the database, set by the customer.

string? Timezone { get; }
Property Value

string

Remarks

Default: - none (it's an optional field)

Back to top Generated by DocFX