// Code generated by smithy-go-codegen DO NOT EDIT. package dataexchange 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" "time" ) // This operation revokes subscribers' access to a revision. func (c *Client) RevokeRevision(ctx context.Context, params *RevokeRevisionInput, optFns ...func(*Options)) (*RevokeRevisionOutput, error) { if params == nil { params = &RevokeRevisionInput{} } result, metadata, err := c.invokeOperation(ctx, "RevokeRevision", params, optFns, c.addOperationRevokeRevisionMiddlewares) if err != nil { return nil, err } out := result.(*RevokeRevisionOutput) out.ResultMetadata = metadata return out, nil } type RevokeRevisionInput struct { // The unique identifier for a data set. // // This member is required. DataSetId *string // The unique identifier for a revision. // // This member is required. RevisionId *string // A required comment to inform subscribers of the reason their access to the // revision was revoked. // // This member is required. RevocationComment *string noSmithyDocumentSerde } type RevokeRevisionOutput struct { // The ARN for the revision. Arn *string // An optional comment about the revision. Comment *string // The date and time that the revision was created, in ISO 8601 format. CreatedAt *time.Time // The unique identifier for the data set associated with the data set revision. DataSetId *string // To publish a revision to a data set in a product, the revision must first be // finalized. Finalizing a revision tells AWS Data Exchange that changes to the // assets in the revision are complete. After it's in this read-only state, you can // publish the revision to your products. Finalized revisions can be published // through the AWS Data Exchange console or the AWS Marketplace Catalog API, using // the StartChangeSet AWS Marketplace Catalog API action. When using the API, // revisions are uniquely identified by their ARN. Finalized bool // The unique identifier for the revision. Id *string // A required comment to inform subscribers of the reason their access to the // revision was revoked. RevocationComment *string // A status indicating that subscribers' access to the revision was revoked. Revoked bool // The date and time that the revision was revoked, in ISO 8601 format. RevokedAt *time.Time // The revision ID of the owned revision corresponding to the entitled revision // being viewed. This parameter is returned when a revision owner is viewing the // entitled copy of its owned revision. SourceId *string // The date and time that the revision was last updated, in ISO 8601 format. UpdatedAt *time.Time // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata noSmithyDocumentSerde } func (c *Client) addOperationRevokeRevisionMiddlewares(stack *middleware.Stack, options Options) (err error) { err = stack.Serialize.Add(&awsRestjson1_serializeOpRevokeRevision{}, middleware.After) if err != nil { return err } err = stack.Deserialize.Add(&awsRestjson1_deserializeOpRevokeRevision{}, 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 = addOpRevokeRevisionValidationMiddleware(stack); err != nil { return err } if err = stack.Initialize.Add(newServiceMetadataMiddleware_opRevokeRevision(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_opRevokeRevision(region string) *awsmiddleware.RegisterServiceMetadata { return &awsmiddleware.RegisterServiceMetadata{ Region: region, ServiceID: ServiceID, SigningName: "dataexchange", OperationName: "RevokeRevision", } }