Skip to content

Commit

Permalink
add costandusagereport client
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmchuck committed Feb 2, 2019
1 parent f1c24b3 commit 91a559f
Show file tree
Hide file tree
Showing 7 changed files with 973 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aws/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import (
"github.com/aws/aws-sdk-go/service/cognitoidentity"
"github.com/aws/aws-sdk-go/service/cognitoidentityprovider"
"github.com/aws/aws-sdk-go/service/configservice"
"github.com/aws/aws-sdk-go/service/costandusagereportservice"
"github.com/aws/aws-sdk-go/service/databasemigrationservice"
"github.com/aws/aws-sdk-go/service/datapipeline"
"github.com/aws/aws-sdk-go/service/datasync"
Expand Down Expand Up @@ -215,6 +216,7 @@ type AWSClient struct {
cognitoconn *cognitoidentity.CognitoIdentity
cognitoidpconn *cognitoidentityprovider.CognitoIdentityProvider
configconn *configservice.ConfigService
costandusagereportconn *costandusagereportservice.CostandUsageReportService
datapipelineconn *datapipeline.DataPipeline
datasyncconn *datasync.DataSync
daxconn *dax.DAX
Expand Down Expand Up @@ -576,6 +578,7 @@ func (c *Config) Client() (interface{}, error) {
client.cognitoconn = cognitoidentity.New(sess)
client.cognitoidpconn = cognitoidentityprovider.New(sess)
client.configconn = configservice.New(sess)
client.costandusagereportconn = costandusagereportservice.New(sess)
client.datapipelineconn = datapipeline.New(sess)
client.datasyncconn = datasync.New(sess)
client.daxconn = dax.New(awsDynamoSess)
Expand Down
Loading

0 comments on commit 91a559f

Please sign in to comment.