forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.go
33 lines (20 loc) · 1.2 KB
/
interface.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package ssmiface provides an interface for the Amazon Simple Systems Management Service.
package ssmiface
import (
"github.com/aws/aws-sdk-go/service/ssm"
)
// SSMAPI is the interface type for ssm.SSM.
type SSMAPI interface {
CreateAssociation(*ssm.CreateAssociationInput) (*ssm.CreateAssociationOutput, error)
CreateAssociationBatch(*ssm.CreateAssociationBatchInput) (*ssm.CreateAssociationBatchOutput, error)
CreateDocument(*ssm.CreateDocumentInput) (*ssm.CreateDocumentOutput, error)
DeleteAssociation(*ssm.DeleteAssociationInput) (*ssm.DeleteAssociationOutput, error)
DeleteDocument(*ssm.DeleteDocumentInput) (*ssm.DeleteDocumentOutput, error)
DescribeAssociation(*ssm.DescribeAssociationInput) (*ssm.DescribeAssociationOutput, error)
DescribeDocument(*ssm.DescribeDocumentInput) (*ssm.DescribeDocumentOutput, error)
GetDocument(*ssm.GetDocumentInput) (*ssm.GetDocumentOutput, error)
ListAssociations(*ssm.ListAssociationsInput) (*ssm.ListAssociationsOutput, error)
ListDocuments(*ssm.ListDocumentsInput) (*ssm.ListDocumentsOutput, error)
UpdateAssociationStatus(*ssm.UpdateAssociationStatusInput) (*ssm.UpdateAssociationStatusOutput, error)
}