Show / Hide Table of Contents

Class OptionGroupArgs

Inheritance
System.Object
InputArgs
ResourceArgs
OptionGroupArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Rds
Assembly: Pulumi.Aws.dll
Syntax
public sealed class OptionGroupArgs : ResourceArgs

Constructors

View Source

OptionGroupArgs()

Declaration
public OptionGroupArgs()

Properties

View Source

EngineName

Specifies the name of the engine that this option group should be associated with.

Declaration
public Input<string> EngineName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MajorEngineVersion

Specifies the major version of the engine that this option group should be associated with.

Declaration
public Input<string> MajorEngineVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The Name of the setting.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NamePrefix

Creates a unique name beginning with the specified prefix. Conflicts with name. Must be lowercase, to match as it is stored in AWS.

Declaration
public Input<string> NamePrefix { get; set; }
Property Value
Type Description
Input<System.String>
View Source

OptionGroupDescription

The description of the option group. Defaults to "Managed by Pulumi".

Declaration
public Input<string> OptionGroupDescription { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Options

A list of Options to apply.

Declaration
public InputList<OptionGroupOptionArgs> Options { get; set; }
Property Value
Type Description
InputList<OptionGroupOptionArgs>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.