1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package appflow
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/appflow/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Creates a new connector profile associated with your AWS account. There is a
15// soft quota of 100 connector profiles per AWS account. If you need more connector
16// profiles than this quota allows, you can submit a request to the Amazon AppFlow
17// team through the Amazon AppFlow support channel.
18func (c *Client) CreateConnectorProfile(ctx context.Context, params *CreateConnectorProfileInput, optFns ...func(*Options)) (*CreateConnectorProfileOutput, error) {
19	if params == nil {
20		params = &CreateConnectorProfileInput{}
21	}
22
23	result, metadata, err := c.invokeOperation(ctx, "CreateConnectorProfile", params, optFns, addOperationCreateConnectorProfileMiddlewares)
24	if err != nil {
25		return nil, err
26	}
27
28	out := result.(*CreateConnectorProfileOutput)
29	out.ResultMetadata = metadata
30	return out, nil
31}
32
33type CreateConnectorProfileInput struct {
34
35	// Indicates the connection mode and specifies whether it is public or private.
36	// Private flows use AWS PrivateLink to route data over AWS infrastructure without
37	// exposing it to the public internet.
38	//
39	// This member is required.
40	ConnectionMode types.ConnectionMode
41
42	// Defines the connector-specific configuration and credentials.
43	//
44	// This member is required.
45	ConnectorProfileConfig *types.ConnectorProfileConfig
46
47	// The name of the connector profile. The name is unique for each ConnectorProfile
48	// in your AWS account.
49	//
50	// This member is required.
51	ConnectorProfileName *string
52
53	// The type of connector, such as Salesforce, Amplitude, and so on.
54	//
55	// This member is required.
56	ConnectorType types.ConnectorType
57
58	// The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you
59	// provide for encryption. This is required if you do not want to use the Amazon
60	// AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses
61	// the Amazon AppFlow-managed KMS key.
62	KmsArn *string
63}
64
65type CreateConnectorProfileOutput struct {
66
67	// The Amazon Resource Name (ARN) of the connector profile.
68	ConnectorProfileArn *string
69
70	// Metadata pertaining to the operation's result.
71	ResultMetadata middleware.Metadata
72}
73
74func addOperationCreateConnectorProfileMiddlewares(stack *middleware.Stack, options Options) (err error) {
75	err = stack.Serialize.Add(&awsRestjson1_serializeOpCreateConnectorProfile{}, middleware.After)
76	if err != nil {
77		return err
78	}
79	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpCreateConnectorProfile{}, middleware.After)
80	if err != nil {
81		return err
82	}
83	if err = addSetLoggerMiddleware(stack, options); err != nil {
84		return err
85	}
86	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
87		return err
88	}
89	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
90		return err
91	}
92	if err = addResolveEndpointMiddleware(stack, options); err != nil {
93		return err
94	}
95	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
96		return err
97	}
98	if err = addRetryMiddlewares(stack, options); err != nil {
99		return err
100	}
101	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
102		return err
103	}
104	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
105		return err
106	}
107	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
108		return err
109	}
110	if err = addClientUserAgent(stack); err != nil {
111		return err
112	}
113	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
114		return err
115	}
116	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
117		return err
118	}
119	if err = addOpCreateConnectorProfileValidationMiddleware(stack); err != nil {
120		return err
121	}
122	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCreateConnectorProfile(options.Region), middleware.Before); err != nil {
123		return err
124	}
125	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
126		return err
127	}
128	if err = addResponseErrorMiddleware(stack); err != nil {
129		return err
130	}
131	if err = addRequestResponseLogging(stack, options); err != nil {
132		return err
133	}
134	return nil
135}
136
137func newServiceMetadataMiddleware_opCreateConnectorProfile(region string) *awsmiddleware.RegisterServiceMetadata {
138	return &awsmiddleware.RegisterServiceMetadata{
139		Region:        region,
140		ServiceID:     ServiceID,
141		SigningName:   "appflow",
142		OperationName: "CreateConnectorProfile",
143	}
144}
145