1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package kafka
4
5import (
6	"context"
7	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
8	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
9	"github.com/aws/aws-sdk-go-v2/service/kafka/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12	"time"
13)
14
15// Returns a description of this MSK configuration.
16func (c *Client) DescribeConfiguration(ctx context.Context, params *DescribeConfigurationInput, optFns ...func(*Options)) (*DescribeConfigurationOutput, error) {
17	if params == nil {
18		params = &DescribeConfigurationInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "DescribeConfiguration", params, optFns, addOperationDescribeConfigurationMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*DescribeConfigurationOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type DescribeConfigurationInput struct {
32
33	// The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and
34	// all of its revisions.
35	//
36	// This member is required.
37	Arn *string
38}
39
40type DescribeConfigurationOutput struct {
41
42	// The Amazon Resource Name (ARN) of the configuration.
43	Arn *string
44
45	// The time when the configuration was created.
46	CreationTime *time.Time
47
48	// The description of the configuration.
49	Description *string
50
51	// The versions of Apache Kafka with which you can use this MSK configuration.
52	KafkaVersions []string
53
54	// Latest revision of the configuration.
55	LatestRevision *types.ConfigurationRevision
56
57	// The name of the configuration.
58	Name *string
59
60	// The state of the configuration. The possible states are ACTIVE, DELETING, and
61	// DELETE_FAILED.
62	State types.ConfigurationState
63
64	// Metadata pertaining to the operation's result.
65	ResultMetadata middleware.Metadata
66}
67
68func addOperationDescribeConfigurationMiddlewares(stack *middleware.Stack, options Options) (err error) {
69	err = stack.Serialize.Add(&awsRestjson1_serializeOpDescribeConfiguration{}, middleware.After)
70	if err != nil {
71		return err
72	}
73	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpDescribeConfiguration{}, middleware.After)
74	if err != nil {
75		return err
76	}
77	if err = addSetLoggerMiddleware(stack, options); err != nil {
78		return err
79	}
80	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
81		return err
82	}
83	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
84		return err
85	}
86	if err = addResolveEndpointMiddleware(stack, options); err != nil {
87		return err
88	}
89	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
90		return err
91	}
92	if err = addRetryMiddlewares(stack, options); err != nil {
93		return err
94	}
95	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
96		return err
97	}
98	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
99		return err
100	}
101	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
102		return err
103	}
104	if err = addClientUserAgent(stack); err != nil {
105		return err
106	}
107	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
108		return err
109	}
110	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
111		return err
112	}
113	if err = addOpDescribeConfigurationValidationMiddleware(stack); err != nil {
114		return err
115	}
116	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDescribeConfiguration(options.Region), middleware.Before); err != nil {
117		return err
118	}
119	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
120		return err
121	}
122	if err = addResponseErrorMiddleware(stack); err != nil {
123		return err
124	}
125	if err = addRequestResponseLogging(stack, options); err != nil {
126		return err
127	}
128	return nil
129}
130
131func newServiceMetadataMiddleware_opDescribeConfiguration(region string) *awsmiddleware.RegisterServiceMetadata {
132	return &awsmiddleware.RegisterServiceMetadata{
133		Region:        region,
134		ServiceID:     ServiceID,
135		SigningName:   "kafka",
136		OperationName: "DescribeConfiguration",
137	}
138}
139