Show / Hide Table of Contents

Class ClusterEndpointArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ClusterEndpointArgs
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 ClusterEndpointArgs : ResourceArgs

Constructors

View Source

ClusterEndpointArgs()

Declaration
public ClusterEndpointArgs()

Properties

View Source

ClusterEndpointIdentifier

The identifier to use for the new endpoint. This parameter is stored as a lowercase string.

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

ClusterIdentifier

The cluster identifier.

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

CustomEndpointType

The type of the endpoint. One of: READER , ANY .

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

ExcludedMembers

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty. Conflicts with static_members.

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

StaticMembers

List of DB instance identifiers that are part of the custom endpoint group. Conflicts with excluded_members.

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

Tags

Key-value map of resource tags

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