CreateDBClusterEndpointMessage

public struct CreateDBClusterEndpointMessage : AWSShape

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

    public let dBClusterEndpointIdentifier: String
  • The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

    Declaration

    Swift

    public let dBClusterIdentifier: 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]?
  • The tags to be assigned to the Amazon RDS resource.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

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