// Code generated by smithy-go-codegen DO NOT EDIT. package resiliencehub import ( "context" awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware" "github.com/aws/aws-sdk-go-v2/aws/signer/v4" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/aws/smithy-go/middleware" smithyhttp "github.com/aws/smithy-go/transport/http" ) // Adds the resource mapping for the draft application version. You can also // update an existing resource mapping to a new physical resource. func (c *Client) AddDraftAppVersionResourceMappings(ctx context.Context, params *AddDraftAppVersionResourceMappingsInput, optFns ...func(*Options)) (*AddDraftAppVersionResourceMappingsOutput, error) { if params == nil { params = &AddDraftAppVersionResourceMappingsInput{} } result, metadata, err := c.invokeOperation(ctx, "AddDraftAppVersionResourceMappings", params, optFns, c.addOperationAddDraftAppVersionResourceMappingsMiddlewares) if err != nil { return nil, err } out := result.(*AddDraftAppVersionResourceMappingsOutput) out.ResultMetadata = metadata return out, nil } type AddDraftAppVersionResourceMappingsInput struct { // The Amazon Resource Name (ARN) of the Resilience Hub application. The format // for this ARN is: arn: partition :resiliencehub: region : account :app/ app-id . // For more information about ARNs, see Amazon Resource Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) // in the AWS General Reference guide. // // This member is required. AppArn *string // Mappings used to map logical resources from the template to physical resources. // You can use the mapping type CFN_STACK if the application template uses a // logical stack name. Or you can map individual resources by using the mapping // type RESOURCE . We recommend using the mapping type CFN_STACK if the // application is backed by a CloudFormation stack. // // This member is required. ResourceMappings []types.ResourceMapping noSmithyDocumentSerde } type AddDraftAppVersionResourceMappingsOutput struct { // The Amazon Resource Name (ARN) of the Resilience Hub application. The format // for this ARN is: arn: partition :resiliencehub: region : account :app/ app-id . // For more information about ARNs, see Amazon Resource Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) // in the AWS General Reference guide. // // This member is required. AppArn *string // The version of the application. // // This member is required. AppVersion *string // Mappings used to map logical resources from the template to physical resources. // You can use the mapping type CFN_STACK if the application template uses a // logical stack name. Or you can map individual resources by using the mapping // type RESOURCE . We recommend using the mapping type CFN_STACK if the // application is backed by a CloudFormation stack. // // This member is required. ResourceMappings []types.ResourceMapping // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata noSmithyDocumentSerde } func (c *Client) addOperationAddDraftAppVersionResourceMappingsMiddlewares(stack *middleware.Stack, options Options) (err error) { err = stack.Serialize.Add(&awsRestjson1_serializeOpAddDraftAppVersionResourceMappings{}, middleware.After) if err != nil { return err } err = stack.Deserialize.Add(&awsRestjson1_deserializeOpAddDraftAppVersionResourceMappings{}, middleware.After) if err != nil { return err } if err = addSetLoggerMiddleware(stack, options); err != nil { return err } if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { return err } if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { return err } if err = addResolveEndpointMiddleware(stack, options); err != nil { return err } if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { return err } if err = addRetryMiddlewares(stack, options); err != nil { return err } if err = addHTTPSignerV4Middleware(stack, options); err != nil { return err } if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { return err } if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { return err } if err = addClientUserAgent(stack, options); err != nil { return err } if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { return err } if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { return err } if err = addOpAddDraftAppVersionResourceMappingsValidationMiddleware(stack); err != nil { return err } if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAddDraftAppVersionResourceMappings(options.Region), middleware.Before); err != nil { return err } if err = awsmiddleware.AddRecursionDetection(stack); err != nil { return err } if err = addRequestIDRetrieverMiddleware(stack); err != nil { return err } if err = addResponseErrorMiddleware(stack); err != nil { return err } if err = addRequestResponseLogging(stack, options); err != nil { return err } return nil } func newServiceMetadataMiddleware_opAddDraftAppVersionResourceMappings(region string) *awsmiddleware.RegisterServiceMetadata { return &awsmiddleware.RegisterServiceMetadata{ Region: region, ServiceID: ServiceID, SigningName: "resiliencehub", OperationName: "AddDraftAppVersionResourceMappings", } }