1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package signer
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/signer/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Returns information on a specific signing profile.
15func (c *Client) GetSigningProfile(ctx context.Context, params *GetSigningProfileInput, optFns ...func(*Options)) (*GetSigningProfileOutput, error) {
16	if params == nil {
17		params = &GetSigningProfileInput{}
18	}
19
20	result, metadata, err := c.invokeOperation(ctx, "GetSigningProfile", params, optFns, addOperationGetSigningProfileMiddlewares)
21	if err != nil {
22		return nil, err
23	}
24
25	out := result.(*GetSigningProfileOutput)
26	out.ResultMetadata = metadata
27	return out, nil
28}
29
30type GetSigningProfileInput struct {
31
32	// The name of the target signing profile.
33	//
34	// This member is required.
35	ProfileName *string
36
37	// The AWS account ID of the profile owner.
38	ProfileOwner *string
39}
40
41type GetSigningProfileOutput struct {
42
43	// The Amazon Resource Name (ARN) for the signing profile.
44	Arn *string
45
46	// A list of overrides applied by the target signing profile for signing
47	// operations.
48	Overrides *types.SigningPlatformOverrides
49
50	// A human-readable name for the signing platform associated with the signing
51	// profile.
52	PlatformDisplayName *string
53
54	// The ID of the platform that is used by the target signing profile.
55	PlatformId *string
56
57	// The name of the target signing profile.
58	ProfileName *string
59
60	// The current version of the signing profile.
61	ProfileVersion *string
62
63	// The signing profile ARN, including the profile version.
64	ProfileVersionArn *string
65
66	// Revocation information for a signing profile.
67	RevocationRecord *types.SigningProfileRevocationRecord
68
69	// The validity period for a signing job.
70	SignatureValidityPeriod *types.SignatureValidityPeriod
71
72	// The ARN of the certificate that the target profile uses for signing operations.
73	SigningMaterial *types.SigningMaterial
74
75	// A map of key-value pairs for signing operations that is attached to the target
76	// signing profile.
77	SigningParameters map[string]string
78
79	// The status of the target signing profile.
80	Status types.SigningProfileStatus
81
82	// Reason for the status of the target signing profile.
83	StatusReason *string
84
85	// A list of tags associated with the signing profile.
86	Tags map[string]string
87
88	// Metadata pertaining to the operation's result.
89	ResultMetadata middleware.Metadata
90}
91
92func addOperationGetSigningProfileMiddlewares(stack *middleware.Stack, options Options) (err error) {
93	err = stack.Serialize.Add(&awsRestjson1_serializeOpGetSigningProfile{}, middleware.After)
94	if err != nil {
95		return err
96	}
97	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpGetSigningProfile{}, middleware.After)
98	if err != nil {
99		return err
100	}
101	if err = addSetLoggerMiddleware(stack, options); err != nil {
102		return err
103	}
104	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
105		return err
106	}
107	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
108		return err
109	}
110	if err = addResolveEndpointMiddleware(stack, options); err != nil {
111		return err
112	}
113	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
114		return err
115	}
116	if err = addRetryMiddlewares(stack, options); err != nil {
117		return err
118	}
119	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
120		return err
121	}
122	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
123		return err
124	}
125	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
126		return err
127	}
128	if err = addClientUserAgent(stack); err != nil {
129		return err
130	}
131	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
132		return err
133	}
134	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
135		return err
136	}
137	if err = addOpGetSigningProfileValidationMiddleware(stack); err != nil {
138		return err
139	}
140	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetSigningProfile(options.Region), middleware.Before); err != nil {
141		return err
142	}
143	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
144		return err
145	}
146	if err = addResponseErrorMiddleware(stack); err != nil {
147		return err
148	}
149	if err = addRequestResponseLogging(stack, options); err != nil {
150		return err
151	}
152	return nil
153}
154
155func newServiceMetadataMiddleware_opGetSigningProfile(region string) *awsmiddleware.RegisterServiceMetadata {
156	return &awsmiddleware.RegisterServiceMetadata{
157		Region:        region,
158		ServiceID:     ServiceID,
159		SigningName:   "signer",
160		OperationName: "GetSigningProfile",
161	}
162}
163