ListConnectorEntitiesRequest

public struct ListConnectorEntitiesRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the connector profile. The name is unique for each ConnectorProfile in the AWS account, and is used to query the downstream connector.

    Declaration

    Swift

    public let connectorProfileName: String?
  • The type of connector, such as Salesforce, Amplitude, and so on.

    Declaration

    Swift

    public let connectorType: ConnectorType?
  • This optional parameter is specific to connector implementation. Some connectors support multiple levels or categories of entities. You can find out the list of roots for such providers by sending a request without the entitiesPath parameter. If the connector supports entities at different roots, this initial request returns the list of roots. Otherwise, this request returns all entities supported by the provider.

    Declaration

    Swift

    public let entitiesPath: String?
  • Undocumented

    Declaration

    Swift

    public init(connectorProfileName: String? = nil, connectorType: ConnectorType? = nil, entitiesPath: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws