Class OptionGroup
An option group.
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class OptionGroup : Resource, IOptionGroup, IResource, IConstruct, IConstruct, IDependable
Syntax (vb)
Public Class OptionGroup
Inherits Resource
Implements IOptionGroup, IResource, IConstruct, IConstruct, IDependable
Synopsis
Constructors
OptionGroup(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
OptionGroup(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
OptionGroup(Construct, String, IOptionGroupProps) |
Properties
OptionConnections | The connections object for the options. |
OptionGroupName | The name of the option group. |
Methods
AddConfiguration(IOptionConfiguration) | Adds a configuration to this OptionGroup. |
FromOptionGroupName(Construct, String, String) | Import an existing option group. |
Constructors
OptionGroup(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected OptionGroup(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
OptionGroup(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected OptionGroup(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
OptionGroup(Construct, String, IOptionGroupProps)
public OptionGroup(Construct scope, string id, IOptionGroupProps props)
Parameters
- scope Constructs.Construct
- id System.String
- props IOptionGroupProps
Properties
OptionConnections
The connections object for the options.
public virtual IDictionary<string, Connections_> OptionConnections { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, Connections_>
OptionGroupName
The name of the option group.
public virtual string OptionGroupName { get; }
Property Value
System.String
Methods
AddConfiguration(IOptionConfiguration)
Adds a configuration to this OptionGroup.
public virtual bool AddConfiguration(IOptionConfiguration configuration)
Parameters
- configuration IOptionConfiguration
Returns
System.Boolean
Remarks
This method is a no-op for an imported OptionGroup.
FromOptionGroupName(Construct, String, String)
Import an existing option group.
public static IOptionGroup FromOptionGroupName(Construct scope, string id, string optionGroupName)
Parameters
- scope Constructs.Construct
- id System.String
- optionGroupName System.String
Returns