github.com/aavshr/aws-sdk-go@v1.41.3/service/sagemakerfeaturestoreruntime/sagemakerfeaturestoreruntimeiface/interface.go (about)

     1  // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
     2  
     3  // Package sagemakerfeaturestoreruntimeiface provides an interface to enable mocking the Amazon SageMaker Feature Store Runtime service client
     4  // for testing your code.
     5  //
     6  // It is important to note that this interface will have breaking changes
     7  // when the service model is updated and adds new API operations, paginators,
     8  // and waiters.
     9  package sagemakerfeaturestoreruntimeiface
    10  
    11  import (
    12  	"github.com/aavshr/aws-sdk-go/aws"
    13  	"github.com/aavshr/aws-sdk-go/aws/request"
    14  	"github.com/aavshr/aws-sdk-go/service/sagemakerfeaturestoreruntime"
    15  )
    16  
    17  // SageMakerFeatureStoreRuntimeAPI provides an interface to enable mocking the
    18  // sagemakerfeaturestoreruntime.SageMakerFeatureStoreRuntime service client's API operation,
    19  // paginators, and waiters. This make unit testing your code that calls out
    20  // to the SDK's service client's calls easier.
    21  //
    22  // The best way to use this interface is so the SDK's service client's calls
    23  // can be stubbed out for unit testing your code with the SDK without needing
    24  // to inject custom request handlers into the SDK's request pipeline.
    25  //
    26  //    // myFunc uses an SDK service client to make a request to
    27  //    // Amazon SageMaker Feature Store Runtime.
    28  //    func myFunc(svc sagemakerfeaturestoreruntimeiface.SageMakerFeatureStoreRuntimeAPI) bool {
    29  //        // Make svc.BatchGetRecord request
    30  //    }
    31  //
    32  //    func main() {
    33  //        sess := session.New()
    34  //        svc := sagemakerfeaturestoreruntime.New(sess)
    35  //
    36  //        myFunc(svc)
    37  //    }
    38  //
    39  // In your _test.go file:
    40  //
    41  //    // Define a mock struct to be used in your unit tests of myFunc.
    42  //    type mockSageMakerFeatureStoreRuntimeClient struct {
    43  //        sagemakerfeaturestoreruntimeiface.SageMakerFeatureStoreRuntimeAPI
    44  //    }
    45  //    func (m *mockSageMakerFeatureStoreRuntimeClient) BatchGetRecord(input *sagemakerfeaturestoreruntime.BatchGetRecordInput) (*sagemakerfeaturestoreruntime.BatchGetRecordOutput, error) {
    46  //        // mock response/functionality
    47  //    }
    48  //
    49  //    func TestMyFunc(t *testing.T) {
    50  //        // Setup Test
    51  //        mockSvc := &mockSageMakerFeatureStoreRuntimeClient{}
    52  //
    53  //        myfunc(mockSvc)
    54  //
    55  //        // Verify myFunc's functionality
    56  //    }
    57  //
    58  // It is important to note that this interface will have breaking changes
    59  // when the service model is updated and adds new API operations, paginators,
    60  // and waiters. Its suggested to use the pattern above for testing, or using
    61  // tooling to generate mocks to satisfy the interfaces.
    62  type SageMakerFeatureStoreRuntimeAPI interface {
    63  	BatchGetRecord(*sagemakerfeaturestoreruntime.BatchGetRecordInput) (*sagemakerfeaturestoreruntime.BatchGetRecordOutput, error)
    64  	BatchGetRecordWithContext(aws.Context, *sagemakerfeaturestoreruntime.BatchGetRecordInput, ...request.Option) (*sagemakerfeaturestoreruntime.BatchGetRecordOutput, error)
    65  	BatchGetRecordRequest(*sagemakerfeaturestoreruntime.BatchGetRecordInput) (*request.Request, *sagemakerfeaturestoreruntime.BatchGetRecordOutput)
    66  
    67  	DeleteRecord(*sagemakerfeaturestoreruntime.DeleteRecordInput) (*sagemakerfeaturestoreruntime.DeleteRecordOutput, error)
    68  	DeleteRecordWithContext(aws.Context, *sagemakerfeaturestoreruntime.DeleteRecordInput, ...request.Option) (*sagemakerfeaturestoreruntime.DeleteRecordOutput, error)
    69  	DeleteRecordRequest(*sagemakerfeaturestoreruntime.DeleteRecordInput) (*request.Request, *sagemakerfeaturestoreruntime.DeleteRecordOutput)
    70  
    71  	GetRecord(*sagemakerfeaturestoreruntime.GetRecordInput) (*sagemakerfeaturestoreruntime.GetRecordOutput, error)
    72  	GetRecordWithContext(aws.Context, *sagemakerfeaturestoreruntime.GetRecordInput, ...request.Option) (*sagemakerfeaturestoreruntime.GetRecordOutput, error)
    73  	GetRecordRequest(*sagemakerfeaturestoreruntime.GetRecordInput) (*request.Request, *sagemakerfeaturestoreruntime.GetRecordOutput)
    74  
    75  	PutRecord(*sagemakerfeaturestoreruntime.PutRecordInput) (*sagemakerfeaturestoreruntime.PutRecordOutput, error)
    76  	PutRecordWithContext(aws.Context, *sagemakerfeaturestoreruntime.PutRecordInput, ...request.Option) (*sagemakerfeaturestoreruntime.PutRecordOutput, error)
    77  	PutRecordRequest(*sagemakerfeaturestoreruntime.PutRecordInput) (*request.Request, *sagemakerfeaturestoreruntime.PutRecordOutput)
    78  }
    79  
    80  var _ SageMakerFeatureStoreRuntimeAPI = (*sagemakerfeaturestoreruntime.SageMakerFeatureStoreRuntime)(nil)