Skip to content

Commit

Permalink
Merge pull request #7433 from jbmchuck/cur-sdk-add
Browse files Browse the repository at this point in the history
Add costandusagereportservice client
  • Loading branch information
bflad authored Feb 4, 2019
2 parents 7bae8d4 + 91a559f commit 03eb009
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 @@ -216,6 +217,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 @@ -578,6 +580,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 03eb009

Please sign in to comment.