Show / Hide Table of Contents

Class InstanceEngineBindOptions

The options passed to IInstanceEngine.bind.

Inheritance
object
InstanceEngineBindOptions
Implements
IInstanceEngineBindOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 IInstanceEngine.bind.

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

string

Remarks

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

OptionGroup

The option group of the database.

public IOptionGroup? OptionGroup { get; set; }
Property Value

IOptionGroup

Remarks

Default: - none

S3ExportRole

The role used for S3 exporting.

public IRoleRef? S3ExportRole { get; set; }
Property Value

IRoleRef

Remarks

Default: - none

S3ImportRole

The role used for S3 importing.

public IRoleRef? S3ImportRole { get; set; }
Property Value

IRoleRef

Remarks

Default: - none

Timezone

The timezone of the database, set by the customer.

public string? Timezone { get; set; }
Property Value

string

Remarks

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

Implements

IInstanceEngineBindOptions
Back to top Generated by DocFX