ModifyDBClusterEndpointMessage

public struct ModifyDBClusterEndpointMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The identifier of the endpoint to modify. This parameter is stored as a lowercase string.

    Declaration

    Swift

    public let dBClusterEndpointIdentifier: String
  • The type of the endpoint. One of: READER, WRITER, ANY.

    Declaration

    Swift

    public let endpointType: String?
  • 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.

    Declaration

    Swift

    public let excludedMembers: [String]?
  • List of DB instance identifiers that are part of the custom endpoint group.

    Declaration

    Swift

    public let staticMembers: [String]?
  • Undocumented

    Declaration

    Swift

    public init(dBClusterEndpointIdentifier: String, endpointType: String? = nil, excludedMembers: [String]? = nil, staticMembers: [String]? = nil)