// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package cleanrooms import ( "fmt" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/private/protocol" "github.com/aws/aws-sdk-go/private/protocol/restjson" ) const opBatchGetSchema = "BatchGetSchema" // BatchGetSchemaRequest generates a "aws/request.Request" representing the // client's request for the BatchGetSchema operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See BatchGetSchema for more information on using the BatchGetSchema // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the BatchGetSchemaRequest method. // req, resp := client.BatchGetSchemaRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/BatchGetSchema func (c *CleanRooms) BatchGetSchemaRequest(input *BatchGetSchemaInput) (req *request.Request, output *BatchGetSchemaOutput) { op := &request.Operation{ Name: opBatchGetSchema, HTTPMethod: "POST", HTTPPath: "/collaborations/{collaborationIdentifier}/batch-schema", } if input == nil { input = &BatchGetSchemaInput{} } output = &BatchGetSchemaOutput{} req = c.newRequest(op, input, output) return } // BatchGetSchema API operation for AWS Clean Rooms Service. // // Retrieves multiple schemas by their identifiers. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation BatchGetSchema for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/BatchGetSchema func (c *CleanRooms) BatchGetSchema(input *BatchGetSchemaInput) (*BatchGetSchemaOutput, error) { req, out := c.BatchGetSchemaRequest(input) return out, req.Send() } // BatchGetSchemaWithContext is the same as BatchGetSchema with the addition of // the ability to pass a context and additional request options. // // See BatchGetSchema for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) BatchGetSchemaWithContext(ctx aws.Context, input *BatchGetSchemaInput, opts ...request.Option) (*BatchGetSchemaOutput, error) { req, out := c.BatchGetSchemaRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateCollaboration = "CreateCollaboration" // CreateCollaborationRequest generates a "aws/request.Request" representing the // client's request for the CreateCollaboration operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateCollaboration for more information on using the CreateCollaboration // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateCollaborationRequest method. // req, resp := client.CreateCollaborationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaboration func (c *CleanRooms) CreateCollaborationRequest(input *CreateCollaborationInput) (req *request.Request, output *CreateCollaborationOutput) { op := &request.Operation{ Name: opCreateCollaboration, HTTPMethod: "POST", HTTPPath: "/collaborations", } if input == nil { input = &CreateCollaborationInput{} } output = &CreateCollaborationOutput{} req = c.newRequest(op, input, output) return } // CreateCollaboration API operation for AWS Clean Rooms Service. // // Creates a new collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation CreateCollaboration for usage and error information. // // Returned Error Types: // // - ServiceQuotaExceededException // Request denied because service quota has been exceeded. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaboration func (c *CleanRooms) CreateCollaboration(input *CreateCollaborationInput) (*CreateCollaborationOutput, error) { req, out := c.CreateCollaborationRequest(input) return out, req.Send() } // CreateCollaborationWithContext is the same as CreateCollaboration with the addition of // the ability to pass a context and additional request options. // // See CreateCollaboration for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) CreateCollaborationWithContext(ctx aws.Context, input *CreateCollaborationInput, opts ...request.Option) (*CreateCollaborationOutput, error) { req, out := c.CreateCollaborationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateConfiguredTable = "CreateConfiguredTable" // CreateConfiguredTableRequest generates a "aws/request.Request" representing the // client's request for the CreateConfiguredTable operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateConfiguredTable for more information on using the CreateConfiguredTable // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateConfiguredTableRequest method. // req, resp := client.CreateConfiguredTableRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTable func (c *CleanRooms) CreateConfiguredTableRequest(input *CreateConfiguredTableInput) (req *request.Request, output *CreateConfiguredTableOutput) { op := &request.Operation{ Name: opCreateConfiguredTable, HTTPMethod: "POST", HTTPPath: "/configuredTables", } if input == nil { input = &CreateConfiguredTableInput{} } output = &CreateConfiguredTableOutput{} req = c.newRequest(op, input, output) return } // CreateConfiguredTable API operation for AWS Clean Rooms Service. // // Creates a new configured table resource. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation CreateConfiguredTable for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ServiceQuotaExceededException // Request denied because service quota has been exceeded. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTable func (c *CleanRooms) CreateConfiguredTable(input *CreateConfiguredTableInput) (*CreateConfiguredTableOutput, error) { req, out := c.CreateConfiguredTableRequest(input) return out, req.Send() } // CreateConfiguredTableWithContext is the same as CreateConfiguredTable with the addition of // the ability to pass a context and additional request options. // // See CreateConfiguredTable for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) CreateConfiguredTableWithContext(ctx aws.Context, input *CreateConfiguredTableInput, opts ...request.Option) (*CreateConfiguredTableOutput, error) { req, out := c.CreateConfiguredTableRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateConfiguredTableAnalysisRule = "CreateConfiguredTableAnalysisRule" // CreateConfiguredTableAnalysisRuleRequest generates a "aws/request.Request" representing the // client's request for the CreateConfiguredTableAnalysisRule operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateConfiguredTableAnalysisRule for more information on using the CreateConfiguredTableAnalysisRule // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateConfiguredTableAnalysisRuleRequest method. // req, resp := client.CreateConfiguredTableAnalysisRuleRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAnalysisRule func (c *CleanRooms) CreateConfiguredTableAnalysisRuleRequest(input *CreateConfiguredTableAnalysisRuleInput) (req *request.Request, output *CreateConfiguredTableAnalysisRuleOutput) { op := &request.Operation{ Name: opCreateConfiguredTableAnalysisRule, HTTPMethod: "POST", HTTPPath: "/configuredTables/{configuredTableIdentifier}/analysisRule", } if input == nil { input = &CreateConfiguredTableAnalysisRuleInput{} } output = &CreateConfiguredTableAnalysisRuleOutput{} req = c.newRequest(op, input, output) return } // CreateConfiguredTableAnalysisRule API operation for AWS Clean Rooms Service. // // Creates a new analysis rule for a configured table. Currently, only one analysis // rule can be created for a given configured table. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation CreateConfiguredTableAnalysisRule for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAnalysisRule func (c *CleanRooms) CreateConfiguredTableAnalysisRule(input *CreateConfiguredTableAnalysisRuleInput) (*CreateConfiguredTableAnalysisRuleOutput, error) { req, out := c.CreateConfiguredTableAnalysisRuleRequest(input) return out, req.Send() } // CreateConfiguredTableAnalysisRuleWithContext is the same as CreateConfiguredTableAnalysisRule with the addition of // the ability to pass a context and additional request options. // // See CreateConfiguredTableAnalysisRule for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) CreateConfiguredTableAnalysisRuleWithContext(ctx aws.Context, input *CreateConfiguredTableAnalysisRuleInput, opts ...request.Option) (*CreateConfiguredTableAnalysisRuleOutput, error) { req, out := c.CreateConfiguredTableAnalysisRuleRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateConfiguredTableAssociation = "CreateConfiguredTableAssociation" // CreateConfiguredTableAssociationRequest generates a "aws/request.Request" representing the // client's request for the CreateConfiguredTableAssociation operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateConfiguredTableAssociation for more information on using the CreateConfiguredTableAssociation // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateConfiguredTableAssociationRequest method. // req, resp := client.CreateConfiguredTableAssociationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociation func (c *CleanRooms) CreateConfiguredTableAssociationRequest(input *CreateConfiguredTableAssociationInput) (req *request.Request, output *CreateConfiguredTableAssociationOutput) { op := &request.Operation{ Name: opCreateConfiguredTableAssociation, HTTPMethod: "POST", HTTPPath: "/memberships/{membershipIdentifier}/configuredTableAssociations", } if input == nil { input = &CreateConfiguredTableAssociationInput{} } output = &CreateConfiguredTableAssociationOutput{} req = c.newRequest(op, input, output) return } // CreateConfiguredTableAssociation API operation for AWS Clean Rooms Service. // // Creates a configured table association. A configured table association links // a configured table with a collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation CreateConfiguredTableAssociation for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ServiceQuotaExceededException // Request denied because service quota has been exceeded. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociation func (c *CleanRooms) CreateConfiguredTableAssociation(input *CreateConfiguredTableAssociationInput) (*CreateConfiguredTableAssociationOutput, error) { req, out := c.CreateConfiguredTableAssociationRequest(input) return out, req.Send() } // CreateConfiguredTableAssociationWithContext is the same as CreateConfiguredTableAssociation with the addition of // the ability to pass a context and additional request options. // // See CreateConfiguredTableAssociation for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) CreateConfiguredTableAssociationWithContext(ctx aws.Context, input *CreateConfiguredTableAssociationInput, opts ...request.Option) (*CreateConfiguredTableAssociationOutput, error) { req, out := c.CreateConfiguredTableAssociationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateMembership = "CreateMembership" // CreateMembershipRequest generates a "aws/request.Request" representing the // client's request for the CreateMembership operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateMembership for more information on using the CreateMembership // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateMembershipRequest method. // req, resp := client.CreateMembershipRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership func (c *CleanRooms) CreateMembershipRequest(input *CreateMembershipInput) (req *request.Request, output *CreateMembershipOutput) { op := &request.Operation{ Name: opCreateMembership, HTTPMethod: "POST", HTTPPath: "/memberships", } if input == nil { input = &CreateMembershipInput{} } output = &CreateMembershipOutput{} req = c.newRequest(op, input, output) return } // CreateMembership API operation for AWS Clean Rooms Service. // // Creates a membership for a specific collaboration identifier and joins the // collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation CreateMembership for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ServiceQuotaExceededException // Request denied because service quota has been exceeded. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership func (c *CleanRooms) CreateMembership(input *CreateMembershipInput) (*CreateMembershipOutput, error) { req, out := c.CreateMembershipRequest(input) return out, req.Send() } // CreateMembershipWithContext is the same as CreateMembership with the addition of // the ability to pass a context and additional request options. // // See CreateMembership for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) CreateMembershipWithContext(ctx aws.Context, input *CreateMembershipInput, opts ...request.Option) (*CreateMembershipOutput, error) { req, out := c.CreateMembershipRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteCollaboration = "DeleteCollaboration" // DeleteCollaborationRequest generates a "aws/request.Request" representing the // client's request for the DeleteCollaboration operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteCollaboration for more information on using the DeleteCollaboration // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteCollaborationRequest method. // req, resp := client.DeleteCollaborationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteCollaboration func (c *CleanRooms) DeleteCollaborationRequest(input *DeleteCollaborationInput) (req *request.Request, output *DeleteCollaborationOutput) { op := &request.Operation{ Name: opDeleteCollaboration, HTTPMethod: "DELETE", HTTPPath: "/collaborations/{collaborationIdentifier}", } if input == nil { input = &DeleteCollaborationInput{} } output = &DeleteCollaborationOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteCollaboration API operation for AWS Clean Rooms Service. // // Deletes a collaboration. It can only be called by the collaboration owner. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation DeleteCollaboration for usage and error information. // // Returned Error Types: // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteCollaboration func (c *CleanRooms) DeleteCollaboration(input *DeleteCollaborationInput) (*DeleteCollaborationOutput, error) { req, out := c.DeleteCollaborationRequest(input) return out, req.Send() } // DeleteCollaborationWithContext is the same as DeleteCollaboration with the addition of // the ability to pass a context and additional request options. // // See DeleteCollaboration for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) DeleteCollaborationWithContext(ctx aws.Context, input *DeleteCollaborationInput, opts ...request.Option) (*DeleteCollaborationOutput, error) { req, out := c.DeleteCollaborationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteConfiguredTable = "DeleteConfiguredTable" // DeleteConfiguredTableRequest generates a "aws/request.Request" representing the // client's request for the DeleteConfiguredTable operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteConfiguredTable for more information on using the DeleteConfiguredTable // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteConfiguredTableRequest method. // req, resp := client.DeleteConfiguredTableRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTable func (c *CleanRooms) DeleteConfiguredTableRequest(input *DeleteConfiguredTableInput) (req *request.Request, output *DeleteConfiguredTableOutput) { op := &request.Operation{ Name: opDeleteConfiguredTable, HTTPMethod: "DELETE", HTTPPath: "/configuredTables/{configuredTableIdentifier}", } if input == nil { input = &DeleteConfiguredTableInput{} } output = &DeleteConfiguredTableOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteConfiguredTable API operation for AWS Clean Rooms Service. // // Deletes a configured table. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation DeleteConfiguredTable for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTable func (c *CleanRooms) DeleteConfiguredTable(input *DeleteConfiguredTableInput) (*DeleteConfiguredTableOutput, error) { req, out := c.DeleteConfiguredTableRequest(input) return out, req.Send() } // DeleteConfiguredTableWithContext is the same as DeleteConfiguredTable with the addition of // the ability to pass a context and additional request options. // // See DeleteConfiguredTable for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) DeleteConfiguredTableWithContext(ctx aws.Context, input *DeleteConfiguredTableInput, opts ...request.Option) (*DeleteConfiguredTableOutput, error) { req, out := c.DeleteConfiguredTableRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteConfiguredTableAnalysisRule = "DeleteConfiguredTableAnalysisRule" // DeleteConfiguredTableAnalysisRuleRequest generates a "aws/request.Request" representing the // client's request for the DeleteConfiguredTableAnalysisRule operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteConfiguredTableAnalysisRule for more information on using the DeleteConfiguredTableAnalysisRule // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteConfiguredTableAnalysisRuleRequest method. // req, resp := client.DeleteConfiguredTableAnalysisRuleRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAnalysisRule func (c *CleanRooms) DeleteConfiguredTableAnalysisRuleRequest(input *DeleteConfiguredTableAnalysisRuleInput) (req *request.Request, output *DeleteConfiguredTableAnalysisRuleOutput) { op := &request.Operation{ Name: opDeleteConfiguredTableAnalysisRule, HTTPMethod: "DELETE", HTTPPath: "/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}", } if input == nil { input = &DeleteConfiguredTableAnalysisRuleInput{} } output = &DeleteConfiguredTableAnalysisRuleOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteConfiguredTableAnalysisRule API operation for AWS Clean Rooms Service. // // Deletes a configured table analysis rule. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation DeleteConfiguredTableAnalysisRule for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAnalysisRule func (c *CleanRooms) DeleteConfiguredTableAnalysisRule(input *DeleteConfiguredTableAnalysisRuleInput) (*DeleteConfiguredTableAnalysisRuleOutput, error) { req, out := c.DeleteConfiguredTableAnalysisRuleRequest(input) return out, req.Send() } // DeleteConfiguredTableAnalysisRuleWithContext is the same as DeleteConfiguredTableAnalysisRule with the addition of // the ability to pass a context and additional request options. // // See DeleteConfiguredTableAnalysisRule for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) DeleteConfiguredTableAnalysisRuleWithContext(ctx aws.Context, input *DeleteConfiguredTableAnalysisRuleInput, opts ...request.Option) (*DeleteConfiguredTableAnalysisRuleOutput, error) { req, out := c.DeleteConfiguredTableAnalysisRuleRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteConfiguredTableAssociation = "DeleteConfiguredTableAssociation" // DeleteConfiguredTableAssociationRequest generates a "aws/request.Request" representing the // client's request for the DeleteConfiguredTableAssociation operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteConfiguredTableAssociation for more information on using the DeleteConfiguredTableAssociation // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteConfiguredTableAssociationRequest method. // req, resp := client.DeleteConfiguredTableAssociationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAssociation func (c *CleanRooms) DeleteConfiguredTableAssociationRequest(input *DeleteConfiguredTableAssociationInput) (req *request.Request, output *DeleteConfiguredTableAssociationOutput) { op := &request.Operation{ Name: opDeleteConfiguredTableAssociation, HTTPMethod: "DELETE", HTTPPath: "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}", } if input == nil { input = &DeleteConfiguredTableAssociationInput{} } output = &DeleteConfiguredTableAssociationOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteConfiguredTableAssociation API operation for AWS Clean Rooms Service. // // Deletes a configured table association. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation DeleteConfiguredTableAssociation for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAssociation func (c *CleanRooms) DeleteConfiguredTableAssociation(input *DeleteConfiguredTableAssociationInput) (*DeleteConfiguredTableAssociationOutput, error) { req, out := c.DeleteConfiguredTableAssociationRequest(input) return out, req.Send() } // DeleteConfiguredTableAssociationWithContext is the same as DeleteConfiguredTableAssociation with the addition of // the ability to pass a context and additional request options. // // See DeleteConfiguredTableAssociation for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) DeleteConfiguredTableAssociationWithContext(ctx aws.Context, input *DeleteConfiguredTableAssociationInput, opts ...request.Option) (*DeleteConfiguredTableAssociationOutput, error) { req, out := c.DeleteConfiguredTableAssociationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteMember = "DeleteMember" // DeleteMemberRequest generates a "aws/request.Request" representing the // client's request for the DeleteMember operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteMember for more information on using the DeleteMember // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteMemberRequest method. // req, resp := client.DeleteMemberRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteMember func (c *CleanRooms) DeleteMemberRequest(input *DeleteMemberInput) (req *request.Request, output *DeleteMemberOutput) { op := &request.Operation{ Name: opDeleteMember, HTTPMethod: "DELETE", HTTPPath: "/collaborations/{collaborationIdentifier}/member/{accountId}", } if input == nil { input = &DeleteMemberInput{} } output = &DeleteMemberOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteMember API operation for AWS Clean Rooms Service. // // Removes the specified member from a collaboration. The removed member is // placed in the Removed status and can't interact with the collaboration. The // removed member's data is inaccessible to active members of the collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation DeleteMember for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteMember func (c *CleanRooms) DeleteMember(input *DeleteMemberInput) (*DeleteMemberOutput, error) { req, out := c.DeleteMemberRequest(input) return out, req.Send() } // DeleteMemberWithContext is the same as DeleteMember with the addition of // the ability to pass a context and additional request options. // // See DeleteMember for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) DeleteMemberWithContext(ctx aws.Context, input *DeleteMemberInput, opts ...request.Option) (*DeleteMemberOutput, error) { req, out := c.DeleteMemberRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteMembership = "DeleteMembership" // DeleteMembershipRequest generates a "aws/request.Request" representing the // client's request for the DeleteMembership operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteMembership for more information on using the DeleteMembership // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteMembershipRequest method. // req, resp := client.DeleteMembershipRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteMembership func (c *CleanRooms) DeleteMembershipRequest(input *DeleteMembershipInput) (req *request.Request, output *DeleteMembershipOutput) { op := &request.Operation{ Name: opDeleteMembership, HTTPMethod: "DELETE", HTTPPath: "/memberships/{membershipIdentifier}", } if input == nil { input = &DeleteMembershipInput{} } output = &DeleteMembershipOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteMembership API operation for AWS Clean Rooms Service. // // Deletes a specified membership. All resources under a membership must be // deleted. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation DeleteMembership for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteMembership func (c *CleanRooms) DeleteMembership(input *DeleteMembershipInput) (*DeleteMembershipOutput, error) { req, out := c.DeleteMembershipRequest(input) return out, req.Send() } // DeleteMembershipWithContext is the same as DeleteMembership with the addition of // the ability to pass a context and additional request options. // // See DeleteMembership for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) DeleteMembershipWithContext(ctx aws.Context, input *DeleteMembershipInput, opts ...request.Option) (*DeleteMembershipOutput, error) { req, out := c.DeleteMembershipRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetCollaboration = "GetCollaboration" // GetCollaborationRequest generates a "aws/request.Request" representing the // client's request for the GetCollaboration operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetCollaboration for more information on using the GetCollaboration // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetCollaborationRequest method. // req, resp := client.GetCollaborationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaboration func (c *CleanRooms) GetCollaborationRequest(input *GetCollaborationInput) (req *request.Request, output *GetCollaborationOutput) { op := &request.Operation{ Name: opGetCollaboration, HTTPMethod: "GET", HTTPPath: "/collaborations/{collaborationIdentifier}", } if input == nil { input = &GetCollaborationInput{} } output = &GetCollaborationOutput{} req = c.newRequest(op, input, output) return } // GetCollaboration API operation for AWS Clean Rooms Service. // // Returns metadata about a collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetCollaboration for usage and error information. // // Returned Error Types: // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaboration func (c *CleanRooms) GetCollaboration(input *GetCollaborationInput) (*GetCollaborationOutput, error) { req, out := c.GetCollaborationRequest(input) return out, req.Send() } // GetCollaborationWithContext is the same as GetCollaboration with the addition of // the ability to pass a context and additional request options. // // See GetCollaboration for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetCollaborationWithContext(ctx aws.Context, input *GetCollaborationInput, opts ...request.Option) (*GetCollaborationOutput, error) { req, out := c.GetCollaborationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetConfiguredTable = "GetConfiguredTable" // GetConfiguredTableRequest generates a "aws/request.Request" representing the // client's request for the GetConfiguredTable operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetConfiguredTable for more information on using the GetConfiguredTable // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetConfiguredTableRequest method. // req, resp := client.GetConfiguredTableRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTable func (c *CleanRooms) GetConfiguredTableRequest(input *GetConfiguredTableInput) (req *request.Request, output *GetConfiguredTableOutput) { op := &request.Operation{ Name: opGetConfiguredTable, HTTPMethod: "GET", HTTPPath: "/configuredTables/{configuredTableIdentifier}", } if input == nil { input = &GetConfiguredTableInput{} } output = &GetConfiguredTableOutput{} req = c.newRequest(op, input, output) return } // GetConfiguredTable API operation for AWS Clean Rooms Service. // // Retrieves a configured table. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetConfiguredTable for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTable func (c *CleanRooms) GetConfiguredTable(input *GetConfiguredTableInput) (*GetConfiguredTableOutput, error) { req, out := c.GetConfiguredTableRequest(input) return out, req.Send() } // GetConfiguredTableWithContext is the same as GetConfiguredTable with the addition of // the ability to pass a context and additional request options. // // See GetConfiguredTable for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetConfiguredTableWithContext(ctx aws.Context, input *GetConfiguredTableInput, opts ...request.Option) (*GetConfiguredTableOutput, error) { req, out := c.GetConfiguredTableRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetConfiguredTableAnalysisRule = "GetConfiguredTableAnalysisRule" // GetConfiguredTableAnalysisRuleRequest generates a "aws/request.Request" representing the // client's request for the GetConfiguredTableAnalysisRule operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetConfiguredTableAnalysisRule for more information on using the GetConfiguredTableAnalysisRule // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetConfiguredTableAnalysisRuleRequest method. // req, resp := client.GetConfiguredTableAnalysisRuleRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAnalysisRule func (c *CleanRooms) GetConfiguredTableAnalysisRuleRequest(input *GetConfiguredTableAnalysisRuleInput) (req *request.Request, output *GetConfiguredTableAnalysisRuleOutput) { op := &request.Operation{ Name: opGetConfiguredTableAnalysisRule, HTTPMethod: "GET", HTTPPath: "/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}", } if input == nil { input = &GetConfiguredTableAnalysisRuleInput{} } output = &GetConfiguredTableAnalysisRuleOutput{} req = c.newRequest(op, input, output) return } // GetConfiguredTableAnalysisRule API operation for AWS Clean Rooms Service. // // Retrieves a configured table analysis rule. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetConfiguredTableAnalysisRule for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAnalysisRule func (c *CleanRooms) GetConfiguredTableAnalysisRule(input *GetConfiguredTableAnalysisRuleInput) (*GetConfiguredTableAnalysisRuleOutput, error) { req, out := c.GetConfiguredTableAnalysisRuleRequest(input) return out, req.Send() } // GetConfiguredTableAnalysisRuleWithContext is the same as GetConfiguredTableAnalysisRule with the addition of // the ability to pass a context and additional request options. // // See GetConfiguredTableAnalysisRule for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetConfiguredTableAnalysisRuleWithContext(ctx aws.Context, input *GetConfiguredTableAnalysisRuleInput, opts ...request.Option) (*GetConfiguredTableAnalysisRuleOutput, error) { req, out := c.GetConfiguredTableAnalysisRuleRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetConfiguredTableAssociation = "GetConfiguredTableAssociation" // GetConfiguredTableAssociationRequest generates a "aws/request.Request" representing the // client's request for the GetConfiguredTableAssociation operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetConfiguredTableAssociation for more information on using the GetConfiguredTableAssociation // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetConfiguredTableAssociationRequest method. // req, resp := client.GetConfiguredTableAssociationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAssociation func (c *CleanRooms) GetConfiguredTableAssociationRequest(input *GetConfiguredTableAssociationInput) (req *request.Request, output *GetConfiguredTableAssociationOutput) { op := &request.Operation{ Name: opGetConfiguredTableAssociation, HTTPMethod: "GET", HTTPPath: "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}", } if input == nil { input = &GetConfiguredTableAssociationInput{} } output = &GetConfiguredTableAssociationOutput{} req = c.newRequest(op, input, output) return } // GetConfiguredTableAssociation API operation for AWS Clean Rooms Service. // // Retrieves a configured table association. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetConfiguredTableAssociation for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAssociation func (c *CleanRooms) GetConfiguredTableAssociation(input *GetConfiguredTableAssociationInput) (*GetConfiguredTableAssociationOutput, error) { req, out := c.GetConfiguredTableAssociationRequest(input) return out, req.Send() } // GetConfiguredTableAssociationWithContext is the same as GetConfiguredTableAssociation with the addition of // the ability to pass a context and additional request options. // // See GetConfiguredTableAssociation for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetConfiguredTableAssociationWithContext(ctx aws.Context, input *GetConfiguredTableAssociationInput, opts ...request.Option) (*GetConfiguredTableAssociationOutput, error) { req, out := c.GetConfiguredTableAssociationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetMembership = "GetMembership" // GetMembershipRequest generates a "aws/request.Request" representing the // client's request for the GetMembership operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetMembership for more information on using the GetMembership // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetMembershipRequest method. // req, resp := client.GetMembershipRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership func (c *CleanRooms) GetMembershipRequest(input *GetMembershipInput) (req *request.Request, output *GetMembershipOutput) { op := &request.Operation{ Name: opGetMembership, HTTPMethod: "GET", HTTPPath: "/memberships/{membershipIdentifier}", } if input == nil { input = &GetMembershipInput{} } output = &GetMembershipOutput{} req = c.newRequest(op, input, output) return } // GetMembership API operation for AWS Clean Rooms Service. // // Retrieves a specified membership for an identifier. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetMembership for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership func (c *CleanRooms) GetMembership(input *GetMembershipInput) (*GetMembershipOutput, error) { req, out := c.GetMembershipRequest(input) return out, req.Send() } // GetMembershipWithContext is the same as GetMembership with the addition of // the ability to pass a context and additional request options. // // See GetMembership for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetMembershipWithContext(ctx aws.Context, input *GetMembershipInput, opts ...request.Option) (*GetMembershipOutput, error) { req, out := c.GetMembershipRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetProtectedQuery = "GetProtectedQuery" // GetProtectedQueryRequest generates a "aws/request.Request" representing the // client's request for the GetProtectedQuery operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetProtectedQuery for more information on using the GetProtectedQuery // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetProtectedQueryRequest method. // req, resp := client.GetProtectedQueryRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetProtectedQuery func (c *CleanRooms) GetProtectedQueryRequest(input *GetProtectedQueryInput) (req *request.Request, output *GetProtectedQueryOutput) { op := &request.Operation{ Name: opGetProtectedQuery, HTTPMethod: "GET", HTTPPath: "/memberships/{membershipIdentifier}/protectedQueries/{protectedQueryIdentifier}", } if input == nil { input = &GetProtectedQueryInput{} } output = &GetProtectedQueryOutput{} req = c.newRequest(op, input, output) return } // GetProtectedQuery API operation for AWS Clean Rooms Service. // // Returns query processing metadata. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetProtectedQuery for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetProtectedQuery func (c *CleanRooms) GetProtectedQuery(input *GetProtectedQueryInput) (*GetProtectedQueryOutput, error) { req, out := c.GetProtectedQueryRequest(input) return out, req.Send() } // GetProtectedQueryWithContext is the same as GetProtectedQuery with the addition of // the ability to pass a context and additional request options. // // See GetProtectedQuery for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetProtectedQueryWithContext(ctx aws.Context, input *GetProtectedQueryInput, opts ...request.Option) (*GetProtectedQueryOutput, error) { req, out := c.GetProtectedQueryRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetSchema = "GetSchema" // GetSchemaRequest generates a "aws/request.Request" representing the // client's request for the GetSchema operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetSchema for more information on using the GetSchema // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetSchemaRequest method. // req, resp := client.GetSchemaRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchema func (c *CleanRooms) GetSchemaRequest(input *GetSchemaInput) (req *request.Request, output *GetSchemaOutput) { op := &request.Operation{ Name: opGetSchema, HTTPMethod: "GET", HTTPPath: "/collaborations/{collaborationIdentifier}/schemas/{name}", } if input == nil { input = &GetSchemaInput{} } output = &GetSchemaOutput{} req = c.newRequest(op, input, output) return } // GetSchema API operation for AWS Clean Rooms Service. // // Retrieves the schema for a relation within a collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetSchema for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchema func (c *CleanRooms) GetSchema(input *GetSchemaInput) (*GetSchemaOutput, error) { req, out := c.GetSchemaRequest(input) return out, req.Send() } // GetSchemaWithContext is the same as GetSchema with the addition of // the ability to pass a context and additional request options. // // See GetSchema for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetSchemaWithContext(ctx aws.Context, input *GetSchemaInput, opts ...request.Option) (*GetSchemaOutput, error) { req, out := c.GetSchemaRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetSchemaAnalysisRule = "GetSchemaAnalysisRule" // GetSchemaAnalysisRuleRequest generates a "aws/request.Request" representing the // client's request for the GetSchemaAnalysisRule operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetSchemaAnalysisRule for more information on using the GetSchemaAnalysisRule // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetSchemaAnalysisRuleRequest method. // req, resp := client.GetSchemaAnalysisRuleRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchemaAnalysisRule func (c *CleanRooms) GetSchemaAnalysisRuleRequest(input *GetSchemaAnalysisRuleInput) (req *request.Request, output *GetSchemaAnalysisRuleOutput) { op := &request.Operation{ Name: opGetSchemaAnalysisRule, HTTPMethod: "GET", HTTPPath: "/collaborations/{collaborationIdentifier}/schemas/{name}/analysisRule/{type}", } if input == nil { input = &GetSchemaAnalysisRuleInput{} } output = &GetSchemaAnalysisRuleOutput{} req = c.newRequest(op, input, output) return } // GetSchemaAnalysisRule API operation for AWS Clean Rooms Service. // // Retrieves a schema analysis rule. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation GetSchemaAnalysisRule for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchemaAnalysisRule func (c *CleanRooms) GetSchemaAnalysisRule(input *GetSchemaAnalysisRuleInput) (*GetSchemaAnalysisRuleOutput, error) { req, out := c.GetSchemaAnalysisRuleRequest(input) return out, req.Send() } // GetSchemaAnalysisRuleWithContext is the same as GetSchemaAnalysisRule with the addition of // the ability to pass a context and additional request options. // // See GetSchemaAnalysisRule for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) GetSchemaAnalysisRuleWithContext(ctx aws.Context, input *GetSchemaAnalysisRuleInput, opts ...request.Option) (*GetSchemaAnalysisRuleOutput, error) { req, out := c.GetSchemaAnalysisRuleRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opListCollaborations = "ListCollaborations" // ListCollaborationsRequest generates a "aws/request.Request" representing the // client's request for the ListCollaborations operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListCollaborations for more information on using the ListCollaborations // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListCollaborationsRequest method. // req, resp := client.ListCollaborationsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborations func (c *CleanRooms) ListCollaborationsRequest(input *ListCollaborationsInput) (req *request.Request, output *ListCollaborationsOutput) { op := &request.Operation{ Name: opListCollaborations, HTTPMethod: "GET", HTTPPath: "/collaborations", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListCollaborationsInput{} } output = &ListCollaborationsOutput{} req = c.newRequest(op, input, output) return } // ListCollaborations API operation for AWS Clean Rooms Service. // // Lists collaborations the caller owns, is active in, or has been invited to. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListCollaborations for usage and error information. // // Returned Error Types: // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborations func (c *CleanRooms) ListCollaborations(input *ListCollaborationsInput) (*ListCollaborationsOutput, error) { req, out := c.ListCollaborationsRequest(input) return out, req.Send() } // ListCollaborationsWithContext is the same as ListCollaborations with the addition of // the ability to pass a context and additional request options. // // See ListCollaborations for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListCollaborationsWithContext(ctx aws.Context, input *ListCollaborationsInput, opts ...request.Option) (*ListCollaborationsOutput, error) { req, out := c.ListCollaborationsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // ListCollaborationsPages iterates over the pages of a ListCollaborations operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See ListCollaborations method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a ListCollaborations operation. // pageNum := 0 // err := client.ListCollaborationsPages(params, // func(page *cleanrooms.ListCollaborationsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CleanRooms) ListCollaborationsPages(input *ListCollaborationsInput, fn func(*ListCollaborationsOutput, bool) bool) error { return c.ListCollaborationsPagesWithContext(aws.BackgroundContext(), input, fn) } // ListCollaborationsPagesWithContext same as ListCollaborationsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListCollaborationsPagesWithContext(ctx aws.Context, input *ListCollaborationsInput, fn func(*ListCollaborationsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ NewRequest: func() (*request.Request, error) { var inCpy *ListCollaborationsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.ListCollaborationsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*ListCollaborationsOutput), !p.HasNextPage()) { break } } return p.Err() } const opListConfiguredTableAssociations = "ListConfiguredTableAssociations" // ListConfiguredTableAssociationsRequest generates a "aws/request.Request" representing the // client's request for the ListConfiguredTableAssociations operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListConfiguredTableAssociations for more information on using the ListConfiguredTableAssociations // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListConfiguredTableAssociationsRequest method. // req, resp := client.ListConfiguredTableAssociationsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociations func (c *CleanRooms) ListConfiguredTableAssociationsRequest(input *ListConfiguredTableAssociationsInput) (req *request.Request, output *ListConfiguredTableAssociationsOutput) { op := &request.Operation{ Name: opListConfiguredTableAssociations, HTTPMethod: "GET", HTTPPath: "/memberships/{membershipIdentifier}/configuredTableAssociations", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListConfiguredTableAssociationsInput{} } output = &ListConfiguredTableAssociationsOutput{} req = c.newRequest(op, input, output) return } // ListConfiguredTableAssociations API operation for AWS Clean Rooms Service. // // Lists configured table associations for a membership. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListConfiguredTableAssociations for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociations func (c *CleanRooms) ListConfiguredTableAssociations(input *ListConfiguredTableAssociationsInput) (*ListConfiguredTableAssociationsOutput, error) { req, out := c.ListConfiguredTableAssociationsRequest(input) return out, req.Send() } // ListConfiguredTableAssociationsWithContext is the same as ListConfiguredTableAssociations with the addition of // the ability to pass a context and additional request options. // // See ListConfiguredTableAssociations for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListConfiguredTableAssociationsWithContext(ctx aws.Context, input *ListConfiguredTableAssociationsInput, opts ...request.Option) (*ListConfiguredTableAssociationsOutput, error) { req, out := c.ListConfiguredTableAssociationsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // ListConfiguredTableAssociationsPages iterates over the pages of a ListConfiguredTableAssociations operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See ListConfiguredTableAssociations method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a ListConfiguredTableAssociations operation. // pageNum := 0 // err := client.ListConfiguredTableAssociationsPages(params, // func(page *cleanrooms.ListConfiguredTableAssociationsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CleanRooms) ListConfiguredTableAssociationsPages(input *ListConfiguredTableAssociationsInput, fn func(*ListConfiguredTableAssociationsOutput, bool) bool) error { return c.ListConfiguredTableAssociationsPagesWithContext(aws.BackgroundContext(), input, fn) } // ListConfiguredTableAssociationsPagesWithContext same as ListConfiguredTableAssociationsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListConfiguredTableAssociationsPagesWithContext(ctx aws.Context, input *ListConfiguredTableAssociationsInput, fn func(*ListConfiguredTableAssociationsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ NewRequest: func() (*request.Request, error) { var inCpy *ListConfiguredTableAssociationsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.ListConfiguredTableAssociationsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*ListConfiguredTableAssociationsOutput), !p.HasNextPage()) { break } } return p.Err() } const opListConfiguredTables = "ListConfiguredTables" // ListConfiguredTablesRequest generates a "aws/request.Request" representing the // client's request for the ListConfiguredTables operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListConfiguredTables for more information on using the ListConfiguredTables // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListConfiguredTablesRequest method. // req, resp := client.ListConfiguredTablesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTables func (c *CleanRooms) ListConfiguredTablesRequest(input *ListConfiguredTablesInput) (req *request.Request, output *ListConfiguredTablesOutput) { op := &request.Operation{ Name: opListConfiguredTables, HTTPMethod: "GET", HTTPPath: "/configuredTables", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListConfiguredTablesInput{} } output = &ListConfiguredTablesOutput{} req = c.newRequest(op, input, output) return } // ListConfiguredTables API operation for AWS Clean Rooms Service. // // Lists configured tables. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListConfiguredTables for usage and error information. // // Returned Error Types: // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTables func (c *CleanRooms) ListConfiguredTables(input *ListConfiguredTablesInput) (*ListConfiguredTablesOutput, error) { req, out := c.ListConfiguredTablesRequest(input) return out, req.Send() } // ListConfiguredTablesWithContext is the same as ListConfiguredTables with the addition of // the ability to pass a context and additional request options. // // See ListConfiguredTables for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListConfiguredTablesWithContext(ctx aws.Context, input *ListConfiguredTablesInput, opts ...request.Option) (*ListConfiguredTablesOutput, error) { req, out := c.ListConfiguredTablesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // ListConfiguredTablesPages iterates over the pages of a ListConfiguredTables operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See ListConfiguredTables method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a ListConfiguredTables operation. // pageNum := 0 // err := client.ListConfiguredTablesPages(params, // func(page *cleanrooms.ListConfiguredTablesOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CleanRooms) ListConfiguredTablesPages(input *ListConfiguredTablesInput, fn func(*ListConfiguredTablesOutput, bool) bool) error { return c.ListConfiguredTablesPagesWithContext(aws.BackgroundContext(), input, fn) } // ListConfiguredTablesPagesWithContext same as ListConfiguredTablesPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListConfiguredTablesPagesWithContext(ctx aws.Context, input *ListConfiguredTablesInput, fn func(*ListConfiguredTablesOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ NewRequest: func() (*request.Request, error) { var inCpy *ListConfiguredTablesInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.ListConfiguredTablesRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*ListConfiguredTablesOutput), !p.HasNextPage()) { break } } return p.Err() } const opListMembers = "ListMembers" // ListMembersRequest generates a "aws/request.Request" representing the // client's request for the ListMembers operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListMembers for more information on using the ListMembers // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListMembersRequest method. // req, resp := client.ListMembersRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembers func (c *CleanRooms) ListMembersRequest(input *ListMembersInput) (req *request.Request, output *ListMembersOutput) { op := &request.Operation{ Name: opListMembers, HTTPMethod: "GET", HTTPPath: "/collaborations/{collaborationIdentifier}/members", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListMembersInput{} } output = &ListMembersOutput{} req = c.newRequest(op, input, output) return } // ListMembers API operation for AWS Clean Rooms Service. // // Lists all members within a collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListMembers for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembers func (c *CleanRooms) ListMembers(input *ListMembersInput) (*ListMembersOutput, error) { req, out := c.ListMembersRequest(input) return out, req.Send() } // ListMembersWithContext is the same as ListMembers with the addition of // the ability to pass a context and additional request options. // // See ListMembers for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListMembersWithContext(ctx aws.Context, input *ListMembersInput, opts ...request.Option) (*ListMembersOutput, error) { req, out := c.ListMembersRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // ListMembersPages iterates over the pages of a ListMembers operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See ListMembers method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a ListMembers operation. // pageNum := 0 // err := client.ListMembersPages(params, // func(page *cleanrooms.ListMembersOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CleanRooms) ListMembersPages(input *ListMembersInput, fn func(*ListMembersOutput, bool) bool) error { return c.ListMembersPagesWithContext(aws.BackgroundContext(), input, fn) } // ListMembersPagesWithContext same as ListMembersPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListMembersPagesWithContext(ctx aws.Context, input *ListMembersInput, fn func(*ListMembersOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ NewRequest: func() (*request.Request, error) { var inCpy *ListMembersInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.ListMembersRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*ListMembersOutput), !p.HasNextPage()) { break } } return p.Err() } const opListMemberships = "ListMemberships" // ListMembershipsRequest generates a "aws/request.Request" representing the // client's request for the ListMemberships operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListMemberships for more information on using the ListMemberships // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListMembershipsRequest method. // req, resp := client.ListMembershipsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMemberships func (c *CleanRooms) ListMembershipsRequest(input *ListMembershipsInput) (req *request.Request, output *ListMembershipsOutput) { op := &request.Operation{ Name: opListMemberships, HTTPMethod: "GET", HTTPPath: "/memberships", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListMembershipsInput{} } output = &ListMembershipsOutput{} req = c.newRequest(op, input, output) return } // ListMemberships API operation for AWS Clean Rooms Service. // // Lists all memberships resources within the caller's account. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListMemberships for usage and error information. // // Returned Error Types: // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMemberships func (c *CleanRooms) ListMemberships(input *ListMembershipsInput) (*ListMembershipsOutput, error) { req, out := c.ListMembershipsRequest(input) return out, req.Send() } // ListMembershipsWithContext is the same as ListMemberships with the addition of // the ability to pass a context and additional request options. // // See ListMemberships for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListMembershipsWithContext(ctx aws.Context, input *ListMembershipsInput, opts ...request.Option) (*ListMembershipsOutput, error) { req, out := c.ListMembershipsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // ListMembershipsPages iterates over the pages of a ListMemberships operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See ListMemberships method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a ListMemberships operation. // pageNum := 0 // err := client.ListMembershipsPages(params, // func(page *cleanrooms.ListMembershipsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CleanRooms) ListMembershipsPages(input *ListMembershipsInput, fn func(*ListMembershipsOutput, bool) bool) error { return c.ListMembershipsPagesWithContext(aws.BackgroundContext(), input, fn) } // ListMembershipsPagesWithContext same as ListMembershipsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListMembershipsPagesWithContext(ctx aws.Context, input *ListMembershipsInput, fn func(*ListMembershipsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ NewRequest: func() (*request.Request, error) { var inCpy *ListMembershipsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.ListMembershipsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*ListMembershipsOutput), !p.HasNextPage()) { break } } return p.Err() } const opListProtectedQueries = "ListProtectedQueries" // ListProtectedQueriesRequest generates a "aws/request.Request" representing the // client's request for the ListProtectedQueries operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListProtectedQueries for more information on using the ListProtectedQueries // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListProtectedQueriesRequest method. // req, resp := client.ListProtectedQueriesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueries func (c *CleanRooms) ListProtectedQueriesRequest(input *ListProtectedQueriesInput) (req *request.Request, output *ListProtectedQueriesOutput) { op := &request.Operation{ Name: opListProtectedQueries, HTTPMethod: "GET", HTTPPath: "/memberships/{membershipIdentifier}/protectedQueries", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListProtectedQueriesInput{} } output = &ListProtectedQueriesOutput{} req = c.newRequest(op, input, output) return } // ListProtectedQueries API operation for AWS Clean Rooms Service. // // Lists protected queries, sorted by the most recent query. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListProtectedQueries for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueries func (c *CleanRooms) ListProtectedQueries(input *ListProtectedQueriesInput) (*ListProtectedQueriesOutput, error) { req, out := c.ListProtectedQueriesRequest(input) return out, req.Send() } // ListProtectedQueriesWithContext is the same as ListProtectedQueries with the addition of // the ability to pass a context and additional request options. // // See ListProtectedQueries for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListProtectedQueriesWithContext(ctx aws.Context, input *ListProtectedQueriesInput, opts ...request.Option) (*ListProtectedQueriesOutput, error) { req, out := c.ListProtectedQueriesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // ListProtectedQueriesPages iterates over the pages of a ListProtectedQueries operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See ListProtectedQueries method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a ListProtectedQueries operation. // pageNum := 0 // err := client.ListProtectedQueriesPages(params, // func(page *cleanrooms.ListProtectedQueriesOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CleanRooms) ListProtectedQueriesPages(input *ListProtectedQueriesInput, fn func(*ListProtectedQueriesOutput, bool) bool) error { return c.ListProtectedQueriesPagesWithContext(aws.BackgroundContext(), input, fn) } // ListProtectedQueriesPagesWithContext same as ListProtectedQueriesPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListProtectedQueriesPagesWithContext(ctx aws.Context, input *ListProtectedQueriesInput, fn func(*ListProtectedQueriesOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ NewRequest: func() (*request.Request, error) { var inCpy *ListProtectedQueriesInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.ListProtectedQueriesRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*ListProtectedQueriesOutput), !p.HasNextPage()) { break } } return p.Err() } const opListSchemas = "ListSchemas" // ListSchemasRequest generates a "aws/request.Request" representing the // client's request for the ListSchemas operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListSchemas for more information on using the ListSchemas // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListSchemasRequest method. // req, resp := client.ListSchemasRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemas func (c *CleanRooms) ListSchemasRequest(input *ListSchemasInput) (req *request.Request, output *ListSchemasOutput) { op := &request.Operation{ Name: opListSchemas, HTTPMethod: "GET", HTTPPath: "/collaborations/{collaborationIdentifier}/schemas", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListSchemasInput{} } output = &ListSchemasOutput{} req = c.newRequest(op, input, output) return } // ListSchemas API operation for AWS Clean Rooms Service. // // Lists the schemas for relations within a collaboration. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListSchemas for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemas func (c *CleanRooms) ListSchemas(input *ListSchemasInput) (*ListSchemasOutput, error) { req, out := c.ListSchemasRequest(input) return out, req.Send() } // ListSchemasWithContext is the same as ListSchemas with the addition of // the ability to pass a context and additional request options. // // See ListSchemas for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListSchemasWithContext(ctx aws.Context, input *ListSchemasInput, opts ...request.Option) (*ListSchemasOutput, error) { req, out := c.ListSchemasRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // ListSchemasPages iterates over the pages of a ListSchemas operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See ListSchemas method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a ListSchemas operation. // pageNum := 0 // err := client.ListSchemasPages(params, // func(page *cleanrooms.ListSchemasOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CleanRooms) ListSchemasPages(input *ListSchemasInput, fn func(*ListSchemasOutput, bool) bool) error { return c.ListSchemasPagesWithContext(aws.BackgroundContext(), input, fn) } // ListSchemasPagesWithContext same as ListSchemasPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListSchemasPagesWithContext(ctx aws.Context, input *ListSchemasInput, fn func(*ListSchemasOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ NewRequest: func() (*request.Request, error) { var inCpy *ListSchemasInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.ListSchemasRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*ListSchemasOutput), !p.HasNextPage()) { break } } return p.Err() } const opListTagsForResource = "ListTagsForResource" // ListTagsForResourceRequest generates a "aws/request.Request" representing the // client's request for the ListTagsForResource operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListTagsForResource for more information on using the ListTagsForResource // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListTagsForResourceRequest method. // req, resp := client.ListTagsForResourceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListTagsForResource func (c *CleanRooms) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput) { op := &request.Operation{ Name: opListTagsForResource, HTTPMethod: "GET", HTTPPath: "/tags/{resourceArn}", } if input == nil { input = &ListTagsForResourceInput{} } output = &ListTagsForResourceOutput{} req = c.newRequest(op, input, output) return } // ListTagsForResource API operation for AWS Clean Rooms Service. // // Lists all of the tags that have been added to a resource. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation ListTagsForResource for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - ValidationException // The input fails to satisfy the specified constraints. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListTagsForResource func (c *CleanRooms) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) { req, out := c.ListTagsForResourceRequest(input) return out, req.Send() } // ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of // the ability to pass a context and additional request options. // // See ListTagsForResource for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error) { req, out := c.ListTagsForResourceRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opStartProtectedQuery = "StartProtectedQuery" // StartProtectedQueryRequest generates a "aws/request.Request" representing the // client's request for the StartProtectedQuery operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See StartProtectedQuery for more information on using the StartProtectedQuery // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the StartProtectedQueryRequest method. // req, resp := client.StartProtectedQueryRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedQuery func (c *CleanRooms) StartProtectedQueryRequest(input *StartProtectedQueryInput) (req *request.Request, output *StartProtectedQueryOutput) { op := &request.Operation{ Name: opStartProtectedQuery, HTTPMethod: "POST", HTTPPath: "/memberships/{membershipIdentifier}/protectedQueries", } if input == nil { input = &StartProtectedQueryInput{} } output = &StartProtectedQueryOutput{} req = c.newRequest(op, input, output) return } // StartProtectedQuery API operation for AWS Clean Rooms Service. // // Creates a protected query that is started by Clean Rooms . // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation StartProtectedQuery for usage and error information. // // Returned Error Types: // // - ServiceQuotaExceededException // Request denied because service quota has been exceeded. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedQuery func (c *CleanRooms) StartProtectedQuery(input *StartProtectedQueryInput) (*StartProtectedQueryOutput, error) { req, out := c.StartProtectedQueryRequest(input) return out, req.Send() } // StartProtectedQueryWithContext is the same as StartProtectedQuery with the addition of // the ability to pass a context and additional request options. // // See StartProtectedQuery for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) StartProtectedQueryWithContext(ctx aws.Context, input *StartProtectedQueryInput, opts ...request.Option) (*StartProtectedQueryOutput, error) { req, out := c.StartProtectedQueryRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opTagResource = "TagResource" // TagResourceRequest generates a "aws/request.Request" representing the // client's request for the TagResource operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See TagResource for more information on using the TagResource // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the TagResourceRequest method. // req, resp := client.TagResourceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/TagResource func (c *CleanRooms) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput) { op := &request.Operation{ Name: opTagResource, HTTPMethod: "POST", HTTPPath: "/tags/{resourceArn}", } if input == nil { input = &TagResourceInput{} } output = &TagResourceOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // TagResource API operation for AWS Clean Rooms Service. // // Tags a resource. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation TagResource for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - ValidationException // The input fails to satisfy the specified constraints. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/TagResource func (c *CleanRooms) TagResource(input *TagResourceInput) (*TagResourceOutput, error) { req, out := c.TagResourceRequest(input) return out, req.Send() } // TagResourceWithContext is the same as TagResource with the addition of // the ability to pass a context and additional request options. // // See TagResource for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error) { req, out := c.TagResourceRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUntagResource = "UntagResource" // UntagResourceRequest generates a "aws/request.Request" representing the // client's request for the UntagResource operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UntagResource for more information on using the UntagResource // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UntagResourceRequest method. // req, resp := client.UntagResourceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UntagResource func (c *CleanRooms) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput) { op := &request.Operation{ Name: opUntagResource, HTTPMethod: "DELETE", HTTPPath: "/tags/{resourceArn}", } if input == nil { input = &UntagResourceInput{} } output = &UntagResourceOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(restjson.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // UntagResource API operation for AWS Clean Rooms Service. // // Removes a tag or list of tags from a resource. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation UntagResource for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // Request references a resource which does not exist. // // - ValidationException // The input fails to satisfy the specified constraints. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UntagResource func (c *CleanRooms) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error) { req, out := c.UntagResourceRequest(input) return out, req.Send() } // UntagResourceWithContext is the same as UntagResource with the addition of // the ability to pass a context and additional request options. // // See UntagResource for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error) { req, out := c.UntagResourceRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateCollaboration = "UpdateCollaboration" // UpdateCollaborationRequest generates a "aws/request.Request" representing the // client's request for the UpdateCollaboration operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateCollaboration for more information on using the UpdateCollaboration // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UpdateCollaborationRequest method. // req, resp := client.UpdateCollaborationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaboration func (c *CleanRooms) UpdateCollaborationRequest(input *UpdateCollaborationInput) (req *request.Request, output *UpdateCollaborationOutput) { op := &request.Operation{ Name: opUpdateCollaboration, HTTPMethod: "PATCH", HTTPPath: "/collaborations/{collaborationIdentifier}", } if input == nil { input = &UpdateCollaborationInput{} } output = &UpdateCollaborationOutput{} req = c.newRequest(op, input, output) return } // UpdateCollaboration API operation for AWS Clean Rooms Service. // // Updates collaboration metadata and can only be called by the collaboration // owner. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation UpdateCollaboration for usage and error information. // // Returned Error Types: // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaboration func (c *CleanRooms) UpdateCollaboration(input *UpdateCollaborationInput) (*UpdateCollaborationOutput, error) { req, out := c.UpdateCollaborationRequest(input) return out, req.Send() } // UpdateCollaborationWithContext is the same as UpdateCollaboration with the addition of // the ability to pass a context and additional request options. // // See UpdateCollaboration for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) UpdateCollaborationWithContext(ctx aws.Context, input *UpdateCollaborationInput, opts ...request.Option) (*UpdateCollaborationOutput, error) { req, out := c.UpdateCollaborationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateConfiguredTable = "UpdateConfiguredTable" // UpdateConfiguredTableRequest generates a "aws/request.Request" representing the // client's request for the UpdateConfiguredTable operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateConfiguredTable for more information on using the UpdateConfiguredTable // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UpdateConfiguredTableRequest method. // req, resp := client.UpdateConfiguredTableRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTable func (c *CleanRooms) UpdateConfiguredTableRequest(input *UpdateConfiguredTableInput) (req *request.Request, output *UpdateConfiguredTableOutput) { op := &request.Operation{ Name: opUpdateConfiguredTable, HTTPMethod: "PATCH", HTTPPath: "/configuredTables/{configuredTableIdentifier}", } if input == nil { input = &UpdateConfiguredTableInput{} } output = &UpdateConfiguredTableOutput{} req = c.newRequest(op, input, output) return } // UpdateConfiguredTable API operation for AWS Clean Rooms Service. // // Updates a configured table. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation UpdateConfiguredTable for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTable func (c *CleanRooms) UpdateConfiguredTable(input *UpdateConfiguredTableInput) (*UpdateConfiguredTableOutput, error) { req, out := c.UpdateConfiguredTableRequest(input) return out, req.Send() } // UpdateConfiguredTableWithContext is the same as UpdateConfiguredTable with the addition of // the ability to pass a context and additional request options. // // See UpdateConfiguredTable for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) UpdateConfiguredTableWithContext(ctx aws.Context, input *UpdateConfiguredTableInput, opts ...request.Option) (*UpdateConfiguredTableOutput, error) { req, out := c.UpdateConfiguredTableRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateConfiguredTableAnalysisRule = "UpdateConfiguredTableAnalysisRule" // UpdateConfiguredTableAnalysisRuleRequest generates a "aws/request.Request" representing the // client's request for the UpdateConfiguredTableAnalysisRule operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateConfiguredTableAnalysisRule for more information on using the UpdateConfiguredTableAnalysisRule // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UpdateConfiguredTableAnalysisRuleRequest method. // req, resp := client.UpdateConfiguredTableAnalysisRuleRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAnalysisRule func (c *CleanRooms) UpdateConfiguredTableAnalysisRuleRequest(input *UpdateConfiguredTableAnalysisRuleInput) (req *request.Request, output *UpdateConfiguredTableAnalysisRuleOutput) { op := &request.Operation{ Name: opUpdateConfiguredTableAnalysisRule, HTTPMethod: "PATCH", HTTPPath: "/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}", } if input == nil { input = &UpdateConfiguredTableAnalysisRuleInput{} } output = &UpdateConfiguredTableAnalysisRuleOutput{} req = c.newRequest(op, input, output) return } // UpdateConfiguredTableAnalysisRule API operation for AWS Clean Rooms Service. // // Updates a configured table analysis rule. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation UpdateConfiguredTableAnalysisRule for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAnalysisRule func (c *CleanRooms) UpdateConfiguredTableAnalysisRule(input *UpdateConfiguredTableAnalysisRuleInput) (*UpdateConfiguredTableAnalysisRuleOutput, error) { req, out := c.UpdateConfiguredTableAnalysisRuleRequest(input) return out, req.Send() } // UpdateConfiguredTableAnalysisRuleWithContext is the same as UpdateConfiguredTableAnalysisRule with the addition of // the ability to pass a context and additional request options. // // See UpdateConfiguredTableAnalysisRule for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) UpdateConfiguredTableAnalysisRuleWithContext(ctx aws.Context, input *UpdateConfiguredTableAnalysisRuleInput, opts ...request.Option) (*UpdateConfiguredTableAnalysisRuleOutput, error) { req, out := c.UpdateConfiguredTableAnalysisRuleRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateConfiguredTableAssociation = "UpdateConfiguredTableAssociation" // UpdateConfiguredTableAssociationRequest generates a "aws/request.Request" representing the // client's request for the UpdateConfiguredTableAssociation operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateConfiguredTableAssociation for more information on using the UpdateConfiguredTableAssociation // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UpdateConfiguredTableAssociationRequest method. // req, resp := client.UpdateConfiguredTableAssociationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociation func (c *CleanRooms) UpdateConfiguredTableAssociationRequest(input *UpdateConfiguredTableAssociationInput) (req *request.Request, output *UpdateConfiguredTableAssociationOutput) { op := &request.Operation{ Name: opUpdateConfiguredTableAssociation, HTTPMethod: "PATCH", HTTPPath: "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}", } if input == nil { input = &UpdateConfiguredTableAssociationInput{} } output = &UpdateConfiguredTableAssociationOutput{} req = c.newRequest(op, input, output) return } // UpdateConfiguredTableAssociation API operation for AWS Clean Rooms Service. // // Updates a configured table association. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation UpdateConfiguredTableAssociation for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociation func (c *CleanRooms) UpdateConfiguredTableAssociation(input *UpdateConfiguredTableAssociationInput) (*UpdateConfiguredTableAssociationOutput, error) { req, out := c.UpdateConfiguredTableAssociationRequest(input) return out, req.Send() } // UpdateConfiguredTableAssociationWithContext is the same as UpdateConfiguredTableAssociation with the addition of // the ability to pass a context and additional request options. // // See UpdateConfiguredTableAssociation for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) UpdateConfiguredTableAssociationWithContext(ctx aws.Context, input *UpdateConfiguredTableAssociationInput, opts ...request.Option) (*UpdateConfiguredTableAssociationOutput, error) { req, out := c.UpdateConfiguredTableAssociationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateMembership = "UpdateMembership" // UpdateMembershipRequest generates a "aws/request.Request" representing the // client's request for the UpdateMembership operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateMembership for more information on using the UpdateMembership // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UpdateMembershipRequest method. // req, resp := client.UpdateMembershipRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership func (c *CleanRooms) UpdateMembershipRequest(input *UpdateMembershipInput) (req *request.Request, output *UpdateMembershipOutput) { op := &request.Operation{ Name: opUpdateMembership, HTTPMethod: "PATCH", HTTPPath: "/memberships/{membershipIdentifier}", } if input == nil { input = &UpdateMembershipInput{} } output = &UpdateMembershipOutput{} req = c.newRequest(op, input, output) return } // UpdateMembership API operation for AWS Clean Rooms Service. // // Updates a membership. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation UpdateMembership for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership func (c *CleanRooms) UpdateMembership(input *UpdateMembershipInput) (*UpdateMembershipOutput, error) { req, out := c.UpdateMembershipRequest(input) return out, req.Send() } // UpdateMembershipWithContext is the same as UpdateMembership with the addition of // the ability to pass a context and additional request options. // // See UpdateMembership for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) UpdateMembershipWithContext(ctx aws.Context, input *UpdateMembershipInput, opts ...request.Option) (*UpdateMembershipOutput, error) { req, out := c.UpdateMembershipRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateProtectedQuery = "UpdateProtectedQuery" // UpdateProtectedQueryRequest generates a "aws/request.Request" representing the // client's request for the UpdateProtectedQuery operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateProtectedQuery for more information on using the UpdateProtectedQuery // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UpdateProtectedQueryRequest method. // req, resp := client.UpdateProtectedQueryRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateProtectedQuery func (c *CleanRooms) UpdateProtectedQueryRequest(input *UpdateProtectedQueryInput) (req *request.Request, output *UpdateProtectedQueryOutput) { op := &request.Operation{ Name: opUpdateProtectedQuery, HTTPMethod: "PATCH", HTTPPath: "/memberships/{membershipIdentifier}/protectedQueries/{protectedQueryIdentifier}", } if input == nil { input = &UpdateProtectedQueryInput{} } output = &UpdateProtectedQueryOutput{} req = c.newRequest(op, input, output) return } // UpdateProtectedQuery API operation for AWS Clean Rooms Service. // // Updates the processing of a currently running query. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for AWS Clean Rooms Service's // API operation UpdateProtectedQuery for usage and error information. // // Returned Error Types: // // - ConflictException // Updating or deleting a resource can cause an inconsistent state. // // - ResourceNotFoundException // Request references a resource which does not exist. // // - InternalServerException // Unexpected error during processing of request. // // - ValidationException // The input fails to satisfy the specified constraints. // // - ThrottlingException // Request was denied due to request throttling. // // - AccessDeniedException // Caller does not have sufficient access to perform this action. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateProtectedQuery func (c *CleanRooms) UpdateProtectedQuery(input *UpdateProtectedQueryInput) (*UpdateProtectedQueryOutput, error) { req, out := c.UpdateProtectedQueryRequest(input) return out, req.Send() } // UpdateProtectedQueryWithContext is the same as UpdateProtectedQuery with the addition of // the ability to pass a context and additional request options. // // See UpdateProtectedQuery for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CleanRooms) UpdateProtectedQueryWithContext(ctx aws.Context, input *UpdateProtectedQueryInput, opts ...request.Option) (*UpdateProtectedQueryOutput, error) { req, out := c.UpdateProtectedQueryRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // Caller does not have sufficient access to perform this action. type AccessDeniedException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // A reason code for the exception. Reason *string `locationName:"reason" type:"string" enum:"AccessDeniedExceptionReason"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AccessDeniedException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AccessDeniedException) GoString() string { return s.String() } func newErrorAccessDeniedException(v protocol.ResponseMetadata) error { return &AccessDeniedException{ RespMetadata: v, } } // Code returns the exception type name. func (s *AccessDeniedException) Code() string { return "AccessDeniedException" } // Message returns the exception's message. func (s *AccessDeniedException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *AccessDeniedException) OrigErr() error { return nil } func (s *AccessDeniedException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *AccessDeniedException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *AccessDeniedException) RequestID() string { return s.RespMetadata.RequestID } // Column in configured table that can be used in aggregate function in query. type AggregateColumn struct { _ struct{} `type:"structure"` // Column names in configured table of aggregate columns. // // ColumnNames is a required field ColumnNames []*string `locationName:"columnNames" min:"1" type:"list" required:"true"` // Aggregation function that can be applied to aggregate column in query. // // Function is a required field Function *string `locationName:"function" type:"string" required:"true" enum:"AggregateFunctionName"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AggregateColumn) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AggregateColumn) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AggregateColumn) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AggregateColumn"} if s.ColumnNames == nil { invalidParams.Add(request.NewErrParamRequired("ColumnNames")) } if s.ColumnNames != nil && len(s.ColumnNames) < 1 { invalidParams.Add(request.NewErrParamMinLen("ColumnNames", 1)) } if s.Function == nil { invalidParams.Add(request.NewErrParamRequired("Function")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetColumnNames sets the ColumnNames field's value. func (s *AggregateColumn) SetColumnNames(v []*string) *AggregateColumn { s.ColumnNames = v return s } // SetFunction sets the Function field's value. func (s *AggregateColumn) SetFunction(v string) *AggregateColumn { s.Function = &v return s } // Constraint on query output removing output rows that do not meet a minimum // number of distinct values of a specified column. type AggregationConstraint struct { _ struct{} `type:"structure"` // Column in aggregation constraint for which there must be a minimum number // of distinct values in an output row for it to be in the query output. // // ColumnName is a required field ColumnName *string `locationName:"columnName" min:"1" type:"string" required:"true"` // The minimum number of distinct values that an output row must be an aggregation // of. Minimum threshold of distinct values for a specified column that must // exist in an output row for it to be in the query output. // // Minimum is a required field Minimum *int64 `locationName:"minimum" min:"2" type:"integer" required:"true"` // The type of aggregation the constraint allows. The only valid value is currently // `COUNT_DISTINCT`. // // Type is a required field Type *string `locationName:"type" type:"string" required:"true" enum:"AggregationType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AggregationConstraint) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AggregationConstraint) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AggregationConstraint) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AggregationConstraint"} if s.ColumnName == nil { invalidParams.Add(request.NewErrParamRequired("ColumnName")) } if s.ColumnName != nil && len(*s.ColumnName) < 1 { invalidParams.Add(request.NewErrParamMinLen("ColumnName", 1)) } if s.Minimum == nil { invalidParams.Add(request.NewErrParamRequired("Minimum")) } if s.Minimum != nil && *s.Minimum < 2 { invalidParams.Add(request.NewErrParamMinValue("Minimum", 2)) } if s.Type == nil { invalidParams.Add(request.NewErrParamRequired("Type")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetColumnName sets the ColumnName field's value. func (s *AggregationConstraint) SetColumnName(v string) *AggregationConstraint { s.ColumnName = &v return s } // SetMinimum sets the Minimum field's value. func (s *AggregationConstraint) SetMinimum(v int64) *AggregationConstraint { s.Minimum = &v return s } // SetType sets the Type field's value. func (s *AggregationConstraint) SetType(v string) *AggregationConstraint { s.Type = &v return s } // A specification about how data from the configured table can be used in a // query. type AnalysisRule struct { _ struct{} `type:"structure"` // The unique ID for the associated collaboration. // // CollaborationId is a required field CollaborationId *string `locationName:"collaborationId" min:"36" type:"string" required:"true"` // The time the analysis rule was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The name for the analysis rule. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` // A policy that describes the associated data usage limitations. // // Policy is a required field Policy *AnalysisRulePolicy `locationName:"policy" type:"structure" required:"true"` // The type of analysis rule. Valid values are `AGGREGATION` and `LIST`. // // Type is a required field Type *string `locationName:"type" type:"string" required:"true" enum:"AnalysisRuleType"` // The time the analysis rule was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRule) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRule) GoString() string { return s.String() } // SetCollaborationId sets the CollaborationId field's value. func (s *AnalysisRule) SetCollaborationId(v string) *AnalysisRule { s.CollaborationId = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *AnalysisRule) SetCreateTime(v time.Time) *AnalysisRule { s.CreateTime = &v return s } // SetName sets the Name field's value. func (s *AnalysisRule) SetName(v string) *AnalysisRule { s.Name = &v return s } // SetPolicy sets the Policy field's value. func (s *AnalysisRule) SetPolicy(v *AnalysisRulePolicy) *AnalysisRule { s.Policy = v return s } // SetType sets the Type field's value. func (s *AnalysisRule) SetType(v string) *AnalysisRule { s.Type = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *AnalysisRule) SetUpdateTime(v time.Time) *AnalysisRule { s.UpdateTime = &v return s } // Enables query structure and specified queries that produce aggregate statistics. type AnalysisRuleAggregation struct { _ struct{} `type:"structure"` // The columns that query runners are allowed to use in aggregation queries. // // AggregateColumns is a required field AggregateColumns []*AggregateColumn `locationName:"aggregateColumns" min:"1" type:"list" required:"true"` // Which logical operators (if any) are to be used in an INNER JOIN match condition. // Default is AND. AllowedJoinOperators []*string `locationName:"allowedJoinOperators" type:"list" enum:"JoinOperator"` // The columns that query runners are allowed to select, group by, or filter // by. // // DimensionColumns is a required field DimensionColumns []*string `locationName:"dimensionColumns" type:"list" required:"true"` // Columns in configured table that can be used in join statements and/or as // aggregate columns. They can never be outputted directly. // // JoinColumns is a required field JoinColumns []*string `locationName:"joinColumns" type:"list" required:"true"` // Control that requires member who runs query to do a join with their configured // table and/or other configured table in query. JoinRequired *string `locationName:"joinRequired" type:"string" enum:"JoinRequiredOption"` // Columns that must meet a specific threshold value (after an aggregation function // is applied to it) for each output row to be returned. // // OutputConstraints is a required field OutputConstraints []*AggregationConstraint `locationName:"outputConstraints" min:"1" type:"list" required:"true"` // Set of scalar functions that are allowed to be used on dimension columns // and the output of aggregation of metrics. // // ScalarFunctions is a required field ScalarFunctions []*string `locationName:"scalarFunctions" type:"list" required:"true" enum:"ScalarFunctions"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRuleAggregation) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRuleAggregation) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AnalysisRuleAggregation) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AnalysisRuleAggregation"} if s.AggregateColumns == nil { invalidParams.Add(request.NewErrParamRequired("AggregateColumns")) } if s.AggregateColumns != nil && len(s.AggregateColumns) < 1 { invalidParams.Add(request.NewErrParamMinLen("AggregateColumns", 1)) } if s.DimensionColumns == nil { invalidParams.Add(request.NewErrParamRequired("DimensionColumns")) } if s.JoinColumns == nil { invalidParams.Add(request.NewErrParamRequired("JoinColumns")) } if s.OutputConstraints == nil { invalidParams.Add(request.NewErrParamRequired("OutputConstraints")) } if s.OutputConstraints != nil && len(s.OutputConstraints) < 1 { invalidParams.Add(request.NewErrParamMinLen("OutputConstraints", 1)) } if s.ScalarFunctions == nil { invalidParams.Add(request.NewErrParamRequired("ScalarFunctions")) } if s.AggregateColumns != nil { for i, v := range s.AggregateColumns { if v == nil { continue } if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "AggregateColumns", i), err.(request.ErrInvalidParams)) } } } if s.OutputConstraints != nil { for i, v := range s.OutputConstraints { if v == nil { continue } if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "OutputConstraints", i), err.(request.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAggregateColumns sets the AggregateColumns field's value. func (s *AnalysisRuleAggregation) SetAggregateColumns(v []*AggregateColumn) *AnalysisRuleAggregation { s.AggregateColumns = v return s } // SetAllowedJoinOperators sets the AllowedJoinOperators field's value. func (s *AnalysisRuleAggregation) SetAllowedJoinOperators(v []*string) *AnalysisRuleAggregation { s.AllowedJoinOperators = v return s } // SetDimensionColumns sets the DimensionColumns field's value. func (s *AnalysisRuleAggregation) SetDimensionColumns(v []*string) *AnalysisRuleAggregation { s.DimensionColumns = v return s } // SetJoinColumns sets the JoinColumns field's value. func (s *AnalysisRuleAggregation) SetJoinColumns(v []*string) *AnalysisRuleAggregation { s.JoinColumns = v return s } // SetJoinRequired sets the JoinRequired field's value. func (s *AnalysisRuleAggregation) SetJoinRequired(v string) *AnalysisRuleAggregation { s.JoinRequired = &v return s } // SetOutputConstraints sets the OutputConstraints field's value. func (s *AnalysisRuleAggregation) SetOutputConstraints(v []*AggregationConstraint) *AnalysisRuleAggregation { s.OutputConstraints = v return s } // SetScalarFunctions sets the ScalarFunctions field's value. func (s *AnalysisRuleAggregation) SetScalarFunctions(v []*string) *AnalysisRuleAggregation { s.ScalarFunctions = v return s } // A type of analysis rule that enables row-level analysis. type AnalysisRuleList struct { _ struct{} `type:"structure"` // Which logical operators (if any) are to be used in an INNER JOIN match condition. // Default is AND. AllowedJoinOperators []*string `locationName:"allowedJoinOperators" type:"list" enum:"JoinOperator"` // Columns that can be used to join a configured table with the table of the // member who can query and other members' configured tables. // // JoinColumns is a required field JoinColumns []*string `locationName:"joinColumns" min:"1" type:"list" required:"true"` // Columns that can be listed in the output. // // ListColumns is a required field ListColumns []*string `locationName:"listColumns" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRuleList) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRuleList) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AnalysisRuleList) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AnalysisRuleList"} if s.JoinColumns == nil { invalidParams.Add(request.NewErrParamRequired("JoinColumns")) } if s.JoinColumns != nil && len(s.JoinColumns) < 1 { invalidParams.Add(request.NewErrParamMinLen("JoinColumns", 1)) } if s.ListColumns == nil { invalidParams.Add(request.NewErrParamRequired("ListColumns")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAllowedJoinOperators sets the AllowedJoinOperators field's value. func (s *AnalysisRuleList) SetAllowedJoinOperators(v []*string) *AnalysisRuleList { s.AllowedJoinOperators = v return s } // SetJoinColumns sets the JoinColumns field's value. func (s *AnalysisRuleList) SetJoinColumns(v []*string) *AnalysisRuleList { s.JoinColumns = v return s } // SetListColumns sets the ListColumns field's value. func (s *AnalysisRuleList) SetListColumns(v []*string) *AnalysisRuleList { s.ListColumns = v return s } // Controls on the query specifications that can be run on configured table.. type AnalysisRulePolicy struct { _ struct{} `type:"structure"` // Controls on the query specifications that can be run on configured table.. V1 *AnalysisRulePolicyV1 `locationName:"v1" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRulePolicy) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRulePolicy) GoString() string { return s.String() } // SetV1 sets the V1 field's value. func (s *AnalysisRulePolicy) SetV1(v *AnalysisRulePolicyV1) *AnalysisRulePolicy { s.V1 = v return s } // Controls on the query specifications that can be run on configured table.. type AnalysisRulePolicyV1 struct { _ struct{} `type:"structure"` // Analysis rule type that enables only aggregation queries on a configured // table. Aggregation *AnalysisRuleAggregation `locationName:"aggregation" type:"structure"` // Analysis rule type that enables only list queries on a configured table. List *AnalysisRuleList `locationName:"list" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRulePolicyV1) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AnalysisRulePolicyV1) GoString() string { return s.String() } // SetAggregation sets the Aggregation field's value. func (s *AnalysisRulePolicyV1) SetAggregation(v *AnalysisRuleAggregation) *AnalysisRulePolicyV1 { s.Aggregation = v return s } // SetList sets the List field's value. func (s *AnalysisRulePolicyV1) SetList(v *AnalysisRuleList) *AnalysisRulePolicyV1 { s.List = v return s } // An error describing why a schema could not be fetched. type BatchGetSchemaError struct { _ struct{} `type:"structure"` // An error code for the error. // // Code is a required field Code *string `locationName:"code" type:"string" required:"true"` // An error message for the error. // // Message is a required field Message *string `locationName:"message" type:"string" required:"true"` // An error name for the error. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s BatchGetSchemaError) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s BatchGetSchemaError) GoString() string { return s.String() } // SetCode sets the Code field's value. func (s *BatchGetSchemaError) SetCode(v string) *BatchGetSchemaError { s.Code = &v return s } // SetMessage sets the Message field's value. func (s *BatchGetSchemaError) SetMessage(v string) *BatchGetSchemaError { s.Message = &v return s } // SetName sets the Name field's value. func (s *BatchGetSchemaError) SetName(v string) *BatchGetSchemaError { s.Name = &v return s } type BatchGetSchemaInput struct { _ struct{} `type:"structure"` // A unique identifier for the collaboration that the schemas belong to. Currently // accepts collaboration ID. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` // The names for the schema objects to retrieve.> // // Names is a required field Names []*string `locationName:"names" min:"1" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s BatchGetSchemaInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s BatchGetSchemaInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *BatchGetSchemaInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "BatchGetSchemaInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if s.Names == nil { invalidParams.Add(request.NewErrParamRequired("Names")) } if s.Names != nil && len(s.Names) < 1 { invalidParams.Add(request.NewErrParamMinLen("Names", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *BatchGetSchemaInput) SetCollaborationIdentifier(v string) *BatchGetSchemaInput { s.CollaborationIdentifier = &v return s } // SetNames sets the Names field's value. func (s *BatchGetSchemaInput) SetNames(v []*string) *BatchGetSchemaInput { s.Names = v return s } type BatchGetSchemaOutput struct { _ struct{} `type:"structure"` // Error reasons for schemas that could not be retrieved. One error is returned // for every schema that could not be retrieved. // // Errors is a required field Errors []*BatchGetSchemaError `locationName:"errors" type:"list" required:"true"` // The retrieved list of schemas. // // Schemas is a required field Schemas []*Schema `locationName:"schemas" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s BatchGetSchemaOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s BatchGetSchemaOutput) GoString() string { return s.String() } // SetErrors sets the Errors field's value. func (s *BatchGetSchemaOutput) SetErrors(v []*BatchGetSchemaError) *BatchGetSchemaOutput { s.Errors = v return s } // SetSchemas sets the Schemas field's value. func (s *BatchGetSchemaOutput) SetSchemas(v []*Schema) *BatchGetSchemaOutput { s.Schemas = v return s } // The multi-party data share environment. The collaboration contains metadata // about its purpose and participants. type Collaboration struct { _ struct{} `type:"structure"` // The unique ARN for the collaboration. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The time when the collaboration was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The identifier used to reference members of the collaboration. Currently // only supports Amazon Web Services account ID. // // CreatorAccountId is a required field CreatorAccountId *string `locationName:"creatorAccountId" min:"12" type:"string" required:"true"` // A display name of the collaboration creator. // // CreatorDisplayName is a required field CreatorDisplayName *string `locationName:"creatorDisplayName" min:"1" type:"string" required:"true"` // The settings for client-side encryption for cryptographic computing. DataEncryptionMetadata *DataEncryptionMetadata `locationName:"dataEncryptionMetadata" type:"structure"` // A description of the collaboration provided by the collaboration owner. Description *string `locationName:"description" min:"1" type:"string"` // The unique ID for the collaboration. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The status of a member in a collaboration. // // MemberStatus is a required field MemberStatus *string `locationName:"memberStatus" type:"string" required:"true" enum:"MemberStatus"` // The unique ARN for your membership within the collaboration. MembershipArn *string `locationName:"membershipArn" type:"string"` // The unique ID for your membership within the collaboration. MembershipId *string `locationName:"membershipId" min:"36" type:"string"` // A human-readable identifier provided by the collaboration owner. Display // names are not unique. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // An indicator as to whether query logging has been enabled or disabled for // the collaboration. // // QueryLogStatus is a required field QueryLogStatus *string `locationName:"queryLogStatus" type:"string" required:"true" enum:"CollaborationQueryLogStatus"` // The time the collaboration metadata was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Collaboration) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Collaboration) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *Collaboration) SetArn(v string) *Collaboration { s.Arn = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *Collaboration) SetCreateTime(v time.Time) *Collaboration { s.CreateTime = &v return s } // SetCreatorAccountId sets the CreatorAccountId field's value. func (s *Collaboration) SetCreatorAccountId(v string) *Collaboration { s.CreatorAccountId = &v return s } // SetCreatorDisplayName sets the CreatorDisplayName field's value. func (s *Collaboration) SetCreatorDisplayName(v string) *Collaboration { s.CreatorDisplayName = &v return s } // SetDataEncryptionMetadata sets the DataEncryptionMetadata field's value. func (s *Collaboration) SetDataEncryptionMetadata(v *DataEncryptionMetadata) *Collaboration { s.DataEncryptionMetadata = v return s } // SetDescription sets the Description field's value. func (s *Collaboration) SetDescription(v string) *Collaboration { s.Description = &v return s } // SetId sets the Id field's value. func (s *Collaboration) SetId(v string) *Collaboration { s.Id = &v return s } // SetMemberStatus sets the MemberStatus field's value. func (s *Collaboration) SetMemberStatus(v string) *Collaboration { s.MemberStatus = &v return s } // SetMembershipArn sets the MembershipArn field's value. func (s *Collaboration) SetMembershipArn(v string) *Collaboration { s.MembershipArn = &v return s } // SetMembershipId sets the MembershipId field's value. func (s *Collaboration) SetMembershipId(v string) *Collaboration { s.MembershipId = &v return s } // SetName sets the Name field's value. func (s *Collaboration) SetName(v string) *Collaboration { s.Name = &v return s } // SetQueryLogStatus sets the QueryLogStatus field's value. func (s *Collaboration) SetQueryLogStatus(v string) *Collaboration { s.QueryLogStatus = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *Collaboration) SetUpdateTime(v time.Time) *Collaboration { s.UpdateTime = &v return s } // The metadata of the collaboration. type CollaborationSummary struct { _ struct{} `type:"structure"` // The ARN of the collaboration. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The time when the collaboration was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The identifier used to reference members of the collaboration. Currently // only supports Amazon Web Services account ID. // // CreatorAccountId is a required field CreatorAccountId *string `locationName:"creatorAccountId" min:"12" type:"string" required:"true"` // The display name of the collaboration creator. // // CreatorDisplayName is a required field CreatorDisplayName *string `locationName:"creatorDisplayName" min:"1" type:"string" required:"true"` // The identifier for the collaboration. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The status of a member in a collaboration. // // MemberStatus is a required field MemberStatus *string `locationName:"memberStatus" type:"string" required:"true" enum:"MemberStatus"` // The ARN of a member in a collaboration. MembershipArn *string `locationName:"membershipArn" type:"string"` // The identifier of a member in a collaboration. MembershipId *string `locationName:"membershipId" min:"36" type:"string"` // A human-readable identifier provided by the collaboration owner. Display // names are not unique. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // The time the collaboration metadata was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CollaborationSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CollaborationSummary) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *CollaborationSummary) SetArn(v string) *CollaborationSummary { s.Arn = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *CollaborationSummary) SetCreateTime(v time.Time) *CollaborationSummary { s.CreateTime = &v return s } // SetCreatorAccountId sets the CreatorAccountId field's value. func (s *CollaborationSummary) SetCreatorAccountId(v string) *CollaborationSummary { s.CreatorAccountId = &v return s } // SetCreatorDisplayName sets the CreatorDisplayName field's value. func (s *CollaborationSummary) SetCreatorDisplayName(v string) *CollaborationSummary { s.CreatorDisplayName = &v return s } // SetId sets the Id field's value. func (s *CollaborationSummary) SetId(v string) *CollaborationSummary { s.Id = &v return s } // SetMemberStatus sets the MemberStatus field's value. func (s *CollaborationSummary) SetMemberStatus(v string) *CollaborationSummary { s.MemberStatus = &v return s } // SetMembershipArn sets the MembershipArn field's value. func (s *CollaborationSummary) SetMembershipArn(v string) *CollaborationSummary { s.MembershipArn = &v return s } // SetMembershipId sets the MembershipId field's value. func (s *CollaborationSummary) SetMembershipId(v string) *CollaborationSummary { s.MembershipId = &v return s } // SetName sets the Name field's value. func (s *CollaborationSummary) SetName(v string) *CollaborationSummary { s.Name = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *CollaborationSummary) SetUpdateTime(v time.Time) *CollaborationSummary { s.UpdateTime = &v return s } // A column within a schema relation, derived from the underlying Glue table. type Column struct { _ struct{} `type:"structure"` // The name of the column. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` // The type of the column. // // Type is a required field Type *string `locationName:"type" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Column) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Column) GoString() string { return s.String() } // SetName sets the Name field's value. func (s *Column) SetName(v string) *Column { s.Name = &v return s } // SetType sets the Type field's value. func (s *Column) SetType(v string) *Column { s.Type = &v return s } // A table that has been configured for use in a collaboration. type ConfiguredTable struct { _ struct{} `type:"structure"` // The columns within the underlying Glue table that can be utilized within // collaborations. // // AllowedColumns is a required field AllowedColumns []*string `locationName:"allowedColumns" min:"1" type:"list" required:"true"` // The analysis method for the configured table. The only valid value is currently // `DIRECT_QUERY`. // // AnalysisMethod is a required field AnalysisMethod *string `locationName:"analysisMethod" type:"string" required:"true" enum:"AnalysisMethod"` // The types of analysis rules associated with this configured table. Valid // values are `AGGREGATION` and `LIST`. Currently, only one analysis rule may // be associated with a configured table. // // AnalysisRuleTypes is a required field AnalysisRuleTypes []*string `locationName:"analysisRuleTypes" type:"list" required:"true" enum:"ConfiguredTableAnalysisRuleType"` // The unique ARN for the configured table. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The time the configured table was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // A description for the configured table. Description *string `locationName:"description" type:"string"` // The unique ID for the configured table. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // A name for the configured table. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // The Glue table that this configured table represents. // // TableReference is a required field TableReference *TableReference `locationName:"tableReference" type:"structure" required:"true"` // The time the configured table was last updated // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTable) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTable) GoString() string { return s.String() } // SetAllowedColumns sets the AllowedColumns field's value. func (s *ConfiguredTable) SetAllowedColumns(v []*string) *ConfiguredTable { s.AllowedColumns = v return s } // SetAnalysisMethod sets the AnalysisMethod field's value. func (s *ConfiguredTable) SetAnalysisMethod(v string) *ConfiguredTable { s.AnalysisMethod = &v return s } // SetAnalysisRuleTypes sets the AnalysisRuleTypes field's value. func (s *ConfiguredTable) SetAnalysisRuleTypes(v []*string) *ConfiguredTable { s.AnalysisRuleTypes = v return s } // SetArn sets the Arn field's value. func (s *ConfiguredTable) SetArn(v string) *ConfiguredTable { s.Arn = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *ConfiguredTable) SetCreateTime(v time.Time) *ConfiguredTable { s.CreateTime = &v return s } // SetDescription sets the Description field's value. func (s *ConfiguredTable) SetDescription(v string) *ConfiguredTable { s.Description = &v return s } // SetId sets the Id field's value. func (s *ConfiguredTable) SetId(v string) *ConfiguredTable { s.Id = &v return s } // SetName sets the Name field's value. func (s *ConfiguredTable) SetName(v string) *ConfiguredTable { s.Name = &v return s } // SetTableReference sets the TableReference field's value. func (s *ConfiguredTable) SetTableReference(v *TableReference) *ConfiguredTable { s.TableReference = v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *ConfiguredTable) SetUpdateTime(v time.Time) *ConfiguredTable { s.UpdateTime = &v return s } // A configured table analysis rule, which limits how data for this table can // be used. type ConfiguredTableAnalysisRule struct { _ struct{} `type:"structure"` // The unique ARN for the configured table. // // ConfiguredTableArn is a required field ConfiguredTableArn *string `locationName:"configuredTableArn" type:"string" required:"true"` // The unique ID for the configured table. // // ConfiguredTableId is a required field ConfiguredTableId *string `locationName:"configuredTableId" min:"36" type:"string" required:"true"` // The time the configured table analysis rule was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The policy that controls SQL query rules. // // Policy is a required field Policy *ConfiguredTableAnalysisRulePolicy `locationName:"policy" type:"structure" required:"true"` // The type of configured table analysis rule. Valid values are `AGGREGATION` // and `LIST`. // // Type is a required field Type *string `locationName:"type" type:"string" required:"true" enum:"ConfiguredTableAnalysisRuleType"` // The time the configured table analysis rule was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAnalysisRule) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAnalysisRule) GoString() string { return s.String() } // SetConfiguredTableArn sets the ConfiguredTableArn field's value. func (s *ConfiguredTableAnalysisRule) SetConfiguredTableArn(v string) *ConfiguredTableAnalysisRule { s.ConfiguredTableArn = &v return s } // SetConfiguredTableId sets the ConfiguredTableId field's value. func (s *ConfiguredTableAnalysisRule) SetConfiguredTableId(v string) *ConfiguredTableAnalysisRule { s.ConfiguredTableId = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *ConfiguredTableAnalysisRule) SetCreateTime(v time.Time) *ConfiguredTableAnalysisRule { s.CreateTime = &v return s } // SetPolicy sets the Policy field's value. func (s *ConfiguredTableAnalysisRule) SetPolicy(v *ConfiguredTableAnalysisRulePolicy) *ConfiguredTableAnalysisRule { s.Policy = v return s } // SetType sets the Type field's value. func (s *ConfiguredTableAnalysisRule) SetType(v string) *ConfiguredTableAnalysisRule { s.Type = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *ConfiguredTableAnalysisRule) SetUpdateTime(v time.Time) *ConfiguredTableAnalysisRule { s.UpdateTime = &v return s } // Controls on the query specifications that can be run on a configured table. type ConfiguredTableAnalysisRulePolicy struct { _ struct{} `type:"structure"` // Controls on the query specifications that can be run on a configured table. V1 *ConfiguredTableAnalysisRulePolicyV1 `locationName:"v1" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAnalysisRulePolicy) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAnalysisRulePolicy) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ConfiguredTableAnalysisRulePolicy) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ConfiguredTableAnalysisRulePolicy"} if s.V1 != nil { if err := s.V1.Validate(); err != nil { invalidParams.AddNested("V1", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetV1 sets the V1 field's value. func (s *ConfiguredTableAnalysisRulePolicy) SetV1(v *ConfiguredTableAnalysisRulePolicyV1) *ConfiguredTableAnalysisRulePolicy { s.V1 = v return s } // Controls on the query specifications that can be run on a configured table. type ConfiguredTableAnalysisRulePolicyV1 struct { _ struct{} `type:"structure"` // Analysis rule type that enables only aggregation queries on a configured // table. Aggregation *AnalysisRuleAggregation `locationName:"aggregation" type:"structure"` // Analysis rule type that enables only list queries on a configured table. List *AnalysisRuleList `locationName:"list" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAnalysisRulePolicyV1) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAnalysisRulePolicyV1) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ConfiguredTableAnalysisRulePolicyV1) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ConfiguredTableAnalysisRulePolicyV1"} if s.Aggregation != nil { if err := s.Aggregation.Validate(); err != nil { invalidParams.AddNested("Aggregation", err.(request.ErrInvalidParams)) } } if s.List != nil { if err := s.List.Validate(); err != nil { invalidParams.AddNested("List", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAggregation sets the Aggregation field's value. func (s *ConfiguredTableAnalysisRulePolicyV1) SetAggregation(v *AnalysisRuleAggregation) *ConfiguredTableAnalysisRulePolicyV1 { s.Aggregation = v return s } // SetList sets the List field's value. func (s *ConfiguredTableAnalysisRulePolicyV1) SetList(v *AnalysisRuleList) *ConfiguredTableAnalysisRulePolicyV1 { s.List = v return s } // A configured table association links a configured table to a collaboration. type ConfiguredTableAssociation struct { _ struct{} `type:"structure"` // The unique ARN for the configured table association. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The unique ARN for the configured table that the association refers to. // // ConfiguredTableArn is a required field ConfiguredTableArn *string `locationName:"configuredTableArn" type:"string" required:"true"` // The unique ID for the configured table that the association refers to. // // ConfiguredTableId is a required field ConfiguredTableId *string `locationName:"configuredTableId" min:"36" type:"string" required:"true"` // The time the configured table association was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // A description of the configured table association. Description *string `locationName:"description" type:"string"` // The unique ID for the configured table association. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The unique ARN for the membership this configured table association belongs // to. // // MembershipArn is a required field MembershipArn *string `locationName:"membershipArn" type:"string" required:"true"` // The unique ID for the membership this configured table association belongs // to. // // MembershipId is a required field MembershipId *string `locationName:"membershipId" min:"36" type:"string" required:"true"` // The name of the configured table association, in lowercase. The table is // identified by this name when running protected queries against the underlying // data. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` // The service will assume this role to access catalog metadata and query the // table. // // RoleArn is a required field RoleArn *string `locationName:"roleArn" min:"32" type:"string" required:"true"` // The time the configured table association was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAssociation) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAssociation) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *ConfiguredTableAssociation) SetArn(v string) *ConfiguredTableAssociation { s.Arn = &v return s } // SetConfiguredTableArn sets the ConfiguredTableArn field's value. func (s *ConfiguredTableAssociation) SetConfiguredTableArn(v string) *ConfiguredTableAssociation { s.ConfiguredTableArn = &v return s } // SetConfiguredTableId sets the ConfiguredTableId field's value. func (s *ConfiguredTableAssociation) SetConfiguredTableId(v string) *ConfiguredTableAssociation { s.ConfiguredTableId = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *ConfiguredTableAssociation) SetCreateTime(v time.Time) *ConfiguredTableAssociation { s.CreateTime = &v return s } // SetDescription sets the Description field's value. func (s *ConfiguredTableAssociation) SetDescription(v string) *ConfiguredTableAssociation { s.Description = &v return s } // SetId sets the Id field's value. func (s *ConfiguredTableAssociation) SetId(v string) *ConfiguredTableAssociation { s.Id = &v return s } // SetMembershipArn sets the MembershipArn field's value. func (s *ConfiguredTableAssociation) SetMembershipArn(v string) *ConfiguredTableAssociation { s.MembershipArn = &v return s } // SetMembershipId sets the MembershipId field's value. func (s *ConfiguredTableAssociation) SetMembershipId(v string) *ConfiguredTableAssociation { s.MembershipId = &v return s } // SetName sets the Name field's value. func (s *ConfiguredTableAssociation) SetName(v string) *ConfiguredTableAssociation { s.Name = &v return s } // SetRoleArn sets the RoleArn field's value. func (s *ConfiguredTableAssociation) SetRoleArn(v string) *ConfiguredTableAssociation { s.RoleArn = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *ConfiguredTableAssociation) SetUpdateTime(v time.Time) *ConfiguredTableAssociation { s.UpdateTime = &v return s } // The configured table association summary for the objects listed by the request. type ConfiguredTableAssociationSummary struct { _ struct{} `type:"structure"` // The unique ARN for the configured table association. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The unique configured table ID that this configured table association refers // to. // // ConfiguredTableId is a required field ConfiguredTableId *string `locationName:"configuredTableId" min:"36" type:"string" required:"true"` // The time the configured table association was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The unique ID for the configured table association. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The unique ARN for the membership that the configured table association belongs // to. // // MembershipArn is a required field MembershipArn *string `locationName:"membershipArn" type:"string" required:"true"` // The unique ID for the membership that the configured table association belongs // to. // // MembershipId is a required field MembershipId *string `locationName:"membershipId" min:"36" type:"string" required:"true"` // The name of the configured table association. The table is identified by // this name when running Protected Queries against the underlying data. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` // The time the configured table association was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAssociationSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableAssociationSummary) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *ConfiguredTableAssociationSummary) SetArn(v string) *ConfiguredTableAssociationSummary { s.Arn = &v return s } // SetConfiguredTableId sets the ConfiguredTableId field's value. func (s *ConfiguredTableAssociationSummary) SetConfiguredTableId(v string) *ConfiguredTableAssociationSummary { s.ConfiguredTableId = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *ConfiguredTableAssociationSummary) SetCreateTime(v time.Time) *ConfiguredTableAssociationSummary { s.CreateTime = &v return s } // SetId sets the Id field's value. func (s *ConfiguredTableAssociationSummary) SetId(v string) *ConfiguredTableAssociationSummary { s.Id = &v return s } // SetMembershipArn sets the MembershipArn field's value. func (s *ConfiguredTableAssociationSummary) SetMembershipArn(v string) *ConfiguredTableAssociationSummary { s.MembershipArn = &v return s } // SetMembershipId sets the MembershipId field's value. func (s *ConfiguredTableAssociationSummary) SetMembershipId(v string) *ConfiguredTableAssociationSummary { s.MembershipId = &v return s } // SetName sets the Name field's value. func (s *ConfiguredTableAssociationSummary) SetName(v string) *ConfiguredTableAssociationSummary { s.Name = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *ConfiguredTableAssociationSummary) SetUpdateTime(v time.Time) *ConfiguredTableAssociationSummary { s.UpdateTime = &v return s } // The configured table summary for the objects listed by the request. type ConfiguredTableSummary struct { _ struct{} `type:"structure"` // The analysis method for the configured tables. The only valid value is currently // `DIRECT_QUERY`. // // AnalysisMethod is a required field AnalysisMethod *string `locationName:"analysisMethod" type:"string" required:"true" enum:"AnalysisMethod"` // The types of analysis rules associated with this configured table. // // AnalysisRuleTypes is a required field AnalysisRuleTypes []*string `locationName:"analysisRuleTypes" type:"list" required:"true" enum:"ConfiguredTableAnalysisRuleType"` // The unique ARN of the configured table. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The time the configured table was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The unique ID of the configured table. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The name of the configured table. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // The time the configured table was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConfiguredTableSummary) GoString() string { return s.String() } // SetAnalysisMethod sets the AnalysisMethod field's value. func (s *ConfiguredTableSummary) SetAnalysisMethod(v string) *ConfiguredTableSummary { s.AnalysisMethod = &v return s } // SetAnalysisRuleTypes sets the AnalysisRuleTypes field's value. func (s *ConfiguredTableSummary) SetAnalysisRuleTypes(v []*string) *ConfiguredTableSummary { s.AnalysisRuleTypes = v return s } // SetArn sets the Arn field's value. func (s *ConfiguredTableSummary) SetArn(v string) *ConfiguredTableSummary { s.Arn = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *ConfiguredTableSummary) SetCreateTime(v time.Time) *ConfiguredTableSummary { s.CreateTime = &v return s } // SetId sets the Id field's value. func (s *ConfiguredTableSummary) SetId(v string) *ConfiguredTableSummary { s.Id = &v return s } // SetName sets the Name field's value. func (s *ConfiguredTableSummary) SetName(v string) *ConfiguredTableSummary { s.Name = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *ConfiguredTableSummary) SetUpdateTime(v time.Time) *ConfiguredTableSummary { s.UpdateTime = &v return s } // Updating or deleting a resource can cause an inconsistent state. type ConflictException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // A reason code for the exception. Reason *string `locationName:"reason" type:"string" enum:"ConflictExceptionReason"` // The ID of the conflicting resource. ResourceId *string `locationName:"resourceId" type:"string"` // The type of the conflicting resource. ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConflictException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ConflictException) GoString() string { return s.String() } func newErrorConflictException(v protocol.ResponseMetadata) error { return &ConflictException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ConflictException) Code() string { return "ConflictException" } // Message returns the exception's message. func (s *ConflictException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ConflictException) OrigErr() error { return nil } func (s *ConflictException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *ConflictException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ConflictException) RequestID() string { return s.RespMetadata.RequestID } type CreateCollaborationInput struct { _ struct{} `type:"structure"` // The display name of the collaboration creator. // // CreatorDisplayName is a required field CreatorDisplayName *string `locationName:"creatorDisplayName" min:"1" type:"string" required:"true"` // The abilities granted to the collaboration creator. // // CreatorMemberAbilities is a required field CreatorMemberAbilities []*string `locationName:"creatorMemberAbilities" type:"list" required:"true" enum:"MemberAbility"` // The settings for client-side encryption with Cryptographic Computing for // Clean Rooms. DataEncryptionMetadata *DataEncryptionMetadata `locationName:"dataEncryptionMetadata" type:"structure"` // A description of the collaboration provided by the collaboration owner. // // Description is a required field Description *string `locationName:"description" min:"1" type:"string" required:"true"` // A list of initial members, not including the creator. This list is immutable. // // Members is a required field Members []*MemberSpecification `locationName:"members" type:"list" required:"true"` // The display name for a collaboration. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // An indicator as to whether query logging has been enabled or disabled for // the collaboration. // // QueryLogStatus is a required field QueryLogStatus *string `locationName:"queryLogStatus" type:"string" required:"true" enum:"CollaborationQueryLogStatus"` // An optional label that you can assign to a resource when you create it. Each // tag consists of a key and an optional value, both of which you define. When // you use tagging, you can also use tag-based access control in IAM policies // to control access to this resource. Tags map[string]*string `locationName:"tags" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateCollaborationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateCollaborationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateCollaborationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateCollaborationInput"} if s.CreatorDisplayName == nil { invalidParams.Add(request.NewErrParamRequired("CreatorDisplayName")) } if s.CreatorDisplayName != nil && len(*s.CreatorDisplayName) < 1 { invalidParams.Add(request.NewErrParamMinLen("CreatorDisplayName", 1)) } if s.CreatorMemberAbilities == nil { invalidParams.Add(request.NewErrParamRequired("CreatorMemberAbilities")) } if s.Description == nil { invalidParams.Add(request.NewErrParamRequired("Description")) } if s.Description != nil && len(*s.Description) < 1 { invalidParams.Add(request.NewErrParamMinLen("Description", 1)) } if s.Members == nil { invalidParams.Add(request.NewErrParamRequired("Members")) } if s.Name == nil { invalidParams.Add(request.NewErrParamRequired("Name")) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(request.NewErrParamMinLen("Name", 1)) } if s.QueryLogStatus == nil { invalidParams.Add(request.NewErrParamRequired("QueryLogStatus")) } if s.DataEncryptionMetadata != nil { if err := s.DataEncryptionMetadata.Validate(); err != nil { invalidParams.AddNested("DataEncryptionMetadata", err.(request.ErrInvalidParams)) } } if s.Members != nil { for i, v := range s.Members { if v == nil { continue } if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Members", i), err.(request.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCreatorDisplayName sets the CreatorDisplayName field's value. func (s *CreateCollaborationInput) SetCreatorDisplayName(v string) *CreateCollaborationInput { s.CreatorDisplayName = &v return s } // SetCreatorMemberAbilities sets the CreatorMemberAbilities field's value. func (s *CreateCollaborationInput) SetCreatorMemberAbilities(v []*string) *CreateCollaborationInput { s.CreatorMemberAbilities = v return s } // SetDataEncryptionMetadata sets the DataEncryptionMetadata field's value. func (s *CreateCollaborationInput) SetDataEncryptionMetadata(v *DataEncryptionMetadata) *CreateCollaborationInput { s.DataEncryptionMetadata = v return s } // SetDescription sets the Description field's value. func (s *CreateCollaborationInput) SetDescription(v string) *CreateCollaborationInput { s.Description = &v return s } // SetMembers sets the Members field's value. func (s *CreateCollaborationInput) SetMembers(v []*MemberSpecification) *CreateCollaborationInput { s.Members = v return s } // SetName sets the Name field's value. func (s *CreateCollaborationInput) SetName(v string) *CreateCollaborationInput { s.Name = &v return s } // SetQueryLogStatus sets the QueryLogStatus field's value. func (s *CreateCollaborationInput) SetQueryLogStatus(v string) *CreateCollaborationInput { s.QueryLogStatus = &v return s } // SetTags sets the Tags field's value. func (s *CreateCollaborationInput) SetTags(v map[string]*string) *CreateCollaborationInput { s.Tags = v return s } type CreateCollaborationOutput struct { _ struct{} `type:"structure"` // The entire created collaboration object. // // Collaboration is a required field Collaboration *Collaboration `locationName:"collaboration" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateCollaborationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateCollaborationOutput) GoString() string { return s.String() } // SetCollaboration sets the Collaboration field's value. func (s *CreateCollaborationOutput) SetCollaboration(v *Collaboration) *CreateCollaborationOutput { s.Collaboration = v return s } type CreateConfiguredTableAnalysisRuleInput struct { _ struct{} `type:"structure"` // The entire created configured table analysis rule object. // // AnalysisRulePolicy is a required field AnalysisRulePolicy *ConfiguredTableAnalysisRulePolicy `locationName:"analysisRulePolicy" type:"structure" required:"true"` // The type of analysis rule. Valid values are AGGREGATION and LIST. // // AnalysisRuleType is a required field AnalysisRuleType *string `locationName:"analysisRuleType" type:"string" required:"true" enum:"ConfiguredTableAnalysisRuleType"` // The identifier for the configured table to create the analysis rule for. // Currently accepts the configured table ID. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `location:"uri" locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAnalysisRuleInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAnalysisRuleInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateConfiguredTableAnalysisRuleInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateConfiguredTableAnalysisRuleInput"} if s.AnalysisRulePolicy == nil { invalidParams.Add(request.NewErrParamRequired("AnalysisRulePolicy")) } if s.AnalysisRuleType == nil { invalidParams.Add(request.NewErrParamRequired("AnalysisRuleType")) } if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if s.AnalysisRulePolicy != nil { if err := s.AnalysisRulePolicy.Validate(); err != nil { invalidParams.AddNested("AnalysisRulePolicy", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAnalysisRulePolicy sets the AnalysisRulePolicy field's value. func (s *CreateConfiguredTableAnalysisRuleInput) SetAnalysisRulePolicy(v *ConfiguredTableAnalysisRulePolicy) *CreateConfiguredTableAnalysisRuleInput { s.AnalysisRulePolicy = v return s } // SetAnalysisRuleType sets the AnalysisRuleType field's value. func (s *CreateConfiguredTableAnalysisRuleInput) SetAnalysisRuleType(v string) *CreateConfiguredTableAnalysisRuleInput { s.AnalysisRuleType = &v return s } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *CreateConfiguredTableAnalysisRuleInput) SetConfiguredTableIdentifier(v string) *CreateConfiguredTableAnalysisRuleInput { s.ConfiguredTableIdentifier = &v return s } type CreateConfiguredTableAnalysisRuleOutput struct { _ struct{} `type:"structure"` // The entire created analysis rule. // // AnalysisRule is a required field AnalysisRule *ConfiguredTableAnalysisRule `locationName:"analysisRule" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAnalysisRuleOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAnalysisRuleOutput) GoString() string { return s.String() } // SetAnalysisRule sets the AnalysisRule field's value. func (s *CreateConfiguredTableAnalysisRuleOutput) SetAnalysisRule(v *ConfiguredTableAnalysisRule) *CreateConfiguredTableAnalysisRuleOutput { s.AnalysisRule = v return s } type CreateConfiguredTableAssociationInput struct { _ struct{} `type:"structure"` // A unique identifier for the configured table to be associated to. Currently // accepts a configured table ID. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` // A description for the configured table association. Description *string `locationName:"description" type:"string"` // A unique identifier for one of your memberships for a collaboration. The // configured table is associated to the collaboration that this membership // belongs to. Currently accepts a membership ID. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // The name of the configured table association. This name is used to query // the underlying configured table. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` // The service will assume this role to access catalog metadata and query the // table. // // RoleArn is a required field RoleArn *string `locationName:"roleArn" min:"32" type:"string" required:"true"` // An optional label that you can assign to a resource when you create it. Each // tag consists of a key and an optional value, both of which you define. When // you use tagging, you can also use tag-based access control in IAM policies // to control access to this resource. Tags map[string]*string `locationName:"tags" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAssociationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAssociationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateConfiguredTableAssociationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateConfiguredTableAssociationInput"} if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if s.Name == nil { invalidParams.Add(request.NewErrParamRequired("Name")) } if s.RoleArn == nil { invalidParams.Add(request.NewErrParamRequired("RoleArn")) } if s.RoleArn != nil && len(*s.RoleArn) < 32 { invalidParams.Add(request.NewErrParamMinLen("RoleArn", 32)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *CreateConfiguredTableAssociationInput) SetConfiguredTableIdentifier(v string) *CreateConfiguredTableAssociationInput { s.ConfiguredTableIdentifier = &v return s } // SetDescription sets the Description field's value. func (s *CreateConfiguredTableAssociationInput) SetDescription(v string) *CreateConfiguredTableAssociationInput { s.Description = &v return s } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *CreateConfiguredTableAssociationInput) SetMembershipIdentifier(v string) *CreateConfiguredTableAssociationInput { s.MembershipIdentifier = &v return s } // SetName sets the Name field's value. func (s *CreateConfiguredTableAssociationInput) SetName(v string) *CreateConfiguredTableAssociationInput { s.Name = &v return s } // SetRoleArn sets the RoleArn field's value. func (s *CreateConfiguredTableAssociationInput) SetRoleArn(v string) *CreateConfiguredTableAssociationInput { s.RoleArn = &v return s } // SetTags sets the Tags field's value. func (s *CreateConfiguredTableAssociationInput) SetTags(v map[string]*string) *CreateConfiguredTableAssociationInput { s.Tags = v return s } type CreateConfiguredTableAssociationOutput struct { _ struct{} `type:"structure"` // The entire configured table association object. // // ConfiguredTableAssociation is a required field ConfiguredTableAssociation *ConfiguredTableAssociation `locationName:"configuredTableAssociation" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAssociationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableAssociationOutput) GoString() string { return s.String() } // SetConfiguredTableAssociation sets the ConfiguredTableAssociation field's value. func (s *CreateConfiguredTableAssociationOutput) SetConfiguredTableAssociation(v *ConfiguredTableAssociation) *CreateConfiguredTableAssociationOutput { s.ConfiguredTableAssociation = v return s } type CreateConfiguredTableInput struct { _ struct{} `type:"structure"` // The columns of the underlying table that can be used by collaborations or // analysis rules. // // AllowedColumns is a required field AllowedColumns []*string `locationName:"allowedColumns" min:"1" type:"list" required:"true"` // The analysis method for the configured tables. The only valid value is currently // `DIRECT_QUERY`. // // AnalysisMethod is a required field AnalysisMethod *string `locationName:"analysisMethod" type:"string" required:"true" enum:"AnalysisMethod"` // A description for the configured table. Description *string `locationName:"description" type:"string"` // The name of the configured table. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // A reference to the Glue table being configured. // // TableReference is a required field TableReference *TableReference `locationName:"tableReference" type:"structure" required:"true"` // An optional label that you can assign to a resource when you create it. Each // tag consists of a key and an optional value, both of which you define. When // you use tagging, you can also use tag-based access control in IAM policies // to control access to this resource. Tags map[string]*string `locationName:"tags" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateConfiguredTableInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateConfiguredTableInput"} if s.AllowedColumns == nil { invalidParams.Add(request.NewErrParamRequired("AllowedColumns")) } if s.AllowedColumns != nil && len(s.AllowedColumns) < 1 { invalidParams.Add(request.NewErrParamMinLen("AllowedColumns", 1)) } if s.AnalysisMethod == nil { invalidParams.Add(request.NewErrParamRequired("AnalysisMethod")) } if s.Name == nil { invalidParams.Add(request.NewErrParamRequired("Name")) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(request.NewErrParamMinLen("Name", 1)) } if s.TableReference == nil { invalidParams.Add(request.NewErrParamRequired("TableReference")) } if s.TableReference != nil { if err := s.TableReference.Validate(); err != nil { invalidParams.AddNested("TableReference", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAllowedColumns sets the AllowedColumns field's value. func (s *CreateConfiguredTableInput) SetAllowedColumns(v []*string) *CreateConfiguredTableInput { s.AllowedColumns = v return s } // SetAnalysisMethod sets the AnalysisMethod field's value. func (s *CreateConfiguredTableInput) SetAnalysisMethod(v string) *CreateConfiguredTableInput { s.AnalysisMethod = &v return s } // SetDescription sets the Description field's value. func (s *CreateConfiguredTableInput) SetDescription(v string) *CreateConfiguredTableInput { s.Description = &v return s } // SetName sets the Name field's value. func (s *CreateConfiguredTableInput) SetName(v string) *CreateConfiguredTableInput { s.Name = &v return s } // SetTableReference sets the TableReference field's value. func (s *CreateConfiguredTableInput) SetTableReference(v *TableReference) *CreateConfiguredTableInput { s.TableReference = v return s } // SetTags sets the Tags field's value. func (s *CreateConfiguredTableInput) SetTags(v map[string]*string) *CreateConfiguredTableInput { s.Tags = v return s } type CreateConfiguredTableOutput struct { _ struct{} `type:"structure"` // The created configured table. // // ConfiguredTable is a required field ConfiguredTable *ConfiguredTable `locationName:"configuredTable" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateConfiguredTableOutput) GoString() string { return s.String() } // SetConfiguredTable sets the ConfiguredTable field's value. func (s *CreateConfiguredTableOutput) SetConfiguredTable(v *ConfiguredTable) *CreateConfiguredTableOutput { s.ConfiguredTable = v return s } type CreateMembershipInput struct { _ struct{} `type:"structure"` // The unique ID for the associated collaboration. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` // An indicator as to whether query logging has been enabled or disabled for // the collaboration. // // QueryLogStatus is a required field QueryLogStatus *string `locationName:"queryLogStatus" type:"string" required:"true" enum:"MembershipQueryLogStatus"` // An optional label that you can assign to a resource when you create it. Each // tag consists of a key and an optional value, both of which you define. When // you use tagging, you can also use tag-based access control in IAM policies // to control access to this resource. Tags map[string]*string `locationName:"tags" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateMembershipInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateMembershipInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateMembershipInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateMembershipInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if s.QueryLogStatus == nil { invalidParams.Add(request.NewErrParamRequired("QueryLogStatus")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *CreateMembershipInput) SetCollaborationIdentifier(v string) *CreateMembershipInput { s.CollaborationIdentifier = &v return s } // SetQueryLogStatus sets the QueryLogStatus field's value. func (s *CreateMembershipInput) SetQueryLogStatus(v string) *CreateMembershipInput { s.QueryLogStatus = &v return s } // SetTags sets the Tags field's value. func (s *CreateMembershipInput) SetTags(v map[string]*string) *CreateMembershipInput { s.Tags = v return s } type CreateMembershipOutput struct { _ struct{} `type:"structure"` // The membership that was created. // // Membership is a required field Membership *Membership `locationName:"membership" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateMembershipOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateMembershipOutput) GoString() string { return s.String() } // SetMembership sets the Membership field's value. func (s *CreateMembershipOutput) SetMembership(v *Membership) *CreateMembershipOutput { s.Membership = v return s } // The settings for client-side encryption for cryptographic computing. type DataEncryptionMetadata struct { _ struct{} `type:"structure"` // Indicates whether encrypted tables can contain cleartext data (true) or are // to cryptographically process every column (false). // // AllowCleartext is a required field AllowCleartext *bool `locationName:"allowCleartext" type:"boolean" required:"true"` // Indicates whether Fingerprint columns can contain duplicate entries (true) // or are to contain only non-repeated values (false). // // AllowDuplicates is a required field AllowDuplicates *bool `locationName:"allowDuplicates" type:"boolean" required:"true"` // Indicates whether Fingerprint columns can be joined on any other Fingerprint // column with a different name (true) or can only be joined on Fingerprint // columns of the same name (false). // // AllowJoinsOnColumnsWithDifferentNames is a required field AllowJoinsOnColumnsWithDifferentNames *bool `locationName:"allowJoinsOnColumnsWithDifferentNames" type:"boolean" required:"true"` // Indicates whether NULL values are to be copied as NULL to encrypted tables // (true) or cryptographically processed (false). // // PreserveNulls is a required field PreserveNulls *bool `locationName:"preserveNulls" type:"boolean" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DataEncryptionMetadata) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DataEncryptionMetadata) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DataEncryptionMetadata) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DataEncryptionMetadata"} if s.AllowCleartext == nil { invalidParams.Add(request.NewErrParamRequired("AllowCleartext")) } if s.AllowDuplicates == nil { invalidParams.Add(request.NewErrParamRequired("AllowDuplicates")) } if s.AllowJoinsOnColumnsWithDifferentNames == nil { invalidParams.Add(request.NewErrParamRequired("AllowJoinsOnColumnsWithDifferentNames")) } if s.PreserveNulls == nil { invalidParams.Add(request.NewErrParamRequired("PreserveNulls")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAllowCleartext sets the AllowCleartext field's value. func (s *DataEncryptionMetadata) SetAllowCleartext(v bool) *DataEncryptionMetadata { s.AllowCleartext = &v return s } // SetAllowDuplicates sets the AllowDuplicates field's value. func (s *DataEncryptionMetadata) SetAllowDuplicates(v bool) *DataEncryptionMetadata { s.AllowDuplicates = &v return s } // SetAllowJoinsOnColumnsWithDifferentNames sets the AllowJoinsOnColumnsWithDifferentNames field's value. func (s *DataEncryptionMetadata) SetAllowJoinsOnColumnsWithDifferentNames(v bool) *DataEncryptionMetadata { s.AllowJoinsOnColumnsWithDifferentNames = &v return s } // SetPreserveNulls sets the PreserveNulls field's value. func (s *DataEncryptionMetadata) SetPreserveNulls(v bool) *DataEncryptionMetadata { s.PreserveNulls = &v return s } type DeleteCollaborationInput struct { _ struct{} `type:"structure" nopayload:"true"` // The identifier for the collaboration. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteCollaborationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteCollaborationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteCollaborationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteCollaborationInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *DeleteCollaborationInput) SetCollaborationIdentifier(v string) *DeleteCollaborationInput { s.CollaborationIdentifier = &v return s } type DeleteCollaborationOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteCollaborationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteCollaborationOutput) GoString() string { return s.String() } type DeleteConfiguredTableAnalysisRuleInput struct { _ struct{} `type:"structure" nopayload:"true"` // The analysis rule type to be deleted. Configured table analysis rules are // uniquely identified by their configured table identifier and analysis rule // type. // // AnalysisRuleType is a required field AnalysisRuleType *string `location:"uri" locationName:"analysisRuleType" type:"string" required:"true" enum:"ConfiguredTableAnalysisRuleType"` // The unique identifier for the configured table that the analysis rule applies // to. Currently accepts the configured table ID. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `location:"uri" locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAnalysisRuleInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAnalysisRuleInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteConfiguredTableAnalysisRuleInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteConfiguredTableAnalysisRuleInput"} if s.AnalysisRuleType == nil { invalidParams.Add(request.NewErrParamRequired("AnalysisRuleType")) } if s.AnalysisRuleType != nil && len(*s.AnalysisRuleType) < 1 { invalidParams.Add(request.NewErrParamMinLen("AnalysisRuleType", 1)) } if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAnalysisRuleType sets the AnalysisRuleType field's value. func (s *DeleteConfiguredTableAnalysisRuleInput) SetAnalysisRuleType(v string) *DeleteConfiguredTableAnalysisRuleInput { s.AnalysisRuleType = &v return s } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *DeleteConfiguredTableAnalysisRuleInput) SetConfiguredTableIdentifier(v string) *DeleteConfiguredTableAnalysisRuleInput { s.ConfiguredTableIdentifier = &v return s } // An empty response that indicates a successful delete. type DeleteConfiguredTableAnalysisRuleOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAnalysisRuleOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAnalysisRuleOutput) GoString() string { return s.String() } type DeleteConfiguredTableAssociationInput struct { _ struct{} `type:"structure" nopayload:"true"` // The unique ID for the configured table association to be deleted. Currently // accepts the configured table ID. // // ConfiguredTableAssociationIdentifier is a required field ConfiguredTableAssociationIdentifier *string `location:"uri" locationName:"configuredTableAssociationIdentifier" min:"36" type:"string" required:"true"` // A unique identifier for the membership that the configured table association // belongs to. Currently accepts the membership ID. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAssociationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAssociationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteConfiguredTableAssociationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteConfiguredTableAssociationInput"} if s.ConfiguredTableAssociationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableAssociationIdentifier")) } if s.ConfiguredTableAssociationIdentifier != nil && len(*s.ConfiguredTableAssociationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableAssociationIdentifier", 36)) } if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetConfiguredTableAssociationIdentifier sets the ConfiguredTableAssociationIdentifier field's value. func (s *DeleteConfiguredTableAssociationInput) SetConfiguredTableAssociationIdentifier(v string) *DeleteConfiguredTableAssociationInput { s.ConfiguredTableAssociationIdentifier = &v return s } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *DeleteConfiguredTableAssociationInput) SetMembershipIdentifier(v string) *DeleteConfiguredTableAssociationInput { s.MembershipIdentifier = &v return s } type DeleteConfiguredTableAssociationOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAssociationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableAssociationOutput) GoString() string { return s.String() } type DeleteConfiguredTableInput struct { _ struct{} `type:"structure" nopayload:"true"` // The unique ID for the configured table to delete. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `location:"uri" locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteConfiguredTableInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteConfiguredTableInput"} if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *DeleteConfiguredTableInput) SetConfiguredTableIdentifier(v string) *DeleteConfiguredTableInput { s.ConfiguredTableIdentifier = &v return s } // The empty output for a successful deletion. type DeleteConfiguredTableOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteConfiguredTableOutput) GoString() string { return s.String() } type DeleteMemberInput struct { _ struct{} `type:"structure" nopayload:"true"` // The account ID of the member to remove. // // AccountId is a required field AccountId *string `location:"uri" locationName:"accountId" min:"12" type:"string" required:"true"` // The unique identifier for the associated collaboration. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMemberInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMemberInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteMemberInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteMemberInput"} if s.AccountId == nil { invalidParams.Add(request.NewErrParamRequired("AccountId")) } if s.AccountId != nil && len(*s.AccountId) < 12 { invalidParams.Add(request.NewErrParamMinLen("AccountId", 12)) } if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAccountId sets the AccountId field's value. func (s *DeleteMemberInput) SetAccountId(v string) *DeleteMemberInput { s.AccountId = &v return s } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *DeleteMemberInput) SetCollaborationIdentifier(v string) *DeleteMemberInput { s.CollaborationIdentifier = &v return s } type DeleteMemberOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMemberOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMemberOutput) GoString() string { return s.String() } type DeleteMembershipInput struct { _ struct{} `type:"structure" nopayload:"true"` // The identifier for a membership resource. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMembershipInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMembershipInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteMembershipInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteMembershipInput"} if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *DeleteMembershipInput) SetMembershipIdentifier(v string) *DeleteMembershipInput { s.MembershipIdentifier = &v return s } type DeleteMembershipOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMembershipOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMembershipOutput) GoString() string { return s.String() } type GetCollaborationInput struct { _ struct{} `type:"structure" nopayload:"true"` // The identifier for the collaboration. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetCollaborationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetCollaborationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetCollaborationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetCollaborationInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *GetCollaborationInput) SetCollaborationIdentifier(v string) *GetCollaborationInput { s.CollaborationIdentifier = &v return s } type GetCollaborationOutput struct { _ struct{} `type:"structure"` // The entire collaboration for this identifier. // // Collaboration is a required field Collaboration *Collaboration `locationName:"collaboration" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetCollaborationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetCollaborationOutput) GoString() string { return s.String() } // SetCollaboration sets the Collaboration field's value. func (s *GetCollaborationOutput) SetCollaboration(v *Collaboration) *GetCollaborationOutput { s.Collaboration = v return s } type GetConfiguredTableAnalysisRuleInput struct { _ struct{} `type:"structure" nopayload:"true"` // The analysis rule to be retrieved. Configured table analysis rules are uniquely // identified by their configured table identifier and analysis rule type. // // AnalysisRuleType is a required field AnalysisRuleType *string `location:"uri" locationName:"analysisRuleType" type:"string" required:"true" enum:"ConfiguredTableAnalysisRuleType"` // The unique identifier for the configured table to retrieve. Currently accepts // the configured table ID. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `location:"uri" locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAnalysisRuleInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAnalysisRuleInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetConfiguredTableAnalysisRuleInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetConfiguredTableAnalysisRuleInput"} if s.AnalysisRuleType == nil { invalidParams.Add(request.NewErrParamRequired("AnalysisRuleType")) } if s.AnalysisRuleType != nil && len(*s.AnalysisRuleType) < 1 { invalidParams.Add(request.NewErrParamMinLen("AnalysisRuleType", 1)) } if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAnalysisRuleType sets the AnalysisRuleType field's value. func (s *GetConfiguredTableAnalysisRuleInput) SetAnalysisRuleType(v string) *GetConfiguredTableAnalysisRuleInput { s.AnalysisRuleType = &v return s } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *GetConfiguredTableAnalysisRuleInput) SetConfiguredTableIdentifier(v string) *GetConfiguredTableAnalysisRuleInput { s.ConfiguredTableIdentifier = &v return s } type GetConfiguredTableAnalysisRuleOutput struct { _ struct{} `type:"structure"` // The entire analysis rule output. // // AnalysisRule is a required field AnalysisRule *ConfiguredTableAnalysisRule `locationName:"analysisRule" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAnalysisRuleOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAnalysisRuleOutput) GoString() string { return s.String() } // SetAnalysisRule sets the AnalysisRule field's value. func (s *GetConfiguredTableAnalysisRuleOutput) SetAnalysisRule(v *ConfiguredTableAnalysisRule) *GetConfiguredTableAnalysisRuleOutput { s.AnalysisRule = v return s } type GetConfiguredTableAssociationInput struct { _ struct{} `type:"structure" nopayload:"true"` // The unique ID for the configured table association to retrieve. Currently // accepts the configured table ID. // // ConfiguredTableAssociationIdentifier is a required field ConfiguredTableAssociationIdentifier *string `location:"uri" locationName:"configuredTableAssociationIdentifier" min:"36" type:"string" required:"true"` // A unique identifier for the membership that the configured table association // belongs to. Currently accepts the membership ID. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAssociationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAssociationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetConfiguredTableAssociationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetConfiguredTableAssociationInput"} if s.ConfiguredTableAssociationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableAssociationIdentifier")) } if s.ConfiguredTableAssociationIdentifier != nil && len(*s.ConfiguredTableAssociationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableAssociationIdentifier", 36)) } if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetConfiguredTableAssociationIdentifier sets the ConfiguredTableAssociationIdentifier field's value. func (s *GetConfiguredTableAssociationInput) SetConfiguredTableAssociationIdentifier(v string) *GetConfiguredTableAssociationInput { s.ConfiguredTableAssociationIdentifier = &v return s } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *GetConfiguredTableAssociationInput) SetMembershipIdentifier(v string) *GetConfiguredTableAssociationInput { s.MembershipIdentifier = &v return s } type GetConfiguredTableAssociationOutput struct { _ struct{} `type:"structure"` // The entire configured table association object. // // ConfiguredTableAssociation is a required field ConfiguredTableAssociation *ConfiguredTableAssociation `locationName:"configuredTableAssociation" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAssociationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableAssociationOutput) GoString() string { return s.String() } // SetConfiguredTableAssociation sets the ConfiguredTableAssociation field's value. func (s *GetConfiguredTableAssociationOutput) SetConfiguredTableAssociation(v *ConfiguredTableAssociation) *GetConfiguredTableAssociationOutput { s.ConfiguredTableAssociation = v return s } type GetConfiguredTableInput struct { _ struct{} `type:"structure" nopayload:"true"` // The unique ID for the configured table to retrieve. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `location:"uri" locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetConfiguredTableInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetConfiguredTableInput"} if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *GetConfiguredTableInput) SetConfiguredTableIdentifier(v string) *GetConfiguredTableInput { s.ConfiguredTableIdentifier = &v return s } type GetConfiguredTableOutput struct { _ struct{} `type:"structure"` // The retrieved configured table. // // ConfiguredTable is a required field ConfiguredTable *ConfiguredTable `locationName:"configuredTable" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetConfiguredTableOutput) GoString() string { return s.String() } // SetConfiguredTable sets the ConfiguredTable field's value. func (s *GetConfiguredTableOutput) SetConfiguredTable(v *ConfiguredTable) *GetConfiguredTableOutput { s.ConfiguredTable = v return s } type GetMembershipInput struct { _ struct{} `type:"structure" nopayload:"true"` // The identifier for a membership resource. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetMembershipInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetMembershipInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetMembershipInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetMembershipInput"} if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *GetMembershipInput) SetMembershipIdentifier(v string) *GetMembershipInput { s.MembershipIdentifier = &v return s } type GetMembershipOutput struct { _ struct{} `type:"structure"` // The membership retrieved for the provided identifier. // // Membership is a required field Membership *Membership `locationName:"membership" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetMembershipOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetMembershipOutput) GoString() string { return s.String() } // SetMembership sets the Membership field's value. func (s *GetMembershipOutput) SetMembership(v *Membership) *GetMembershipOutput { s.Membership = v return s } type GetProtectedQueryInput struct { _ struct{} `type:"structure" nopayload:"true"` // The identifier for a membership in a protected query instance. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // The identifier for a protected query instance. // // ProtectedQueryIdentifier is a required field ProtectedQueryIdentifier *string `location:"uri" locationName:"protectedQueryIdentifier" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetProtectedQueryInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetProtectedQueryInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetProtectedQueryInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetProtectedQueryInput"} if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if s.ProtectedQueryIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ProtectedQueryIdentifier")) } if s.ProtectedQueryIdentifier != nil && len(*s.ProtectedQueryIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("ProtectedQueryIdentifier", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *GetProtectedQueryInput) SetMembershipIdentifier(v string) *GetProtectedQueryInput { s.MembershipIdentifier = &v return s } // SetProtectedQueryIdentifier sets the ProtectedQueryIdentifier field's value. func (s *GetProtectedQueryInput) SetProtectedQueryIdentifier(v string) *GetProtectedQueryInput { s.ProtectedQueryIdentifier = &v return s } type GetProtectedQueryOutput struct { _ struct{} `type:"structure"` // The query processing metadata. // // ProtectedQuery is a required field ProtectedQuery *ProtectedQuery `locationName:"protectedQuery" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetProtectedQueryOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetProtectedQueryOutput) GoString() string { return s.String() } // SetProtectedQuery sets the ProtectedQuery field's value. func (s *GetProtectedQueryOutput) SetProtectedQuery(v *ProtectedQuery) *GetProtectedQueryOutput { s.ProtectedQuery = v return s } type GetSchemaAnalysisRuleInput struct { _ struct{} `type:"structure" nopayload:"true"` // A unique identifier for the collaboration that the schema belongs to. Currently // accepts a collaboration ID. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` // The name of the schema to retrieve the analysis rule for. // // Name is a required field Name *string `location:"uri" locationName:"name" type:"string" required:"true"` // The type of the schema analysis rule to retrieve. Schema analysis rules are // uniquely identified by a combination of the collaboration, the schema name, // and their type. // // Type is a required field Type *string `location:"uri" locationName:"type" type:"string" required:"true" enum:"AnalysisRuleType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaAnalysisRuleInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaAnalysisRuleInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetSchemaAnalysisRuleInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetSchemaAnalysisRuleInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if s.Name == nil { invalidParams.Add(request.NewErrParamRequired("Name")) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(request.NewErrParamMinLen("Name", 1)) } if s.Type == nil { invalidParams.Add(request.NewErrParamRequired("Type")) } if s.Type != nil && len(*s.Type) < 1 { invalidParams.Add(request.NewErrParamMinLen("Type", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *GetSchemaAnalysisRuleInput) SetCollaborationIdentifier(v string) *GetSchemaAnalysisRuleInput { s.CollaborationIdentifier = &v return s } // SetName sets the Name field's value. func (s *GetSchemaAnalysisRuleInput) SetName(v string) *GetSchemaAnalysisRuleInput { s.Name = &v return s } // SetType sets the Type field's value. func (s *GetSchemaAnalysisRuleInput) SetType(v string) *GetSchemaAnalysisRuleInput { s.Type = &v return s } type GetSchemaAnalysisRuleOutput struct { _ struct{} `type:"structure"` // A specification about how data from the configured table can be used. // // AnalysisRule is a required field AnalysisRule *AnalysisRule `locationName:"analysisRule" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaAnalysisRuleOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaAnalysisRuleOutput) GoString() string { return s.String() } // SetAnalysisRule sets the AnalysisRule field's value. func (s *GetSchemaAnalysisRuleOutput) SetAnalysisRule(v *AnalysisRule) *GetSchemaAnalysisRuleOutput { s.AnalysisRule = v return s } type GetSchemaInput struct { _ struct{} `type:"structure" nopayload:"true"` // A unique identifier for the collaboration that the schema belongs to. Currently // accepts a collaboration ID. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` // The name of the relation to retrieve the schema for. // // Name is a required field Name *string `location:"uri" locationName:"name" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetSchemaInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetSchemaInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if s.Name == nil { invalidParams.Add(request.NewErrParamRequired("Name")) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(request.NewErrParamMinLen("Name", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *GetSchemaInput) SetCollaborationIdentifier(v string) *GetSchemaInput { s.CollaborationIdentifier = &v return s } // SetName sets the Name field's value. func (s *GetSchemaInput) SetName(v string) *GetSchemaInput { s.Name = &v return s } type GetSchemaOutput struct { _ struct{} `type:"structure"` // The entire schema object. // // Schema is a required field Schema *Schema `locationName:"schema" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetSchemaOutput) GoString() string { return s.String() } // SetSchema sets the Schema field's value. func (s *GetSchemaOutput) SetSchema(v *Schema) *GetSchemaOutput { s.Schema = v return s } // A reference to a table within an Glue data catalog. type GlueTableReference struct { _ struct{} `type:"structure"` // The name of the database the Glue table belongs to. // // DatabaseName is a required field DatabaseName *string `locationName:"databaseName" type:"string" required:"true"` // The name of the Glue table. // // TableName is a required field TableName *string `locationName:"tableName" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GlueTableReference) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GlueTableReference) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GlueTableReference) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GlueTableReference"} if s.DatabaseName == nil { invalidParams.Add(request.NewErrParamRequired("DatabaseName")) } if s.TableName == nil { invalidParams.Add(request.NewErrParamRequired("TableName")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDatabaseName sets the DatabaseName field's value. func (s *GlueTableReference) SetDatabaseName(v string) *GlueTableReference { s.DatabaseName = &v return s } // SetTableName sets the TableName field's value. func (s *GlueTableReference) SetTableName(v string) *GlueTableReference { s.TableName = &v return s } // Unexpected error during processing of request. type InternalServerException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InternalServerException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InternalServerException) GoString() string { return s.String() } func newErrorInternalServerException(v protocol.ResponseMetadata) error { return &InternalServerException{ RespMetadata: v, } } // Code returns the exception type name. func (s *InternalServerException) Code() string { return "InternalServerException" } // Message returns the exception's message. func (s *InternalServerException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *InternalServerException) OrigErr() error { return nil } func (s *InternalServerException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *InternalServerException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *InternalServerException) RequestID() string { return s.RespMetadata.RequestID } type ListCollaborationsInput struct { _ struct{} `type:"structure" nopayload:"true"` // The maximum size of the results that is returned per call. Service chooses // a default if it has not been set. Service may return a nextToken even if // the maximum results has not been met. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The caller's status in a collaboration. MemberStatus *string `location:"querystring" locationName:"memberStatus" type:"string" enum:"FilterableMemberStatus"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListCollaborationsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListCollaborationsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListCollaborationsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListCollaborationsInput"} if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMaxResults sets the MaxResults field's value. func (s *ListCollaborationsInput) SetMaxResults(v int64) *ListCollaborationsInput { s.MaxResults = &v return s } // SetMemberStatus sets the MemberStatus field's value. func (s *ListCollaborationsInput) SetMemberStatus(v string) *ListCollaborationsInput { s.MemberStatus = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListCollaborationsInput) SetNextToken(v string) *ListCollaborationsInput { s.NextToken = &v return s } type ListCollaborationsOutput struct { _ struct{} `type:"structure"` // The list of collaborations. // // CollaborationList is a required field CollaborationList []*CollaborationSummary `locationName:"collaborationList" type:"list" required:"true"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListCollaborationsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListCollaborationsOutput) GoString() string { return s.String() } // SetCollaborationList sets the CollaborationList field's value. func (s *ListCollaborationsOutput) SetCollaborationList(v []*CollaborationSummary) *ListCollaborationsOutput { s.CollaborationList = v return s } // SetNextToken sets the NextToken field's value. func (s *ListCollaborationsOutput) SetNextToken(v string) *ListCollaborationsOutput { s.NextToken = &v return s } type ListConfiguredTableAssociationsInput struct { _ struct{} `type:"structure" nopayload:"true"` // The maximum size of the results that is returned per call. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // A unique identifier for the membership to list configured table associations // for. Currently accepts the membership ID. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTableAssociationsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTableAssociationsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListConfiguredTableAssociationsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListConfiguredTableAssociationsInput"} if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMaxResults sets the MaxResults field's value. func (s *ListConfiguredTableAssociationsInput) SetMaxResults(v int64) *ListConfiguredTableAssociationsInput { s.MaxResults = &v return s } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *ListConfiguredTableAssociationsInput) SetMembershipIdentifier(v string) *ListConfiguredTableAssociationsInput { s.MembershipIdentifier = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListConfiguredTableAssociationsInput) SetNextToken(v string) *ListConfiguredTableAssociationsInput { s.NextToken = &v return s } type ListConfiguredTableAssociationsOutput struct { _ struct{} `type:"structure"` // The retrieved list of configured table associations. // // ConfiguredTableAssociationSummaries is a required field ConfiguredTableAssociationSummaries []*ConfiguredTableAssociationSummary `locationName:"configuredTableAssociationSummaries" type:"list" required:"true"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTableAssociationsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTableAssociationsOutput) GoString() string { return s.String() } // SetConfiguredTableAssociationSummaries sets the ConfiguredTableAssociationSummaries field's value. func (s *ListConfiguredTableAssociationsOutput) SetConfiguredTableAssociationSummaries(v []*ConfiguredTableAssociationSummary) *ListConfiguredTableAssociationsOutput { s.ConfiguredTableAssociationSummaries = v return s } // SetNextToken sets the NextToken field's value. func (s *ListConfiguredTableAssociationsOutput) SetNextToken(v string) *ListConfiguredTableAssociationsOutput { s.NextToken = &v return s } type ListConfiguredTablesInput struct { _ struct{} `type:"structure" nopayload:"true"` // The maximum size of the results that is returned per call. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTablesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTablesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListConfiguredTablesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListConfiguredTablesInput"} if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMaxResults sets the MaxResults field's value. func (s *ListConfiguredTablesInput) SetMaxResults(v int64) *ListConfiguredTablesInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListConfiguredTablesInput) SetNextToken(v string) *ListConfiguredTablesInput { s.NextToken = &v return s } type ListConfiguredTablesOutput struct { _ struct{} `type:"structure"` // The configured tables listed by the request. // // ConfiguredTableSummaries is a required field ConfiguredTableSummaries []*ConfiguredTableSummary `locationName:"configuredTableSummaries" type:"list" required:"true"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTablesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListConfiguredTablesOutput) GoString() string { return s.String() } // SetConfiguredTableSummaries sets the ConfiguredTableSummaries field's value. func (s *ListConfiguredTablesOutput) SetConfiguredTableSummaries(v []*ConfiguredTableSummary) *ListConfiguredTablesOutput { s.ConfiguredTableSummaries = v return s } // SetNextToken sets the NextToken field's value. func (s *ListConfiguredTablesOutput) SetNextToken(v string) *ListConfiguredTablesOutput { s.NextToken = &v return s } type ListMembersInput struct { _ struct{} `type:"structure" nopayload:"true"` // The identifier of the collaboration in which the members are listed. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` // The maximum size of the results that is returned per call. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembersInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembersInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListMembersInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListMembersInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *ListMembersInput) SetCollaborationIdentifier(v string) *ListMembersInput { s.CollaborationIdentifier = &v return s } // SetMaxResults sets the MaxResults field's value. func (s *ListMembersInput) SetMaxResults(v int64) *ListMembersInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListMembersInput) SetNextToken(v string) *ListMembersInput { s.NextToken = &v return s } type ListMembersOutput struct { _ struct{} `type:"structure"` // The list of members returned by the ListMembers operation. // // MemberSummaries is a required field MemberSummaries []*MemberSummary `locationName:"memberSummaries" type:"list" required:"true"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembersOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembersOutput) GoString() string { return s.String() } // SetMemberSummaries sets the MemberSummaries field's value. func (s *ListMembersOutput) SetMemberSummaries(v []*MemberSummary) *ListMembersOutput { s.MemberSummaries = v return s } // SetNextToken sets the NextToken field's value. func (s *ListMembersOutput) SetNextToken(v string) *ListMembersOutput { s.NextToken = &v return s } type ListMembershipsInput struct { _ struct{} `type:"structure" nopayload:"true"` // The maximum size of the results that is returned per call. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` // A filter which will return only memberships in the specified status. Status *string `location:"querystring" locationName:"status" type:"string" enum:"MembershipStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembershipsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembershipsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListMembershipsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListMembershipsInput"} if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMaxResults sets the MaxResults field's value. func (s *ListMembershipsInput) SetMaxResults(v int64) *ListMembershipsInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListMembershipsInput) SetNextToken(v string) *ListMembershipsInput { s.NextToken = &v return s } // SetStatus sets the Status field's value. func (s *ListMembershipsInput) SetStatus(v string) *ListMembershipsInput { s.Status = &v return s } type ListMembershipsOutput struct { _ struct{} `type:"structure"` // The list of memberships returned from the ListMemberships operation. // // MembershipSummaries is a required field MembershipSummaries []*MembershipSummary `locationName:"membershipSummaries" type:"list" required:"true"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `locationName:"nextToken" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembershipsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListMembershipsOutput) GoString() string { return s.String() } // SetMembershipSummaries sets the MembershipSummaries field's value. func (s *ListMembershipsOutput) SetMembershipSummaries(v []*MembershipSummary) *ListMembershipsOutput { s.MembershipSummaries = v return s } // SetNextToken sets the NextToken field's value. func (s *ListMembershipsOutput) SetNextToken(v string) *ListMembershipsOutput { s.NextToken = &v return s } type ListProtectedQueriesInput struct { _ struct{} `type:"structure" nopayload:"true"` // The maximum size of the results that is returned per call. Service chooses // a default if it has not been set. Service can return a nextToken even if // the maximum results has not been met. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The identifier for the membership in the collaboration. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` // A filter on the status of the protected query. Status *string `location:"querystring" locationName:"status" type:"string" enum:"ProtectedQueryStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListProtectedQueriesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListProtectedQueriesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListProtectedQueriesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListProtectedQueriesInput"} if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMaxResults sets the MaxResults field's value. func (s *ListProtectedQueriesInput) SetMaxResults(v int64) *ListProtectedQueriesInput { s.MaxResults = &v return s } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *ListProtectedQueriesInput) SetMembershipIdentifier(v string) *ListProtectedQueriesInput { s.MembershipIdentifier = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListProtectedQueriesInput) SetNextToken(v string) *ListProtectedQueriesInput { s.NextToken = &v return s } // SetStatus sets the Status field's value. func (s *ListProtectedQueriesInput) SetStatus(v string) *ListProtectedQueriesInput { s.Status = &v return s } type ListProtectedQueriesOutput struct { _ struct{} `type:"structure"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `locationName:"nextToken" type:"string"` // A list of protected queries. // // ProtectedQueries is a required field ProtectedQueries []*ProtectedQuerySummary `locationName:"protectedQueries" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListProtectedQueriesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListProtectedQueriesOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *ListProtectedQueriesOutput) SetNextToken(v string) *ListProtectedQueriesOutput { s.NextToken = &v return s } // SetProtectedQueries sets the ProtectedQueries field's value. func (s *ListProtectedQueriesOutput) SetProtectedQueries(v []*ProtectedQuerySummary) *ListProtectedQueriesOutput { s.ProtectedQueries = v return s } type ListSchemasInput struct { _ struct{} `type:"structure" nopayload:"true"` // A unique identifier for the collaboration that the schema belongs to. Currently // accepts a collaboration ID. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` // The maximum size of the results that is returned per call. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` // If present, filter schemas by schema type. The only valid schema type is // currently `TABLE`. SchemaType *string `location:"querystring" locationName:"schemaType" type:"string" enum:"SchemaType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListSchemasInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListSchemasInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListSchemasInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListSchemasInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *ListSchemasInput) SetCollaborationIdentifier(v string) *ListSchemasInput { s.CollaborationIdentifier = &v return s } // SetMaxResults sets the MaxResults field's value. func (s *ListSchemasInput) SetMaxResults(v int64) *ListSchemasInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListSchemasInput) SetNextToken(v string) *ListSchemasInput { s.NextToken = &v return s } // SetSchemaType sets the SchemaType field's value. func (s *ListSchemasInput) SetSchemaType(v string) *ListSchemasInput { s.SchemaType = &v return s } type ListSchemasOutput struct { _ struct{} `type:"structure"` // The token value retrieved from a previous call to access the next page of // results. NextToken *string `locationName:"nextToken" type:"string"` // The retrieved list of schemas. // // SchemaSummaries is a required field SchemaSummaries []*SchemaSummary `locationName:"schemaSummaries" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListSchemasOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListSchemasOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *ListSchemasOutput) SetNextToken(v string) *ListSchemasOutput { s.NextToken = &v return s } // SetSchemaSummaries sets the SchemaSummaries field's value. func (s *ListSchemasOutput) SetSchemaSummaries(v []*SchemaSummary) *ListSchemasOutput { s.SchemaSummaries = v return s } type ListTagsForResourceInput struct { _ struct{} `type:"structure" nopayload:"true"` // The Amazon Resource Name (ARN) associated with the resource you want to list // tags on. // // ResourceArn is a required field ResourceArn *string `location:"uri" locationName:"resourceArn" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListTagsForResourceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListTagsForResourceInput"} if s.ResourceArn == nil { invalidParams.Add(request.NewErrParamRequired("ResourceArn")) } if s.ResourceArn != nil && len(*s.ResourceArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceArn", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetResourceArn sets the ResourceArn field's value. func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput { s.ResourceArn = &v return s } type ListTagsForResourceOutput struct { _ struct{} `type:"structure"` // A map of objects specifying each key name and value. // // Tags is a required field Tags map[string]*string `locationName:"tags" type:"map" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceOutput) GoString() string { return s.String() } // SetTags sets the Tags field's value. func (s *ListTagsForResourceOutput) SetTags(v map[string]*string) *ListTagsForResourceOutput { s.Tags = v return s } // Basic metadata used to construct a new member. type MemberSpecification struct { _ struct{} `type:"structure"` // The identifier used to reference members of the collaboration. Currently // only supports Amazon Web Services account ID. // // AccountId is a required field AccountId *string `locationName:"accountId" min:"12" type:"string" required:"true"` // The member's display name. // // DisplayName is a required field DisplayName *string `locationName:"displayName" min:"1" type:"string" required:"true"` // The abilities granted to the collaboration member. // // MemberAbilities is a required field MemberAbilities []*string `locationName:"memberAbilities" type:"list" required:"true" enum:"MemberAbility"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MemberSpecification) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MemberSpecification) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *MemberSpecification) Validate() error { invalidParams := request.ErrInvalidParams{Context: "MemberSpecification"} if s.AccountId == nil { invalidParams.Add(request.NewErrParamRequired("AccountId")) } if s.AccountId != nil && len(*s.AccountId) < 12 { invalidParams.Add(request.NewErrParamMinLen("AccountId", 12)) } if s.DisplayName == nil { invalidParams.Add(request.NewErrParamRequired("DisplayName")) } if s.DisplayName != nil && len(*s.DisplayName) < 1 { invalidParams.Add(request.NewErrParamMinLen("DisplayName", 1)) } if s.MemberAbilities == nil { invalidParams.Add(request.NewErrParamRequired("MemberAbilities")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAccountId sets the AccountId field's value. func (s *MemberSpecification) SetAccountId(v string) *MemberSpecification { s.AccountId = &v return s } // SetDisplayName sets the DisplayName field's value. func (s *MemberSpecification) SetDisplayName(v string) *MemberSpecification { s.DisplayName = &v return s } // SetMemberAbilities sets the MemberAbilities field's value. func (s *MemberSpecification) SetMemberAbilities(v []*string) *MemberSpecification { s.MemberAbilities = v return s } // The member object listed by the request. type MemberSummary struct { _ struct{} `type:"structure"` // The abilities granted to the collaboration member. // // Abilities is a required field Abilities []*string `locationName:"abilities" type:"list" required:"true" enum:"MemberAbility"` // The identifier used to reference members of the collaboration. Currently // only supports Amazon Web Services account ID. // // AccountId is a required field AccountId *string `locationName:"accountId" min:"12" type:"string" required:"true"` // The time when the member was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The member's display name. // // DisplayName is a required field DisplayName *string `locationName:"displayName" min:"1" type:"string" required:"true"` // The unique ARN for the member's associated membership, if present. MembershipArn *string `locationName:"membershipArn" type:"string"` // The unique ID for the member's associated membership, if present. MembershipId *string `locationName:"membershipId" min:"36" type:"string"` // The status of the member. Valid values are `INVITED`, `ACTIVE`, `LEFT`, and // `REMOVED`. // // Status is a required field Status *string `locationName:"status" type:"string" required:"true" enum:"MemberStatus"` // The time the member metadata was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MemberSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MemberSummary) GoString() string { return s.String() } // SetAbilities sets the Abilities field's value. func (s *MemberSummary) SetAbilities(v []*string) *MemberSummary { s.Abilities = v return s } // SetAccountId sets the AccountId field's value. func (s *MemberSummary) SetAccountId(v string) *MemberSummary { s.AccountId = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *MemberSummary) SetCreateTime(v time.Time) *MemberSummary { s.CreateTime = &v return s } // SetDisplayName sets the DisplayName field's value. func (s *MemberSummary) SetDisplayName(v string) *MemberSummary { s.DisplayName = &v return s } // SetMembershipArn sets the MembershipArn field's value. func (s *MemberSummary) SetMembershipArn(v string) *MemberSummary { s.MembershipArn = &v return s } // SetMembershipId sets the MembershipId field's value. func (s *MemberSummary) SetMembershipId(v string) *MemberSummary { s.MembershipId = &v return s } // SetStatus sets the Status field's value. func (s *MemberSummary) SetStatus(v string) *MemberSummary { s.Status = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *MemberSummary) SetUpdateTime(v time.Time) *MemberSummary { s.UpdateTime = &v return s } // The membership object. type Membership struct { _ struct{} `type:"structure"` // The unique ARN for the membership. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The unique ARN for the membership's associated collaboration. // // CollaborationArn is a required field CollaborationArn *string `locationName:"collaborationArn" type:"string" required:"true"` // The identifier used to reference members of the collaboration. Currently // only supports Amazon Web Services account ID. // // CollaborationCreatorAccountId is a required field CollaborationCreatorAccountId *string `locationName:"collaborationCreatorAccountId" min:"12" type:"string" required:"true"` // The display name of the collaboration creator. // // CollaborationCreatorDisplayName is a required field CollaborationCreatorDisplayName *string `locationName:"collaborationCreatorDisplayName" min:"1" type:"string" required:"true"` // The unique ID for the membership's collaboration. // // CollaborationId is a required field CollaborationId *string `locationName:"collaborationId" min:"36" type:"string" required:"true"` // The name of the membership's collaboration. // // CollaborationName is a required field CollaborationName *string `locationName:"collaborationName" min:"1" type:"string" required:"true"` // The time when the membership was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The unique ID of the membership. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The abilities granted to the collaboration member. // // MemberAbilities is a required field MemberAbilities []*string `locationName:"memberAbilities" type:"list" required:"true" enum:"MemberAbility"` // An indicator as to whether query logging has been enabled or disabled for // the collaboration. // // QueryLogStatus is a required field QueryLogStatus *string `locationName:"queryLogStatus" type:"string" required:"true" enum:"MembershipQueryLogStatus"` // The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and `COLLABORATION_DELETED`. // // Status is a required field Status *string `locationName:"status" type:"string" required:"true" enum:"MembershipStatus"` // The time the membership metadata was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Membership) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Membership) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *Membership) SetArn(v string) *Membership { s.Arn = &v return s } // SetCollaborationArn sets the CollaborationArn field's value. func (s *Membership) SetCollaborationArn(v string) *Membership { s.CollaborationArn = &v return s } // SetCollaborationCreatorAccountId sets the CollaborationCreatorAccountId field's value. func (s *Membership) SetCollaborationCreatorAccountId(v string) *Membership { s.CollaborationCreatorAccountId = &v return s } // SetCollaborationCreatorDisplayName sets the CollaborationCreatorDisplayName field's value. func (s *Membership) SetCollaborationCreatorDisplayName(v string) *Membership { s.CollaborationCreatorDisplayName = &v return s } // SetCollaborationId sets the CollaborationId field's value. func (s *Membership) SetCollaborationId(v string) *Membership { s.CollaborationId = &v return s } // SetCollaborationName sets the CollaborationName field's value. func (s *Membership) SetCollaborationName(v string) *Membership { s.CollaborationName = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *Membership) SetCreateTime(v time.Time) *Membership { s.CreateTime = &v return s } // SetId sets the Id field's value. func (s *Membership) SetId(v string) *Membership { s.Id = &v return s } // SetMemberAbilities sets the MemberAbilities field's value. func (s *Membership) SetMemberAbilities(v []*string) *Membership { s.MemberAbilities = v return s } // SetQueryLogStatus sets the QueryLogStatus field's value. func (s *Membership) SetQueryLogStatus(v string) *Membership { s.QueryLogStatus = &v return s } // SetStatus sets the Status field's value. func (s *Membership) SetStatus(v string) *Membership { s.Status = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *Membership) SetUpdateTime(v time.Time) *Membership { s.UpdateTime = &v return s } // The membership object listed by the request. type MembershipSummary struct { _ struct{} `type:"structure"` // The unique ARN for the membership. // // Arn is a required field Arn *string `locationName:"arn" type:"string" required:"true"` // The unique ARN for the membership's associated collaboration. // // CollaborationArn is a required field CollaborationArn *string `locationName:"collaborationArn" type:"string" required:"true"` // The identifier of the Amazon Web Services principal that created the collaboration. // Currently only supports Amazon Web Services account ID. // // CollaborationCreatorAccountId is a required field CollaborationCreatorAccountId *string `locationName:"collaborationCreatorAccountId" min:"12" type:"string" required:"true"` // The display name of the collaboration creator. // // CollaborationCreatorDisplayName is a required field CollaborationCreatorDisplayName *string `locationName:"collaborationCreatorDisplayName" min:"1" type:"string" required:"true"` // The unique ID for the membership's collaboration. // // CollaborationId is a required field CollaborationId *string `locationName:"collaborationId" min:"36" type:"string" required:"true"` // The name for the membership's collaboration. // // CollaborationName is a required field CollaborationName *string `locationName:"collaborationName" min:"1" type:"string" required:"true"` // The time when the membership was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The unique ID for the membership's collaboration. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The abilities granted to the collaboration member. // // MemberAbilities is a required field MemberAbilities []*string `locationName:"memberAbilities" type:"list" required:"true" enum:"MemberAbility"` // The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and `COLLABORATION_DELETED`. // // Status is a required field Status *string `locationName:"status" type:"string" required:"true" enum:"MembershipStatus"` // The time the membership metadata was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MembershipSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MembershipSummary) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *MembershipSummary) SetArn(v string) *MembershipSummary { s.Arn = &v return s } // SetCollaborationArn sets the CollaborationArn field's value. func (s *MembershipSummary) SetCollaborationArn(v string) *MembershipSummary { s.CollaborationArn = &v return s } // SetCollaborationCreatorAccountId sets the CollaborationCreatorAccountId field's value. func (s *MembershipSummary) SetCollaborationCreatorAccountId(v string) *MembershipSummary { s.CollaborationCreatorAccountId = &v return s } // SetCollaborationCreatorDisplayName sets the CollaborationCreatorDisplayName field's value. func (s *MembershipSummary) SetCollaborationCreatorDisplayName(v string) *MembershipSummary { s.CollaborationCreatorDisplayName = &v return s } // SetCollaborationId sets the CollaborationId field's value. func (s *MembershipSummary) SetCollaborationId(v string) *MembershipSummary { s.CollaborationId = &v return s } // SetCollaborationName sets the CollaborationName field's value. func (s *MembershipSummary) SetCollaborationName(v string) *MembershipSummary { s.CollaborationName = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *MembershipSummary) SetCreateTime(v time.Time) *MembershipSummary { s.CreateTime = &v return s } // SetId sets the Id field's value. func (s *MembershipSummary) SetId(v string) *MembershipSummary { s.Id = &v return s } // SetMemberAbilities sets the MemberAbilities field's value. func (s *MembershipSummary) SetMemberAbilities(v []*string) *MembershipSummary { s.MemberAbilities = v return s } // SetStatus sets the Status field's value. func (s *MembershipSummary) SetStatus(v string) *MembershipSummary { s.Status = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *MembershipSummary) SetUpdateTime(v time.Time) *MembershipSummary { s.UpdateTime = &v return s } // The parameters for an Clean Rooms protected query. type ProtectedQuery struct { _ struct{} `type:"structure"` // The time at which the protected query was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // An error thrown by the protected query. Error *ProtectedQueryError `locationName:"error" type:"structure"` // The identifier for a protected query instance. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The ARN of the membership. // // MembershipArn is a required field MembershipArn *string `locationName:"membershipArn" type:"string" required:"true"` // The identifier for the membership. // // MembershipId is a required field MembershipId *string `locationName:"membershipId" min:"36" type:"string" required:"true"` // The result of the protected query. Result *ProtectedQueryResult `locationName:"result" type:"structure"` // Contains any details needed to write the query results. // // ResultConfiguration is a required field ResultConfiguration *ProtectedQueryResultConfiguration `locationName:"resultConfiguration" type:"structure" required:"true"` // The protected query SQL parameters. // // SqlParameters is a sensitive parameter and its value will be // replaced with "sensitive" in string returned by ProtectedQuery's // String and GoString methods. // // SqlParameters is a required field SqlParameters *ProtectedQuerySQLParameters `locationName:"sqlParameters" type:"structure" required:"true" sensitive:"true"` // Statistics about protected query execution. Statistics *ProtectedQueryStatistics `locationName:"statistics" type:"structure"` // The status of the query. // // Status is a required field Status *string `locationName:"status" type:"string" required:"true" enum:"ProtectedQueryStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQuery) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQuery) GoString() string { return s.String() } // SetCreateTime sets the CreateTime field's value. func (s *ProtectedQuery) SetCreateTime(v time.Time) *ProtectedQuery { s.CreateTime = &v return s } // SetError sets the Error field's value. func (s *ProtectedQuery) SetError(v *ProtectedQueryError) *ProtectedQuery { s.Error = v return s } // SetId sets the Id field's value. func (s *ProtectedQuery) SetId(v string) *ProtectedQuery { s.Id = &v return s } // SetMembershipArn sets the MembershipArn field's value. func (s *ProtectedQuery) SetMembershipArn(v string) *ProtectedQuery { s.MembershipArn = &v return s } // SetMembershipId sets the MembershipId field's value. func (s *ProtectedQuery) SetMembershipId(v string) *ProtectedQuery { s.MembershipId = &v return s } // SetResult sets the Result field's value. func (s *ProtectedQuery) SetResult(v *ProtectedQueryResult) *ProtectedQuery { s.Result = v return s } // SetResultConfiguration sets the ResultConfiguration field's value. func (s *ProtectedQuery) SetResultConfiguration(v *ProtectedQueryResultConfiguration) *ProtectedQuery { s.ResultConfiguration = v return s } // SetSqlParameters sets the SqlParameters field's value. func (s *ProtectedQuery) SetSqlParameters(v *ProtectedQuerySQLParameters) *ProtectedQuery { s.SqlParameters = v return s } // SetStatistics sets the Statistics field's value. func (s *ProtectedQuery) SetStatistics(v *ProtectedQueryStatistics) *ProtectedQuery { s.Statistics = v return s } // SetStatus sets the Status field's value. func (s *ProtectedQuery) SetStatus(v string) *ProtectedQuery { s.Status = &v return s } // Details of errors thrown by the protected query. type ProtectedQueryError struct { _ struct{} `type:"structure"` // An error code for the error. // // Code is a required field Code *string `locationName:"code" type:"string" required:"true"` // A description of why the query failed. // // Message is a required field Message *string `locationName:"message" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryError) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryError) GoString() string { return s.String() } // SetCode sets the Code field's value. func (s *ProtectedQueryError) SetCode(v string) *ProtectedQueryError { s.Code = &v return s } // SetMessage sets the Message field's value. func (s *ProtectedQueryError) SetMessage(v string) *ProtectedQueryError { s.Message = &v return s } // Contains configuration details for protected query output. type ProtectedQueryOutputConfiguration struct { _ struct{} `type:"structure"` // Required configuration for a protected query with an `S3` output type. S3 *ProtectedQueryS3OutputConfiguration `locationName:"s3" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryOutputConfiguration) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryOutputConfiguration) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ProtectedQueryOutputConfiguration) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ProtectedQueryOutputConfiguration"} if s.S3 != nil { if err := s.S3.Validate(); err != nil { invalidParams.AddNested("S3", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetS3 sets the S3 field's value. func (s *ProtectedQueryOutputConfiguration) SetS3(v *ProtectedQueryS3OutputConfiguration) *ProtectedQueryOutputConfiguration { s.S3 = v return s } // Contains details about the protected query output. type ProtectedQueryOutput_ struct { _ struct{} `type:"structure"` // If present, the output for a protected query with an `S3` output type. S3 *ProtectedQueryS3Output_ `locationName:"s3" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryOutput_) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryOutput_) GoString() string { return s.String() } // SetS3 sets the S3 field's value. func (s *ProtectedQueryOutput_) SetS3(v *ProtectedQueryS3Output_) *ProtectedQueryOutput_ { s.S3 = v return s } // Details about the query results. type ProtectedQueryResult struct { _ struct{} `type:"structure"` // The output of the protected query. // // Output is a required field Output *ProtectedQueryOutput_ `locationName:"output" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryResult) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryResult) GoString() string { return s.String() } // SetOutput sets the Output field's value. func (s *ProtectedQueryResult) SetOutput(v *ProtectedQueryOutput_) *ProtectedQueryResult { s.Output = v return s } // Contains configurations for protected query results. type ProtectedQueryResultConfiguration struct { _ struct{} `type:"structure"` // Configuration for protected query results. // // OutputConfiguration is a required field OutputConfiguration *ProtectedQueryOutputConfiguration `locationName:"outputConfiguration" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryResultConfiguration) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryResultConfiguration) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ProtectedQueryResultConfiguration) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ProtectedQueryResultConfiguration"} if s.OutputConfiguration == nil { invalidParams.Add(request.NewErrParamRequired("OutputConfiguration")) } if s.OutputConfiguration != nil { if err := s.OutputConfiguration.Validate(); err != nil { invalidParams.AddNested("OutputConfiguration", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetOutputConfiguration sets the OutputConfiguration field's value. func (s *ProtectedQueryResultConfiguration) SetOutputConfiguration(v *ProtectedQueryOutputConfiguration) *ProtectedQueryResultConfiguration { s.OutputConfiguration = v return s } // Contains the configuration to write the query results to S3. type ProtectedQueryS3OutputConfiguration struct { _ struct{} `type:"structure"` // The S3 bucket to unload the protected query results. // // Bucket is a required field Bucket *string `locationName:"bucket" min:"3" type:"string" required:"true"` // The S3 prefix to unload the protected query results. KeyPrefix *string `locationName:"keyPrefix" type:"string"` // Intended file format of the result. // // ResultFormat is a required field ResultFormat *string `locationName:"resultFormat" type:"string" required:"true" enum:"ResultFormat"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryS3OutputConfiguration) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryS3OutputConfiguration) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ProtectedQueryS3OutputConfiguration) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ProtectedQueryS3OutputConfiguration"} if s.Bucket == nil { invalidParams.Add(request.NewErrParamRequired("Bucket")) } if s.Bucket != nil && len(*s.Bucket) < 3 { invalidParams.Add(request.NewErrParamMinLen("Bucket", 3)) } if s.ResultFormat == nil { invalidParams.Add(request.NewErrParamRequired("ResultFormat")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetBucket sets the Bucket field's value. func (s *ProtectedQueryS3OutputConfiguration) SetBucket(v string) *ProtectedQueryS3OutputConfiguration { s.Bucket = &v return s } // SetKeyPrefix sets the KeyPrefix field's value. func (s *ProtectedQueryS3OutputConfiguration) SetKeyPrefix(v string) *ProtectedQueryS3OutputConfiguration { s.KeyPrefix = &v return s } // SetResultFormat sets the ResultFormat field's value. func (s *ProtectedQueryS3OutputConfiguration) SetResultFormat(v string) *ProtectedQueryS3OutputConfiguration { s.ResultFormat = &v return s } // Contains output information for protected queries with an S3 output type. type ProtectedQueryS3Output_ struct { _ struct{} `type:"structure"` // The S3 location of the result. // // Location is a required field Location *string `locationName:"location" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryS3Output_) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryS3Output_) GoString() string { return s.String() } // SetLocation sets the Location field's value. func (s *ProtectedQueryS3Output_) SetLocation(v string) *ProtectedQueryS3Output_ { s.Location = &v return s } // The parameters for the SQL type Protected Query. type ProtectedQuerySQLParameters struct { _ struct{} `type:"structure" sensitive:"true"` // The query string to be submitted. QueryString *string `locationName:"queryString" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQuerySQLParameters) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQuerySQLParameters) GoString() string { return s.String() } // SetQueryString sets the QueryString field's value. func (s *ProtectedQuerySQLParameters) SetQueryString(v string) *ProtectedQuerySQLParameters { s.QueryString = &v return s } // Contains statistics about the execution of the protected query. type ProtectedQueryStatistics struct { _ struct{} `type:"structure"` // The duration of the Protected Query, from creation until query completion. TotalDurationInMillis *int64 `locationName:"totalDurationInMillis" type:"long"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryStatistics) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQueryStatistics) GoString() string { return s.String() } // SetTotalDurationInMillis sets the TotalDurationInMillis field's value. func (s *ProtectedQueryStatistics) SetTotalDurationInMillis(v int64) *ProtectedQueryStatistics { s.TotalDurationInMillis = &v return s } // The protected query summary for the objects listed by the request. type ProtectedQuerySummary struct { _ struct{} `type:"structure"` // The time the protected query was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The unique ID of the protected query. // // Id is a required field Id *string `locationName:"id" min:"36" type:"string" required:"true"` // The unique ARN for the membership that initiated the protected query. // // MembershipArn is a required field MembershipArn *string `locationName:"membershipArn" type:"string" required:"true"` // The unique ID for the membership that initiated the protected query. // // MembershipId is a required field MembershipId *string `locationName:"membershipId" min:"36" type:"string" required:"true"` // The status of the protected query. Value values are `SUBMITTED`, `STARTED`, // `CANCELLED`, `CANCELLING`, `FAILED`, `SUCCESS`, `TIMED_OUT`. // // Status is a required field Status *string `locationName:"status" type:"string" required:"true" enum:"ProtectedQueryStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQuerySummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ProtectedQuerySummary) GoString() string { return s.String() } // SetCreateTime sets the CreateTime field's value. func (s *ProtectedQuerySummary) SetCreateTime(v time.Time) *ProtectedQuerySummary { s.CreateTime = &v return s } // SetId sets the Id field's value. func (s *ProtectedQuerySummary) SetId(v string) *ProtectedQuerySummary { s.Id = &v return s } // SetMembershipArn sets the MembershipArn field's value. func (s *ProtectedQuerySummary) SetMembershipArn(v string) *ProtectedQuerySummary { s.MembershipArn = &v return s } // SetMembershipId sets the MembershipId field's value. func (s *ProtectedQuerySummary) SetMembershipId(v string) *ProtectedQuerySummary { s.MembershipId = &v return s } // SetStatus sets the Status field's value. func (s *ProtectedQuerySummary) SetStatus(v string) *ProtectedQuerySummary { s.Status = &v return s } // Request references a resource which does not exist. type ResourceNotFoundException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // The Id of the missing resource. // // ResourceId is a required field ResourceId *string `locationName:"resourceId" type:"string" required:"true"` // The type of the missing resource. // // ResourceType is a required field ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourceNotFoundException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourceNotFoundException) GoString() string { return s.String() } func newErrorResourceNotFoundException(v protocol.ResponseMetadata) error { return &ResourceNotFoundException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ResourceNotFoundException) Code() string { return "ResourceNotFoundException" } // Message returns the exception's message. func (s *ResourceNotFoundException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ResourceNotFoundException) OrigErr() error { return nil } func (s *ResourceNotFoundException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *ResourceNotFoundException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ResourceNotFoundException) RequestID() string { return s.RespMetadata.RequestID } // A schema is a relation within a collaboration. type Schema struct { _ struct{} `type:"structure"` // The analysis method for the schema. The only valid value is currently DIRECT_QUERY. AnalysisMethod *string `locationName:"analysisMethod" type:"string" enum:"AnalysisMethod"` // The analysis rule types associated with the schema. Valued values are LIST // and AGGREGATION. Currently, only one entry is present. // // AnalysisRuleTypes is a required field AnalysisRuleTypes []*string `locationName:"analysisRuleTypes" type:"list" required:"true" enum:"AnalysisRuleType"` // The unique ARN for the collaboration that the schema belongs to. // // CollaborationArn is a required field CollaborationArn *string `locationName:"collaborationArn" type:"string" required:"true"` // The unique ID for the collaboration that the schema belongs to. // // CollaborationId is a required field CollaborationId *string `locationName:"collaborationId" min:"36" type:"string" required:"true"` // The columns for the relation this schema represents. // // Columns is a required field Columns []*Column `locationName:"columns" type:"list" required:"true"` // The time the schema was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The unique account ID for the Amazon Web Services account that owns the schema. // // CreatorAccountId is a required field CreatorAccountId *string `locationName:"creatorAccountId" min:"12" type:"string" required:"true"` // A description for the schema. // // Description is a required field Description *string `locationName:"description" type:"string" required:"true"` // A name for the schema. The schema relation is referred to by this name when // queried by a protected query. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` // The partition keys for the dataset underlying this schema. // // PartitionKeys is a required field PartitionKeys []*Column `locationName:"partitionKeys" type:"list" required:"true"` // The type of schema. The only valid value is currently `TABLE`. // // Type is a required field Type *string `locationName:"type" type:"string" required:"true" enum:"SchemaType"` // The time the schema was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Schema) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Schema) GoString() string { return s.String() } // SetAnalysisMethod sets the AnalysisMethod field's value. func (s *Schema) SetAnalysisMethod(v string) *Schema { s.AnalysisMethod = &v return s } // SetAnalysisRuleTypes sets the AnalysisRuleTypes field's value. func (s *Schema) SetAnalysisRuleTypes(v []*string) *Schema { s.AnalysisRuleTypes = v return s } // SetCollaborationArn sets the CollaborationArn field's value. func (s *Schema) SetCollaborationArn(v string) *Schema { s.CollaborationArn = &v return s } // SetCollaborationId sets the CollaborationId field's value. func (s *Schema) SetCollaborationId(v string) *Schema { s.CollaborationId = &v return s } // SetColumns sets the Columns field's value. func (s *Schema) SetColumns(v []*Column) *Schema { s.Columns = v return s } // SetCreateTime sets the CreateTime field's value. func (s *Schema) SetCreateTime(v time.Time) *Schema { s.CreateTime = &v return s } // SetCreatorAccountId sets the CreatorAccountId field's value. func (s *Schema) SetCreatorAccountId(v string) *Schema { s.CreatorAccountId = &v return s } // SetDescription sets the Description field's value. func (s *Schema) SetDescription(v string) *Schema { s.Description = &v return s } // SetName sets the Name field's value. func (s *Schema) SetName(v string) *Schema { s.Name = &v return s } // SetPartitionKeys sets the PartitionKeys field's value. func (s *Schema) SetPartitionKeys(v []*Column) *Schema { s.PartitionKeys = v return s } // SetType sets the Type field's value. func (s *Schema) SetType(v string) *Schema { s.Type = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *Schema) SetUpdateTime(v time.Time) *Schema { s.UpdateTime = &v return s } // The schema summary for the objects listed by the request. type SchemaSummary struct { _ struct{} `type:"structure"` // The analysis method for the associated schema. The only valid value is currently // `DIRECT_QUERY`. AnalysisMethod *string `locationName:"analysisMethod" type:"string" enum:"AnalysisMethod"` // The types of analysis rules that are associated with this schema object. // // AnalysisRuleTypes is a required field AnalysisRuleTypes []*string `locationName:"analysisRuleTypes" type:"list" required:"true" enum:"AnalysisRuleType"` // The unique ARN for the collaboration that the schema belongs to. // // CollaborationArn is a required field CollaborationArn *string `locationName:"collaborationArn" type:"string" required:"true"` // The unique ID for the collaboration that the schema belongs to. // // CollaborationId is a required field CollaborationId *string `locationName:"collaborationId" min:"36" type:"string" required:"true"` // The time the schema object was created. // // CreateTime is a required field CreateTime *time.Time `locationName:"createTime" type:"timestamp" required:"true"` // The unique account ID for the Amazon Web Services account that owns the schema. // // CreatorAccountId is a required field CreatorAccountId *string `locationName:"creatorAccountId" min:"12" type:"string" required:"true"` // The name for the schema object. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` // The type of schema object. The only valid schema type is currently `TABLE`. // // Type is a required field Type *string `locationName:"type" type:"string" required:"true" enum:"SchemaType"` // The time the schema object was last updated. // // UpdateTime is a required field UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s SchemaSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s SchemaSummary) GoString() string { return s.String() } // SetAnalysisMethod sets the AnalysisMethod field's value. func (s *SchemaSummary) SetAnalysisMethod(v string) *SchemaSummary { s.AnalysisMethod = &v return s } // SetAnalysisRuleTypes sets the AnalysisRuleTypes field's value. func (s *SchemaSummary) SetAnalysisRuleTypes(v []*string) *SchemaSummary { s.AnalysisRuleTypes = v return s } // SetCollaborationArn sets the CollaborationArn field's value. func (s *SchemaSummary) SetCollaborationArn(v string) *SchemaSummary { s.CollaborationArn = &v return s } // SetCollaborationId sets the CollaborationId field's value. func (s *SchemaSummary) SetCollaborationId(v string) *SchemaSummary { s.CollaborationId = &v return s } // SetCreateTime sets the CreateTime field's value. func (s *SchemaSummary) SetCreateTime(v time.Time) *SchemaSummary { s.CreateTime = &v return s } // SetCreatorAccountId sets the CreatorAccountId field's value. func (s *SchemaSummary) SetCreatorAccountId(v string) *SchemaSummary { s.CreatorAccountId = &v return s } // SetName sets the Name field's value. func (s *SchemaSummary) SetName(v string) *SchemaSummary { s.Name = &v return s } // SetType sets the Type field's value. func (s *SchemaSummary) SetType(v string) *SchemaSummary { s.Type = &v return s } // SetUpdateTime sets the UpdateTime field's value. func (s *SchemaSummary) SetUpdateTime(v time.Time) *SchemaSummary { s.UpdateTime = &v return s } // Request denied because service quota has been exceeded. type ServiceQuotaExceededException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // The name of the quota. // // QuotaName is a required field QuotaName *string `locationName:"quotaName" type:"string" required:"true"` // The value of the quota. // // QuotaValue is a required field QuotaValue *float64 `locationName:"quotaValue" type:"double" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ServiceQuotaExceededException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ServiceQuotaExceededException) GoString() string { return s.String() } func newErrorServiceQuotaExceededException(v protocol.ResponseMetadata) error { return &ServiceQuotaExceededException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ServiceQuotaExceededException) Code() string { return "ServiceQuotaExceededException" } // Message returns the exception's message. func (s *ServiceQuotaExceededException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ServiceQuotaExceededException) OrigErr() error { return nil } func (s *ServiceQuotaExceededException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *ServiceQuotaExceededException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ServiceQuotaExceededException) RequestID() string { return s.RespMetadata.RequestID } type StartProtectedQueryInput struct { _ struct{} `type:"structure"` // A unique identifier for the membership to run this query against. Currently // accepts a membership ID. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // The details needed to write the query results. // // ResultConfiguration is a required field ResultConfiguration *ProtectedQueryResultConfiguration `locationName:"resultConfiguration" type:"structure" required:"true"` // The protected SQL query parameters. // // SqlParameters is a sensitive parameter and its value will be // replaced with "sensitive" in string returned by StartProtectedQueryInput's // String and GoString methods. // // SqlParameters is a required field SqlParameters *ProtectedQuerySQLParameters `locationName:"sqlParameters" type:"structure" required:"true" sensitive:"true"` // The type of the protected query to be started. // // Type is a required field Type *string `locationName:"type" type:"string" required:"true" enum:"ProtectedQueryType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartProtectedQueryInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartProtectedQueryInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *StartProtectedQueryInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "StartProtectedQueryInput"} if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if s.ResultConfiguration == nil { invalidParams.Add(request.NewErrParamRequired("ResultConfiguration")) } if s.SqlParameters == nil { invalidParams.Add(request.NewErrParamRequired("SqlParameters")) } if s.Type == nil { invalidParams.Add(request.NewErrParamRequired("Type")) } if s.ResultConfiguration != nil { if err := s.ResultConfiguration.Validate(); err != nil { invalidParams.AddNested("ResultConfiguration", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *StartProtectedQueryInput) SetMembershipIdentifier(v string) *StartProtectedQueryInput { s.MembershipIdentifier = &v return s } // SetResultConfiguration sets the ResultConfiguration field's value. func (s *StartProtectedQueryInput) SetResultConfiguration(v *ProtectedQueryResultConfiguration) *StartProtectedQueryInput { s.ResultConfiguration = v return s } // SetSqlParameters sets the SqlParameters field's value. func (s *StartProtectedQueryInput) SetSqlParameters(v *ProtectedQuerySQLParameters) *StartProtectedQueryInput { s.SqlParameters = v return s } // SetType sets the Type field's value. func (s *StartProtectedQueryInput) SetType(v string) *StartProtectedQueryInput { s.Type = &v return s } type StartProtectedQueryOutput struct { _ struct{} `type:"structure"` // The protected query. // // ProtectedQuery is a required field ProtectedQuery *ProtectedQuery `locationName:"protectedQuery" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartProtectedQueryOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartProtectedQueryOutput) GoString() string { return s.String() } // SetProtectedQuery sets the ProtectedQuery field's value. func (s *StartProtectedQueryOutput) SetProtectedQuery(v *ProtectedQuery) *StartProtectedQueryOutput { s.ProtectedQuery = v return s } // A pointer to the dataset that underlies this table. Currently, this can only // be an Glue table. type TableReference struct { _ struct{} `type:"structure"` // If present, a reference to the Glue table referred to by this table reference. Glue *GlueTableReference `locationName:"glue" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TableReference) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TableReference) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *TableReference) Validate() error { invalidParams := request.ErrInvalidParams{Context: "TableReference"} if s.Glue != nil { if err := s.Glue.Validate(); err != nil { invalidParams.AddNested("Glue", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetGlue sets the Glue field's value. func (s *TableReference) SetGlue(v *GlueTableReference) *TableReference { s.Glue = v return s } type TagResourceInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) associated with the resource you want to tag. // // ResourceArn is a required field ResourceArn *string `location:"uri" locationName:"resourceArn" type:"string" required:"true"` // A map of objects specifying each key name and value. // // Tags is a required field Tags map[string]*string `locationName:"tags" type:"map" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *TagResourceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "TagResourceInput"} if s.ResourceArn == nil { invalidParams.Add(request.NewErrParamRequired("ResourceArn")) } if s.ResourceArn != nil && len(*s.ResourceArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceArn", 1)) } if s.Tags == nil { invalidParams.Add(request.NewErrParamRequired("Tags")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetResourceArn sets the ResourceArn field's value. func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput { s.ResourceArn = &v return s } // SetTags sets the Tags field's value. func (s *TagResourceInput) SetTags(v map[string]*string) *TagResourceInput { s.Tags = v return s } type TagResourceOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceOutput) GoString() string { return s.String() } // Request was denied due to request throttling. type ThrottlingException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ThrottlingException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ThrottlingException) GoString() string { return s.String() } func newErrorThrottlingException(v protocol.ResponseMetadata) error { return &ThrottlingException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ThrottlingException) Code() string { return "ThrottlingException" } // Message returns the exception's message. func (s *ThrottlingException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ThrottlingException) OrigErr() error { return nil } func (s *ThrottlingException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *ThrottlingException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ThrottlingException) RequestID() string { return s.RespMetadata.RequestID } type UntagResourceInput struct { _ struct{} `type:"structure" nopayload:"true"` // The Amazon Resource Name (ARN) associated with the resource you want to remove // the tag from. // // ResourceArn is a required field ResourceArn *string `location:"uri" locationName:"resourceArn" type:"string" required:"true"` // A list of key names of tags to be removed. // // TagKeys is a required field TagKeys []*string `location:"querystring" locationName:"tagKeys" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UntagResourceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UntagResourceInput"} if s.ResourceArn == nil { invalidParams.Add(request.NewErrParamRequired("ResourceArn")) } if s.ResourceArn != nil && len(*s.ResourceArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceArn", 1)) } if s.TagKeys == nil { invalidParams.Add(request.NewErrParamRequired("TagKeys")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetResourceArn sets the ResourceArn field's value. func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput { s.ResourceArn = &v return s } // SetTagKeys sets the TagKeys field's value. func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput { s.TagKeys = v return s } type UntagResourceOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceOutput) GoString() string { return s.String() } type UpdateCollaborationInput struct { _ struct{} `type:"structure"` // The identifier for the collaboration. // // CollaborationIdentifier is a required field CollaborationIdentifier *string `location:"uri" locationName:"collaborationIdentifier" min:"36" type:"string" required:"true"` // A description of the collaboration. Description *string `locationName:"description" min:"1" type:"string"` // A human-readable identifier provided by the collaboration owner. Display // names are not unique. Name *string `locationName:"name" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateCollaborationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateCollaborationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateCollaborationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateCollaborationInput"} if s.CollaborationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("CollaborationIdentifier")) } if s.CollaborationIdentifier != nil && len(*s.CollaborationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("CollaborationIdentifier", 36)) } if s.Description != nil && len(*s.Description) < 1 { invalidParams.Add(request.NewErrParamMinLen("Description", 1)) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(request.NewErrParamMinLen("Name", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetCollaborationIdentifier sets the CollaborationIdentifier field's value. func (s *UpdateCollaborationInput) SetCollaborationIdentifier(v string) *UpdateCollaborationInput { s.CollaborationIdentifier = &v return s } // SetDescription sets the Description field's value. func (s *UpdateCollaborationInput) SetDescription(v string) *UpdateCollaborationInput { s.Description = &v return s } // SetName sets the Name field's value. func (s *UpdateCollaborationInput) SetName(v string) *UpdateCollaborationInput { s.Name = &v return s } type UpdateCollaborationOutput struct { _ struct{} `type:"structure"` // The entire collaboration that has been updated. // // Collaboration is a required field Collaboration *Collaboration `locationName:"collaboration" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateCollaborationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateCollaborationOutput) GoString() string { return s.String() } // SetCollaboration sets the Collaboration field's value. func (s *UpdateCollaborationOutput) SetCollaboration(v *Collaboration) *UpdateCollaborationOutput { s.Collaboration = v return s } type UpdateConfiguredTableAnalysisRuleInput struct { _ struct{} `type:"structure"` // The new analysis rule policy for the configured table analysis rule. // // AnalysisRulePolicy is a required field AnalysisRulePolicy *ConfiguredTableAnalysisRulePolicy `locationName:"analysisRulePolicy" type:"structure" required:"true"` // The analysis rule type to be updated. Configured table analysis rules are // uniquely identified by their configured table identifier and analysis rule // type. // // AnalysisRuleType is a required field AnalysisRuleType *string `location:"uri" locationName:"analysisRuleType" type:"string" required:"true" enum:"ConfiguredTableAnalysisRuleType"` // The unique identifier for the configured table that the analysis rule applies // to. Currently accepts the configured table ID. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `location:"uri" locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAnalysisRuleInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAnalysisRuleInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateConfiguredTableAnalysisRuleInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateConfiguredTableAnalysisRuleInput"} if s.AnalysisRulePolicy == nil { invalidParams.Add(request.NewErrParamRequired("AnalysisRulePolicy")) } if s.AnalysisRuleType == nil { invalidParams.Add(request.NewErrParamRequired("AnalysisRuleType")) } if s.AnalysisRuleType != nil && len(*s.AnalysisRuleType) < 1 { invalidParams.Add(request.NewErrParamMinLen("AnalysisRuleType", 1)) } if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if s.AnalysisRulePolicy != nil { if err := s.AnalysisRulePolicy.Validate(); err != nil { invalidParams.AddNested("AnalysisRulePolicy", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAnalysisRulePolicy sets the AnalysisRulePolicy field's value. func (s *UpdateConfiguredTableAnalysisRuleInput) SetAnalysisRulePolicy(v *ConfiguredTableAnalysisRulePolicy) *UpdateConfiguredTableAnalysisRuleInput { s.AnalysisRulePolicy = v return s } // SetAnalysisRuleType sets the AnalysisRuleType field's value. func (s *UpdateConfiguredTableAnalysisRuleInput) SetAnalysisRuleType(v string) *UpdateConfiguredTableAnalysisRuleInput { s.AnalysisRuleType = &v return s } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *UpdateConfiguredTableAnalysisRuleInput) SetConfiguredTableIdentifier(v string) *UpdateConfiguredTableAnalysisRuleInput { s.ConfiguredTableIdentifier = &v return s } type UpdateConfiguredTableAnalysisRuleOutput struct { _ struct{} `type:"structure"` // The entire updated analysis rule. // // AnalysisRule is a required field AnalysisRule *ConfiguredTableAnalysisRule `locationName:"analysisRule" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAnalysisRuleOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAnalysisRuleOutput) GoString() string { return s.String() } // SetAnalysisRule sets the AnalysisRule field's value. func (s *UpdateConfiguredTableAnalysisRuleOutput) SetAnalysisRule(v *ConfiguredTableAnalysisRule) *UpdateConfiguredTableAnalysisRuleOutput { s.AnalysisRule = v return s } type UpdateConfiguredTableAssociationInput struct { _ struct{} `type:"structure"` // The unique identifier for the configured table association to update. Currently // accepts the configured table association ID. // // ConfiguredTableAssociationIdentifier is a required field ConfiguredTableAssociationIdentifier *string `location:"uri" locationName:"configuredTableAssociationIdentifier" min:"36" type:"string" required:"true"` // A new description for the configured table association. Description *string `locationName:"description" type:"string"` // The unique ID for the membership that the configured table association belongs // to. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // The service will assume this role to access catalog metadata and query the // table. RoleArn *string `locationName:"roleArn" min:"32" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAssociationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAssociationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateConfiguredTableAssociationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateConfiguredTableAssociationInput"} if s.ConfiguredTableAssociationIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableAssociationIdentifier")) } if s.ConfiguredTableAssociationIdentifier != nil && len(*s.ConfiguredTableAssociationIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableAssociationIdentifier", 36)) } if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if s.RoleArn != nil && len(*s.RoleArn) < 32 { invalidParams.Add(request.NewErrParamMinLen("RoleArn", 32)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetConfiguredTableAssociationIdentifier sets the ConfiguredTableAssociationIdentifier field's value. func (s *UpdateConfiguredTableAssociationInput) SetConfiguredTableAssociationIdentifier(v string) *UpdateConfiguredTableAssociationInput { s.ConfiguredTableAssociationIdentifier = &v return s } // SetDescription sets the Description field's value. func (s *UpdateConfiguredTableAssociationInput) SetDescription(v string) *UpdateConfiguredTableAssociationInput { s.Description = &v return s } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *UpdateConfiguredTableAssociationInput) SetMembershipIdentifier(v string) *UpdateConfiguredTableAssociationInput { s.MembershipIdentifier = &v return s } // SetRoleArn sets the RoleArn field's value. func (s *UpdateConfiguredTableAssociationInput) SetRoleArn(v string) *UpdateConfiguredTableAssociationInput { s.RoleArn = &v return s } type UpdateConfiguredTableAssociationOutput struct { _ struct{} `type:"structure"` // The entire updated configured table association. // // ConfiguredTableAssociation is a required field ConfiguredTableAssociation *ConfiguredTableAssociation `locationName:"configuredTableAssociation" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAssociationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableAssociationOutput) GoString() string { return s.String() } // SetConfiguredTableAssociation sets the ConfiguredTableAssociation field's value. func (s *UpdateConfiguredTableAssociationOutput) SetConfiguredTableAssociation(v *ConfiguredTableAssociation) *UpdateConfiguredTableAssociationOutput { s.ConfiguredTableAssociation = v return s } type UpdateConfiguredTableInput struct { _ struct{} `type:"structure"` // The identifier for the configured table to update. Currently accepts the // configured table ID. // // ConfiguredTableIdentifier is a required field ConfiguredTableIdentifier *string `location:"uri" locationName:"configuredTableIdentifier" min:"36" type:"string" required:"true"` // A new description for the configured table. Description *string `locationName:"description" type:"string"` // A new name for the configured table. Name *string `locationName:"name" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateConfiguredTableInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateConfiguredTableInput"} if s.ConfiguredTableIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ConfiguredTableIdentifier")) } if s.ConfiguredTableIdentifier != nil && len(*s.ConfiguredTableIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("ConfiguredTableIdentifier", 36)) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(request.NewErrParamMinLen("Name", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetConfiguredTableIdentifier sets the ConfiguredTableIdentifier field's value. func (s *UpdateConfiguredTableInput) SetConfiguredTableIdentifier(v string) *UpdateConfiguredTableInput { s.ConfiguredTableIdentifier = &v return s } // SetDescription sets the Description field's value. func (s *UpdateConfiguredTableInput) SetDescription(v string) *UpdateConfiguredTableInput { s.Description = &v return s } // SetName sets the Name field's value. func (s *UpdateConfiguredTableInput) SetName(v string) *UpdateConfiguredTableInput { s.Name = &v return s } type UpdateConfiguredTableOutput struct { _ struct{} `type:"structure"` // The updated configured table. // // ConfiguredTable is a required field ConfiguredTable *ConfiguredTable `locationName:"configuredTable" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateConfiguredTableOutput) GoString() string { return s.String() } // SetConfiguredTable sets the ConfiguredTable field's value. func (s *UpdateConfiguredTableOutput) SetConfiguredTable(v *ConfiguredTable) *UpdateConfiguredTableOutput { s.ConfiguredTable = v return s } type UpdateMembershipInput struct { _ struct{} `type:"structure"` // The unique identifier of the membership. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // An indicator as to whether query logging has been enabled or disabled for // the collaboration. QueryLogStatus *string `locationName:"queryLogStatus" type:"string" enum:"MembershipQueryLogStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateMembershipInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateMembershipInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateMembershipInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateMembershipInput"} if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *UpdateMembershipInput) SetMembershipIdentifier(v string) *UpdateMembershipInput { s.MembershipIdentifier = &v return s } // SetQueryLogStatus sets the QueryLogStatus field's value. func (s *UpdateMembershipInput) SetQueryLogStatus(v string) *UpdateMembershipInput { s.QueryLogStatus = &v return s } type UpdateMembershipOutput struct { _ struct{} `type:"structure"` // The membership object. // // Membership is a required field Membership *Membership `locationName:"membership" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateMembershipOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateMembershipOutput) GoString() string { return s.String() } // SetMembership sets the Membership field's value. func (s *UpdateMembershipOutput) SetMembership(v *Membership) *UpdateMembershipOutput { s.Membership = v return s } type UpdateProtectedQueryInput struct { _ struct{} `type:"structure"` // The identifier for a member of a protected query instance. // // MembershipIdentifier is a required field MembershipIdentifier *string `location:"uri" locationName:"membershipIdentifier" min:"36" type:"string" required:"true"` // The identifier for a protected query instance. // // ProtectedQueryIdentifier is a required field ProtectedQueryIdentifier *string `location:"uri" locationName:"protectedQueryIdentifier" min:"1" type:"string" required:"true"` // The target status of a query. Used to update the execution status of a currently // running query. // // TargetStatus is a required field TargetStatus *string `locationName:"targetStatus" type:"string" required:"true" enum:"TargetProtectedQueryStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateProtectedQueryInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateProtectedQueryInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateProtectedQueryInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateProtectedQueryInput"} if s.MembershipIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("MembershipIdentifier")) } if s.MembershipIdentifier != nil && len(*s.MembershipIdentifier) < 36 { invalidParams.Add(request.NewErrParamMinLen("MembershipIdentifier", 36)) } if s.ProtectedQueryIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("ProtectedQueryIdentifier")) } if s.ProtectedQueryIdentifier != nil && len(*s.ProtectedQueryIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("ProtectedQueryIdentifier", 1)) } if s.TargetStatus == nil { invalidParams.Add(request.NewErrParamRequired("TargetStatus")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMembershipIdentifier sets the MembershipIdentifier field's value. func (s *UpdateProtectedQueryInput) SetMembershipIdentifier(v string) *UpdateProtectedQueryInput { s.MembershipIdentifier = &v return s } // SetProtectedQueryIdentifier sets the ProtectedQueryIdentifier field's value. func (s *UpdateProtectedQueryInput) SetProtectedQueryIdentifier(v string) *UpdateProtectedQueryInput { s.ProtectedQueryIdentifier = &v return s } // SetTargetStatus sets the TargetStatus field's value. func (s *UpdateProtectedQueryInput) SetTargetStatus(v string) *UpdateProtectedQueryInput { s.TargetStatus = &v return s } type UpdateProtectedQueryOutput struct { _ struct{} `type:"structure"` // The protected query output. // // ProtectedQuery is a required field ProtectedQuery *ProtectedQuery `locationName:"protectedQuery" type:"structure" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateProtectedQueryOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UpdateProtectedQueryOutput) GoString() string { return s.String() } // SetProtectedQuery sets the ProtectedQuery field's value. func (s *UpdateProtectedQueryOutput) SetProtectedQuery(v *ProtectedQuery) *UpdateProtectedQueryOutput { s.ProtectedQuery = v return s } // The input fails to satisfy the specified constraints. type ValidationException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` // Validation errors for specific input parameters. FieldList []*ValidationExceptionField `locationName:"fieldList" type:"list"` Message_ *string `locationName:"message" type:"string"` // A reason code for the exception. Reason *string `locationName:"reason" type:"string" enum:"ValidationExceptionReason"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ValidationException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ValidationException) GoString() string { return s.String() } func newErrorValidationException(v protocol.ResponseMetadata) error { return &ValidationException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ValidationException) Code() string { return "ValidationException" } // Message returns the exception's message. func (s *ValidationException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ValidationException) OrigErr() error { return nil } func (s *ValidationException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *ValidationException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ValidationException) RequestID() string { return s.RespMetadata.RequestID } // Describes validation errors for specific input parameters. type ValidationExceptionField struct { _ struct{} `type:"structure"` // A message for the input validation error. // // Message is a required field Message *string `locationName:"message" type:"string" required:"true"` // The name of the input parameter. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ValidationExceptionField) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ValidationExceptionField) GoString() string { return s.String() } // SetMessage sets the Message field's value. func (s *ValidationExceptionField) SetMessage(v string) *ValidationExceptionField { s.Message = &v return s } // SetName sets the Name field's value. func (s *ValidationExceptionField) SetName(v string) *ValidationExceptionField { s.Name = &v return s } const ( // AccessDeniedExceptionReasonInsufficientPermissions is a AccessDeniedExceptionReason enum value AccessDeniedExceptionReasonInsufficientPermissions = "INSUFFICIENT_PERMISSIONS" ) // AccessDeniedExceptionReason_Values returns all elements of the AccessDeniedExceptionReason enum func AccessDeniedExceptionReason_Values() []string { return []string{ AccessDeniedExceptionReasonInsufficientPermissions, } } const ( // AggregateFunctionNameSum is a AggregateFunctionName enum value AggregateFunctionNameSum = "SUM" // AggregateFunctionNameSumDistinct is a AggregateFunctionName enum value AggregateFunctionNameSumDistinct = "SUM_DISTINCT" // AggregateFunctionNameCount is a AggregateFunctionName enum value AggregateFunctionNameCount = "COUNT" // AggregateFunctionNameCountDistinct is a AggregateFunctionName enum value AggregateFunctionNameCountDistinct = "COUNT_DISTINCT" // AggregateFunctionNameAvg is a AggregateFunctionName enum value AggregateFunctionNameAvg = "AVG" ) // AggregateFunctionName_Values returns all elements of the AggregateFunctionName enum func AggregateFunctionName_Values() []string { return []string{ AggregateFunctionNameSum, AggregateFunctionNameSumDistinct, AggregateFunctionNameCount, AggregateFunctionNameCountDistinct, AggregateFunctionNameAvg, } } const ( // AggregationTypeCountDistinct is a AggregationType enum value AggregationTypeCountDistinct = "COUNT_DISTINCT" ) // AggregationType_Values returns all elements of the AggregationType enum func AggregationType_Values() []string { return []string{ AggregationTypeCountDistinct, } } const ( // AnalysisMethodDirectQuery is a AnalysisMethod enum value AnalysisMethodDirectQuery = "DIRECT_QUERY" ) // AnalysisMethod_Values returns all elements of the AnalysisMethod enum func AnalysisMethod_Values() []string { return []string{ AnalysisMethodDirectQuery, } } const ( // AnalysisRuleTypeAggregation is a AnalysisRuleType enum value AnalysisRuleTypeAggregation = "AGGREGATION" // AnalysisRuleTypeList is a AnalysisRuleType enum value AnalysisRuleTypeList = "LIST" ) // AnalysisRuleType_Values returns all elements of the AnalysisRuleType enum func AnalysisRuleType_Values() []string { return []string{ AnalysisRuleTypeAggregation, AnalysisRuleTypeList, } } const ( // CollaborationQueryLogStatusEnabled is a CollaborationQueryLogStatus enum value CollaborationQueryLogStatusEnabled = "ENABLED" // CollaborationQueryLogStatusDisabled is a CollaborationQueryLogStatus enum value CollaborationQueryLogStatusDisabled = "DISABLED" ) // CollaborationQueryLogStatus_Values returns all elements of the CollaborationQueryLogStatus enum func CollaborationQueryLogStatus_Values() []string { return []string{ CollaborationQueryLogStatusEnabled, CollaborationQueryLogStatusDisabled, } } const ( // ConfiguredTableAnalysisRuleTypeAggregation is a ConfiguredTableAnalysisRuleType enum value ConfiguredTableAnalysisRuleTypeAggregation = "AGGREGATION" // ConfiguredTableAnalysisRuleTypeList is a ConfiguredTableAnalysisRuleType enum value ConfiguredTableAnalysisRuleTypeList = "LIST" ) // ConfiguredTableAnalysisRuleType_Values returns all elements of the ConfiguredTableAnalysisRuleType enum func ConfiguredTableAnalysisRuleType_Values() []string { return []string{ ConfiguredTableAnalysisRuleTypeAggregation, ConfiguredTableAnalysisRuleTypeList, } } const ( // ConflictExceptionReasonAlreadyExists is a ConflictExceptionReason enum value ConflictExceptionReasonAlreadyExists = "ALREADY_EXISTS" // ConflictExceptionReasonSubresourcesExist is a ConflictExceptionReason enum value ConflictExceptionReasonSubresourcesExist = "SUBRESOURCES_EXIST" // ConflictExceptionReasonInvalidState is a ConflictExceptionReason enum value ConflictExceptionReasonInvalidState = "INVALID_STATE" ) // ConflictExceptionReason_Values returns all elements of the ConflictExceptionReason enum func ConflictExceptionReason_Values() []string { return []string{ ConflictExceptionReasonAlreadyExists, ConflictExceptionReasonSubresourcesExist, ConflictExceptionReasonInvalidState, } } const ( // FilterableMemberStatusInvited is a FilterableMemberStatus enum value FilterableMemberStatusInvited = "INVITED" // FilterableMemberStatusActive is a FilterableMemberStatus enum value FilterableMemberStatusActive = "ACTIVE" ) // FilterableMemberStatus_Values returns all elements of the FilterableMemberStatus enum func FilterableMemberStatus_Values() []string { return []string{ FilterableMemberStatusInvited, FilterableMemberStatusActive, } } const ( // JoinOperatorOr is a JoinOperator enum value JoinOperatorOr = "OR" // JoinOperatorAnd is a JoinOperator enum value JoinOperatorAnd = "AND" ) // JoinOperator_Values returns all elements of the JoinOperator enum func JoinOperator_Values() []string { return []string{ JoinOperatorOr, JoinOperatorAnd, } } const ( // JoinRequiredOptionQueryRunner is a JoinRequiredOption enum value JoinRequiredOptionQueryRunner = "QUERY_RUNNER" ) // JoinRequiredOption_Values returns all elements of the JoinRequiredOption enum func JoinRequiredOption_Values() []string { return []string{ JoinRequiredOptionQueryRunner, } } const ( // MemberAbilityCanQuery is a MemberAbility enum value MemberAbilityCanQuery = "CAN_QUERY" // MemberAbilityCanReceiveResults is a MemberAbility enum value MemberAbilityCanReceiveResults = "CAN_RECEIVE_RESULTS" ) // MemberAbility_Values returns all elements of the MemberAbility enum func MemberAbility_Values() []string { return []string{ MemberAbilityCanQuery, MemberAbilityCanReceiveResults, } } const ( // MemberStatusInvited is a MemberStatus enum value MemberStatusInvited = "INVITED" // MemberStatusActive is a MemberStatus enum value MemberStatusActive = "ACTIVE" // MemberStatusLeft is a MemberStatus enum value MemberStatusLeft = "LEFT" // MemberStatusRemoved is a MemberStatus enum value MemberStatusRemoved = "REMOVED" ) // MemberStatus_Values returns all elements of the MemberStatus enum func MemberStatus_Values() []string { return []string{ MemberStatusInvited, MemberStatusActive, MemberStatusLeft, MemberStatusRemoved, } } const ( // MembershipQueryLogStatusEnabled is a MembershipQueryLogStatus enum value MembershipQueryLogStatusEnabled = "ENABLED" // MembershipQueryLogStatusDisabled is a MembershipQueryLogStatus enum value MembershipQueryLogStatusDisabled = "DISABLED" ) // MembershipQueryLogStatus_Values returns all elements of the MembershipQueryLogStatus enum func MembershipQueryLogStatus_Values() []string { return []string{ MembershipQueryLogStatusEnabled, MembershipQueryLogStatusDisabled, } } const ( // MembershipStatusActive is a MembershipStatus enum value MembershipStatusActive = "ACTIVE" // MembershipStatusRemoved is a MembershipStatus enum value MembershipStatusRemoved = "REMOVED" // MembershipStatusCollaborationDeleted is a MembershipStatus enum value MembershipStatusCollaborationDeleted = "COLLABORATION_DELETED" ) // MembershipStatus_Values returns all elements of the MembershipStatus enum func MembershipStatus_Values() []string { return []string{ MembershipStatusActive, MembershipStatusRemoved, MembershipStatusCollaborationDeleted, } } const ( // ProtectedQueryStatusSubmitted is a ProtectedQueryStatus enum value ProtectedQueryStatusSubmitted = "SUBMITTED" // ProtectedQueryStatusStarted is a ProtectedQueryStatus enum value ProtectedQueryStatusStarted = "STARTED" // ProtectedQueryStatusCancelled is a ProtectedQueryStatus enum value ProtectedQueryStatusCancelled = "CANCELLED" // ProtectedQueryStatusCancelling is a ProtectedQueryStatus enum value ProtectedQueryStatusCancelling = "CANCELLING" // ProtectedQueryStatusFailed is a ProtectedQueryStatus enum value ProtectedQueryStatusFailed = "FAILED" // ProtectedQueryStatusSuccess is a ProtectedQueryStatus enum value ProtectedQueryStatusSuccess = "SUCCESS" // ProtectedQueryStatusTimedOut is a ProtectedQueryStatus enum value ProtectedQueryStatusTimedOut = "TIMED_OUT" ) // ProtectedQueryStatus_Values returns all elements of the ProtectedQueryStatus enum func ProtectedQueryStatus_Values() []string { return []string{ ProtectedQueryStatusSubmitted, ProtectedQueryStatusStarted, ProtectedQueryStatusCancelled, ProtectedQueryStatusCancelling, ProtectedQueryStatusFailed, ProtectedQueryStatusSuccess, ProtectedQueryStatusTimedOut, } } const ( // ProtectedQueryTypeSql is a ProtectedQueryType enum value ProtectedQueryTypeSql = "SQL" ) // ProtectedQueryType_Values returns all elements of the ProtectedQueryType enum func ProtectedQueryType_Values() []string { return []string{ ProtectedQueryTypeSql, } } const ( // ResourceTypeConfiguredTable is a ResourceType enum value ResourceTypeConfiguredTable = "CONFIGURED_TABLE" // ResourceTypeCollaboration is a ResourceType enum value ResourceTypeCollaboration = "COLLABORATION" // ResourceTypeMembership is a ResourceType enum value ResourceTypeMembership = "MEMBERSHIP" // ResourceTypeConfiguredTableAssociation is a ResourceType enum value ResourceTypeConfiguredTableAssociation = "CONFIGURED_TABLE_ASSOCIATION" ) // ResourceType_Values returns all elements of the ResourceType enum func ResourceType_Values() []string { return []string{ ResourceTypeConfiguredTable, ResourceTypeCollaboration, ResourceTypeMembership, ResourceTypeConfiguredTableAssociation, } } const ( // ResultFormatCsv is a ResultFormat enum value ResultFormatCsv = "CSV" // ResultFormatParquet is a ResultFormat enum value ResultFormatParquet = "PARQUET" ) // ResultFormat_Values returns all elements of the ResultFormat enum func ResultFormat_Values() []string { return []string{ ResultFormatCsv, ResultFormatParquet, } } const ( // ScalarFunctionsTrunc is a ScalarFunctions enum value ScalarFunctionsTrunc = "TRUNC" // ScalarFunctionsAbs is a ScalarFunctions enum value ScalarFunctionsAbs = "ABS" // ScalarFunctionsCeiling is a ScalarFunctions enum value ScalarFunctionsCeiling = "CEILING" // ScalarFunctionsFloor is a ScalarFunctions enum value ScalarFunctionsFloor = "FLOOR" // ScalarFunctionsLn is a ScalarFunctions enum value ScalarFunctionsLn = "LN" // ScalarFunctionsLog is a ScalarFunctions enum value ScalarFunctionsLog = "LOG" // ScalarFunctionsRound is a ScalarFunctions enum value ScalarFunctionsRound = "ROUND" // ScalarFunctionsSqrt is a ScalarFunctions enum value ScalarFunctionsSqrt = "SQRT" // ScalarFunctionsCast is a ScalarFunctions enum value ScalarFunctionsCast = "CAST" // ScalarFunctionsLower is a ScalarFunctions enum value ScalarFunctionsLower = "LOWER" // ScalarFunctionsRtrim is a ScalarFunctions enum value ScalarFunctionsRtrim = "RTRIM" // ScalarFunctionsUpper is a ScalarFunctions enum value ScalarFunctionsUpper = "UPPER" // ScalarFunctionsCoalesce is a ScalarFunctions enum value ScalarFunctionsCoalesce = "COALESCE" ) // ScalarFunctions_Values returns all elements of the ScalarFunctions enum func ScalarFunctions_Values() []string { return []string{ ScalarFunctionsTrunc, ScalarFunctionsAbs, ScalarFunctionsCeiling, ScalarFunctionsFloor, ScalarFunctionsLn, ScalarFunctionsLog, ScalarFunctionsRound, ScalarFunctionsSqrt, ScalarFunctionsCast, ScalarFunctionsLower, ScalarFunctionsRtrim, ScalarFunctionsUpper, ScalarFunctionsCoalesce, } } const ( // SchemaTypeTable is a SchemaType enum value SchemaTypeTable = "TABLE" ) // SchemaType_Values returns all elements of the SchemaType enum func SchemaType_Values() []string { return []string{ SchemaTypeTable, } } const ( // TargetProtectedQueryStatusCancelled is a TargetProtectedQueryStatus enum value TargetProtectedQueryStatusCancelled = "CANCELLED" ) // TargetProtectedQueryStatus_Values returns all elements of the TargetProtectedQueryStatus enum func TargetProtectedQueryStatus_Values() []string { return []string{ TargetProtectedQueryStatusCancelled, } } const ( // ValidationExceptionReasonFieldValidationFailed is a ValidationExceptionReason enum value ValidationExceptionReasonFieldValidationFailed = "FIELD_VALIDATION_FAILED" // ValidationExceptionReasonInvalidConfiguration is a ValidationExceptionReason enum value ValidationExceptionReasonInvalidConfiguration = "INVALID_CONFIGURATION" // ValidationExceptionReasonInvalidQuery is a ValidationExceptionReason enum value ValidationExceptionReasonInvalidQuery = "INVALID_QUERY" ) // ValidationExceptionReason_Values returns all elements of the ValidationExceptionReason enum func ValidationExceptionReason_Values() []string { return []string{ ValidationExceptionReasonFieldValidationFailed, ValidationExceptionReasonInvalidConfiguration, ValidationExceptionReasonInvalidQuery, } }