// 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/smithy-go/middleware" smithyhttp "github.com/aws/smithy-go/transport/http" ) // Removes resource mappings from a draft application version. func (c *Client) RemoveDraftAppVersionResourceMappings(ctx context.Context, params *RemoveDraftAppVersionResourceMappingsInput, optFns ...func(*Options)) (*RemoveDraftAppVersionResourceMappingsOutput, error) { if params == nil { params = &RemoveDraftAppVersionResourceMappingsInput{} } result, metadata, err := c.invokeOperation(ctx, "RemoveDraftAppVersionResourceMappings", params, optFns, c.addOperationRemoveDraftAppVersionResourceMappingsMiddlewares) if err != nil { return nil, err } out := result.(*RemoveDraftAppVersionResourceMappingsOutput) out.ResultMetadata = metadata return out, nil } type RemoveDraftAppVersionResourceMappingsInput 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 names of the registered applications you want to remove from the resource // mappings. AppRegistryAppNames []string // The names of the Amazon Elastic Kubernetes Service clusters and namespaces you // want to remove from the resource mappings. This parameter accepts values in // "eks-cluster/namespace" format. EksSourceNames []string // The names of the CloudFormation stacks you want to remove from the resource // mappings. LogicalStackNames []string // The names of the resource groups you want to remove from the resource mappings. ResourceGroupNames []string // The names of the resources you want to remove from the resource mappings. ResourceNames []string // The names of the Terraform sources you want to remove from the resource // mappings. TerraformSourceNames []string noSmithyDocumentSerde } type RemoveDraftAppVersionResourceMappingsOutput 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. AppArn *string // The version of the application. AppVersion *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata noSmithyDocumentSerde } func (c *Client) addOperationRemoveDraftAppVersionResourceMappingsMiddlewares(stack *middleware.Stack, options Options) (err error) { err = stack.Serialize.Add(&awsRestjson1_serializeOpRemoveDraftAppVersionResourceMappings{}, middleware.After) if err != nil { return err } err = stack.Deserialize.Add(&awsRestjson1_deserializeOpRemoveDraftAppVersionResourceMappings{}, 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 = addOpRemoveDraftAppVersionResourceMappingsValidationMiddleware(stack); err != nil { return err } if err = stack.Initialize.Add(newServiceMetadataMiddleware_opRemoveDraftAppVersionResourceMappings(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_opRemoveDraftAppVersionResourceMappings(region string) *awsmiddleware.RegisterServiceMetadata { return &awsmiddleware.RegisterServiceMetadata{ Region: region, ServiceID: ServiceID, SigningName: "resiliencehub", OperationName: "RemoveDraftAppVersionResourceMappings", } }