1// Code generated by smithy-go-codegen DO NOT EDIT. 2 3package ec2 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/smithy-go/middleware" 10 smithyhttp "github.com/aws/smithy-go/transport/http" 11) 12 13// Resets the default customer master key (CMK) for EBS encryption for your account 14// in this Region to the AWS managed CMK for EBS. After resetting the default CMK 15// to the AWS managed CMK, you can continue to encrypt by a customer managed CMK by 16// specifying it when you create the volume. For more information, see Amazon EBS 17// encryption 18// (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) in the 19// Amazon Elastic Compute Cloud User Guide. 20func (c *Client) ResetEbsDefaultKmsKeyId(ctx context.Context, params *ResetEbsDefaultKmsKeyIdInput, optFns ...func(*Options)) (*ResetEbsDefaultKmsKeyIdOutput, error) { 21 if params == nil { 22 params = &ResetEbsDefaultKmsKeyIdInput{} 23 } 24 25 result, metadata, err := c.invokeOperation(ctx, "ResetEbsDefaultKmsKeyId", params, optFns, addOperationResetEbsDefaultKmsKeyIdMiddlewares) 26 if err != nil { 27 return nil, err 28 } 29 30 out := result.(*ResetEbsDefaultKmsKeyIdOutput) 31 out.ResultMetadata = metadata 32 return out, nil 33} 34 35type ResetEbsDefaultKmsKeyIdInput struct { 36 37 // Checks whether you have the required permissions for the action, without 38 // actually making the request, and provides an error response. If you have the 39 // required permissions, the error response is DryRunOperation. Otherwise, it is 40 // UnauthorizedOperation. 41 DryRun bool 42} 43 44type ResetEbsDefaultKmsKeyIdOutput struct { 45 46 // The Amazon Resource Name (ARN) of the default CMK for EBS encryption by default. 47 KmsKeyId *string 48 49 // Metadata pertaining to the operation's result. 50 ResultMetadata middleware.Metadata 51} 52 53func addOperationResetEbsDefaultKmsKeyIdMiddlewares(stack *middleware.Stack, options Options) (err error) { 54 err = stack.Serialize.Add(&awsEc2query_serializeOpResetEbsDefaultKmsKeyId{}, middleware.After) 55 if err != nil { 56 return err 57 } 58 err = stack.Deserialize.Add(&awsEc2query_deserializeOpResetEbsDefaultKmsKeyId{}, middleware.After) 59 if err != nil { 60 return err 61 } 62 if err = addSetLoggerMiddleware(stack, options); err != nil { 63 return err 64 } 65 if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { 66 return err 67 } 68 if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { 69 return err 70 } 71 if err = addResolveEndpointMiddleware(stack, options); err != nil { 72 return err 73 } 74 if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { 75 return err 76 } 77 if err = addRetryMiddlewares(stack, options); err != nil { 78 return err 79 } 80 if err = addHTTPSignerV4Middleware(stack, options); err != nil { 81 return err 82 } 83 if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { 84 return err 85 } 86 if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { 87 return err 88 } 89 if err = addClientUserAgent(stack); err != nil { 90 return err 91 } 92 if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { 93 return err 94 } 95 if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { 96 return err 97 } 98 if err = stack.Initialize.Add(newServiceMetadataMiddleware_opResetEbsDefaultKmsKeyId(options.Region), middleware.Before); err != nil { 99 return err 100 } 101 if err = addRequestIDRetrieverMiddleware(stack); err != nil { 102 return err 103 } 104 if err = addResponseErrorMiddleware(stack); err != nil { 105 return err 106 } 107 if err = addRequestResponseLogging(stack, options); err != nil { 108 return err 109 } 110 return nil 111} 112 113func newServiceMetadataMiddleware_opResetEbsDefaultKmsKeyId(region string) *awsmiddleware.RegisterServiceMetadata { 114 return &awsmiddleware.RegisterServiceMetadata{ 115 Region: region, 116 ServiceID: ServiceID, 117 SigningName: "ec2", 118 OperationName: "ResetEbsDefaultKmsKeyId", 119 } 120} 121