// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package securityhub import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" ) type GetMasterAccountInput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s GetMasterAccountInput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetMasterAccountInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) return nil } type GetMasterAccountOutput struct { _ struct{} `type:"structure"` // A list of details about the Security Hub master account for the current member // account. Master *Invitation `type:"structure"` } // String returns the string representation func (s GetMasterAccountOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetMasterAccountOutput) MarshalFields(e protocol.FieldEncoder) error { if s.Master != nil { v := s.Master metadata := protocol.Metadata{} e.SetFields(protocol.BodyTarget, "Master", v, metadata) } return nil } const opGetMasterAccount = "GetMasterAccount" // GetMasterAccountRequest returns a request value for making API operation for // AWS SecurityHub. // // Provides the details for the Security Hub master account for the current // member account. // // // Example sending a request using GetMasterAccountRequest. // req := client.GetMasterAccountRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetMasterAccount func (c *Client) GetMasterAccountRequest(input *GetMasterAccountInput) GetMasterAccountRequest { op := &aws.Operation{ Name: opGetMasterAccount, HTTPMethod: "GET", HTTPPath: "/master", } if input == nil { input = &GetMasterAccountInput{} } req := c.newRequest(op, input, &GetMasterAccountOutput{}) return GetMasterAccountRequest{Request: req, Input: input, Copy: c.GetMasterAccountRequest} } // GetMasterAccountRequest is the request type for the // GetMasterAccount API operation. type GetMasterAccountRequest struct { *aws.Request Input *GetMasterAccountInput Copy func(*GetMasterAccountInput) GetMasterAccountRequest } // Send marshals and sends the GetMasterAccount API request. func (r GetMasterAccountRequest) Send(ctx context.Context) (*GetMasterAccountResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &GetMasterAccountResponse{ GetMasterAccountOutput: r.Request.Data.(*GetMasterAccountOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // GetMasterAccountResponse is the response type for the // GetMasterAccount API operation. type GetMasterAccountResponse struct { *GetMasterAccountOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // GetMasterAccount request. func (r *GetMasterAccountResponse) SDKResponseMetdata() *aws.Response { return r.response }