// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package appconfig 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 GetConfigurationProfileInput struct { _ struct{} `type:"structure"` // The ID of the application that includes the configuration profile you want // to get. // // ApplicationId is a required field ApplicationId *string `location:"uri" locationName:"ApplicationId" type:"string" required:"true"` // The ID of the configuration profile you want to get. // // ConfigurationProfileId is a required field ConfigurationProfileId *string `location:"uri" locationName:"ConfigurationProfileId" type:"string" required:"true"` } // String returns the string representation func (s GetConfigurationProfileInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *GetConfigurationProfileInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "GetConfigurationProfileInput"} if s.ApplicationId == nil { invalidParams.Add(aws.NewErrParamRequired("ApplicationId")) } if s.ConfigurationProfileId == nil { invalidParams.Add(aws.NewErrParamRequired("ConfigurationProfileId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetConfigurationProfileInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.ApplicationId != nil { v := *s.ApplicationId metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "ApplicationId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.ConfigurationProfileId != nil { v := *s.ConfigurationProfileId metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "ConfigurationProfileId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } type GetConfigurationProfileOutput struct { _ struct{} `type:"structure"` // The application ID. ApplicationId *string `type:"string"` // The configuration profile description. Description *string `type:"string"` // The configuration profile ID. Id *string `type:"string"` // The URI location of the configuration. LocationUri *string `min:"1" type:"string"` // The name of the configuration profile. Name *string `min:"1" type:"string"` // The ARN of an IAM role with permission to access the configuration at the // specified LocationUri. RetrievalRoleArn *string `min:"20" type:"string"` // A list of methods for validating the configuration. Validators []Validator `type:"list"` } // String returns the string representation func (s GetConfigurationProfileOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetConfigurationProfileOutput) MarshalFields(e protocol.FieldEncoder) error { if s.ApplicationId != nil { v := *s.ApplicationId metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "ApplicationId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.Description != nil { v := *s.Description metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "Description", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.Id != nil { v := *s.Id metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "Id", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.LocationUri != nil { v := *s.LocationUri metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "LocationUri", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.Name != nil { v := *s.Name metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "Name", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.RetrievalRoleArn != nil { v := *s.RetrievalRoleArn metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "RetrievalRoleArn", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.Validators != nil { v := s.Validators metadata := protocol.Metadata{} ls0 := e.List(protocol.BodyTarget, "Validators", metadata) ls0.Start() for _, v1 := range v { ls0.ListAddFields(v1) } ls0.End() } return nil } const opGetConfigurationProfile = "GetConfigurationProfile" // GetConfigurationProfileRequest returns a request value for making API operation for // Amazon AppConfig. // // Retrieve information about a configuration profile. // // // Example sending a request using GetConfigurationProfileRequest. // req := client.GetConfigurationProfileRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetConfigurationProfile func (c *Client) GetConfigurationProfileRequest(input *GetConfigurationProfileInput) GetConfigurationProfileRequest { op := &aws.Operation{ Name: opGetConfigurationProfile, HTTPMethod: "GET", HTTPPath: "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", } if input == nil { input = &GetConfigurationProfileInput{} } req := c.newRequest(op, input, &GetConfigurationProfileOutput{}) return GetConfigurationProfileRequest{Request: req, Input: input, Copy: c.GetConfigurationProfileRequest} } // GetConfigurationProfileRequest is the request type for the // GetConfigurationProfile API operation. type GetConfigurationProfileRequest struct { *aws.Request Input *GetConfigurationProfileInput Copy func(*GetConfigurationProfileInput) GetConfigurationProfileRequest } // Send marshals and sends the GetConfigurationProfile API request. func (r GetConfigurationProfileRequest) Send(ctx context.Context) (*GetConfigurationProfileResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &GetConfigurationProfileResponse{ GetConfigurationProfileOutput: r.Request.Data.(*GetConfigurationProfileOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // GetConfigurationProfileResponse is the response type for the // GetConfigurationProfile API operation. type GetConfigurationProfileResponse struct { *GetConfigurationProfileOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // GetConfigurationProfile request. func (r *GetConfigurationProfileResponse) SDKResponseMetdata() *aws.Response { return r.response }