Documentation ¶
Overview ¶
Package simpledb provides the client and types for making API requests to Amazon SimpleDB.
Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use.
Visit http://aws.amazon.com/simpledb/ (http://aws.amazon.com/simpledb/) for more information.
See simpledb package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/simpledb/
Using the Client ¶
To use Amazon SimpleDB with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.
See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/
See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config
See the Amazon SimpleDB client for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/simpledb/#New
Index ¶
- Constants
- type Attribute
- type BatchDeleteAttributesInput
- type BatchDeleteAttributesOutput
- type BatchDeleteAttributesRequest
- type BatchDeleteAttributesResponse
- type BatchPutAttributesInput
- type BatchPutAttributesOutput
- type BatchPutAttributesRequest
- type BatchPutAttributesResponse
- type Client
- func (c *Client) BatchDeleteAttributesRequest(input *BatchDeleteAttributesInput) BatchDeleteAttributesRequest
- func (c *Client) BatchPutAttributesRequest(input *BatchPutAttributesInput) BatchPutAttributesRequest
- func (c *Client) CreateDomainRequest(input *CreateDomainInput) CreateDomainRequest
- func (c *Client) DeleteAttributesRequest(input *DeleteAttributesInput) DeleteAttributesRequest
- func (c *Client) DeleteDomainRequest(input *DeleteDomainInput) DeleteDomainRequest
- func (c *Client) DomainMetadataRequest(input *DomainMetadataInput) DomainMetadataRequest
- func (c *Client) GetAttributesRequest(input *GetAttributesInput) GetAttributesRequest
- func (c *Client) ListDomainsRequest(input *ListDomainsInput) ListDomainsRequest
- func (c *Client) PutAttributesRequest(input *PutAttributesInput) PutAttributesRequest
- func (c *Client) SelectRequest(input *SelectInput) SelectRequest
- type CreateDomainInput
- type CreateDomainOutput
- type CreateDomainRequest
- type CreateDomainResponse
- type DeletableAttribute
- type DeletableItem
- type DeleteAttributesInput
- type DeleteAttributesOutput
- type DeleteAttributesRequest
- type DeleteAttributesResponse
- type DeleteDomainInput
- type DeleteDomainOutput
- type DeleteDomainRequest
- type DeleteDomainResponse
- type DomainMetadataInput
- type DomainMetadataOutput
- type DomainMetadataRequest
- type DomainMetadataResponse
- type GetAttributesInput
- type GetAttributesOutput
- type GetAttributesRequest
- type GetAttributesResponse
- type Item
- type ListDomainsInput
- type ListDomainsOutput
- type ListDomainsPaginator
- type ListDomainsRequest
- type ListDomainsResponse
- type PutAttributesInput
- type PutAttributesOutput
- type PutAttributesRequest
- type PutAttributesResponse
- type ReplaceableAttribute
- type ReplaceableItem
- type SelectInput
- type SelectOutput
- type SelectPaginator
- type SelectRequest
- type SelectResponse
- type UpdateCondition
Constants ¶
const ( ServiceName = "Amazon SimpleDB" // Service's name ServiceID = "SimpleDB" // Service's identifier EndpointsID = "sdb" // Service's Endpoint identifier )
const ( // ErrCodeAttributeDoesNotExist for service response error code // "AttributeDoesNotExist". // // The specified attribute does not exist. ErrCodeAttributeDoesNotExist = "AttributeDoesNotExist" // ErrCodeDuplicateItemName for service response error code // "DuplicateItemName". // // The item name was specified more than once. ErrCodeDuplicateItemName = "DuplicateItemName" // ErrCodeInvalidNextToken for service response error code // "InvalidNextToken". // // The specified NextToken is not valid. ErrCodeInvalidNextToken = "InvalidNextToken" // ErrCodeInvalidNumberPredicates for service response error code // "InvalidNumberPredicates". // // Too many predicates exist in the query expression. ErrCodeInvalidNumberPredicates = "InvalidNumberPredicates" // ErrCodeInvalidNumberValueTests for service response error code // "InvalidNumberValueTests". // // Too many predicates exist in the query expression. ErrCodeInvalidNumberValueTests = "InvalidNumberValueTests" // ErrCodeInvalidParameterValue for service response error code // "InvalidParameterValue". // // The value for a parameter is invalid. ErrCodeInvalidParameterValue = "InvalidParameterValue" // ErrCodeInvalidQueryExpression for service response error code // "InvalidQueryExpression". // // The specified query expression syntax is not valid. ErrCodeInvalidQueryExpression = "InvalidQueryExpression" // ErrCodeMissingParameter for service response error code // "MissingParameter". // // The request must contain the specified missing parameter. ErrCodeMissingParameter = "MissingParameter" // ErrCodeNoSuchDomain for service response error code // "NoSuchDomain". // // The specified domain does not exist. ErrCodeNoSuchDomain = "NoSuchDomain" // ErrCodeNumberDomainAttributesExceeded for service response error code // "NumberDomainAttributesExceeded". // // Too many attributes in this domain. ErrCodeNumberDomainAttributesExceeded = "NumberDomainAttributesExceeded" // ErrCodeNumberDomainBytesExceeded for service response error code // "NumberDomainBytesExceeded". // // Too many bytes in this domain. ErrCodeNumberDomainBytesExceeded = "NumberDomainBytesExceeded" // ErrCodeNumberDomainsExceeded for service response error code // "NumberDomainsExceeded". // // Too many domains exist per this account. ErrCodeNumberDomainsExceeded = "NumberDomainsExceeded" // ErrCodeNumberItemAttributesExceeded for service response error code // "NumberItemAttributesExceeded". // // Too many attributes in this item. ErrCodeNumberItemAttributesExceeded = "NumberItemAttributesExceeded" // ErrCodeNumberSubmittedAttributesExceeded for service response error code // "NumberSubmittedAttributesExceeded". // // Too many attributes exist in a single call. ErrCodeNumberSubmittedAttributesExceeded = "NumberSubmittedAttributesExceeded" // ErrCodeNumberSubmittedItemsExceeded for service response error code // "NumberSubmittedItemsExceeded". // // Too many items exist in a single call. ErrCodeNumberSubmittedItemsExceeded = "NumberSubmittedItemsExceeded" // ErrCodeRequestTimeout for service response error code // "RequestTimeout". // // A timeout occurred when attempting to query the specified domain with specified // query expression. ErrCodeRequestTimeout = "RequestTimeout" // ErrCodeTooManyRequestedAttributes for service response error code // "TooManyRequestedAttributes". // // Too many attributes requested. ErrCodeTooManyRequestedAttributes = "TooManyRequestedAttributes" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Attribute ¶
type Attribute struct { AlternateNameEncoding *string `type:"string"` AlternateValueEncoding *string `type:"string"` // The name of the attribute. // // Name is a required field Name *string `type:"string" required:"true"` // The value of the attribute. // // Value is a required field Value *string `type:"string" required:"true"` // contains filtered or unexported fields }
type BatchDeleteAttributesInput ¶
type BatchDeleteAttributesInput struct { // The name of the domain in which the attributes are being deleted. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // A list of items on which to perform the operation. // // Items is a required field Items []DeletableItem `locationNameList:"Item" type:"list" flattened:"true" required:"true"` // contains filtered or unexported fields }
func (BatchDeleteAttributesInput) String ¶
func (s BatchDeleteAttributesInput) String() string
String returns the string representation
func (*BatchDeleteAttributesInput) Validate ¶
func (s *BatchDeleteAttributesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type BatchDeleteAttributesOutput ¶
type BatchDeleteAttributesOutput struct {
// contains filtered or unexported fields
}
func (BatchDeleteAttributesOutput) String ¶
func (s BatchDeleteAttributesOutput) String() string
String returns the string representation
type BatchDeleteAttributesRequest ¶
type BatchDeleteAttributesRequest struct { *aws.Request Input *BatchDeleteAttributesInput Copy func(*BatchDeleteAttributesInput) BatchDeleteAttributesRequest }
BatchDeleteAttributesRequest is the request type for the BatchDeleteAttributes API operation.
func (BatchDeleteAttributesRequest) Send ¶
func (r BatchDeleteAttributesRequest) Send(ctx context.Context) (*BatchDeleteAttributesResponse, error)
Send marshals and sends the BatchDeleteAttributes API request.
type BatchDeleteAttributesResponse ¶ added in v0.9.0
type BatchDeleteAttributesResponse struct { *BatchDeleteAttributesOutput // contains filtered or unexported fields }
BatchDeleteAttributesResponse is the response type for the BatchDeleteAttributes API operation.
func (*BatchDeleteAttributesResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *BatchDeleteAttributesResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the BatchDeleteAttributes request.
type BatchPutAttributesInput ¶
type BatchPutAttributesInput struct { // The name of the domain in which the attributes are being stored. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // A list of items on which to perform the operation. // // Items is a required field Items []ReplaceableItem `locationNameList:"Item" type:"list" flattened:"true" required:"true"` // contains filtered or unexported fields }
func (BatchPutAttributesInput) String ¶
func (s BatchPutAttributesInput) String() string
String returns the string representation
func (*BatchPutAttributesInput) Validate ¶
func (s *BatchPutAttributesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type BatchPutAttributesOutput ¶
type BatchPutAttributesOutput struct {
// contains filtered or unexported fields
}
func (BatchPutAttributesOutput) String ¶
func (s BatchPutAttributesOutput) String() string
String returns the string representation
type BatchPutAttributesRequest ¶
type BatchPutAttributesRequest struct { *aws.Request Input *BatchPutAttributesInput Copy func(*BatchPutAttributesInput) BatchPutAttributesRequest }
BatchPutAttributesRequest is the request type for the BatchPutAttributes API operation.
func (BatchPutAttributesRequest) Send ¶
func (r BatchPutAttributesRequest) Send(ctx context.Context) (*BatchPutAttributesResponse, error)
Send marshals and sends the BatchPutAttributes API request.
type BatchPutAttributesResponse ¶ added in v0.9.0
type BatchPutAttributesResponse struct { *BatchPutAttributesOutput // contains filtered or unexported fields }
BatchPutAttributesResponse is the response type for the BatchPutAttributes API operation.
func (*BatchPutAttributesResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *BatchPutAttributesResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the BatchPutAttributes request.
type Client ¶ added in v0.9.0
Client provides the API operation methods for making requests to Amazon SimpleDB. See this package's package overview docs for details on the service.
The client's methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.
func New ¶
New creates a new instance of the client from the provided Config.
Example:
// Create a client from just a config. svc := simpledb.New(myConfig)
func (*Client) BatchDeleteAttributesRequest ¶ added in v0.9.0
func (c *Client) BatchDeleteAttributesRequest(input *BatchDeleteAttributesInput) BatchDeleteAttributesRequest
BatchDeleteAttributesRequest returns a request value for making API operation for Amazon SimpleDB.
Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies. This enables Amazon SimpleDB to optimize requests, which generally yields better throughput.
If you specify BatchDeleteAttributes without attributes or values, all the attributes for the item are deleted.
BatchDeleteAttributes is an idempotent operation; running it multiple times on the same item or attribute doesn't result in an error.
The BatchDeleteAttributes operation succeeds or fails in its entirety. There are no partial deletes. You can execute multiple BatchDeleteAttributes operations and other operations in parallel. However, large numbers of concurrent BatchDeleteAttributes calls can result in Service Unavailable (503) responses.
This operation is vulnerable to exceeding the maximum URL size when making a REST request using the HTTP GET method.
This operation does not support conditions using Expected.X.Name, Expected.X.Value, or Expected.X.Exists.
The following limitations are enforced for this operation:
1 MB request size
25 item limit per BatchDeleteAttributes operation
// Example sending a request using BatchDeleteAttributesRequest. req := client.BatchDeleteAttributesRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) BatchPutAttributesRequest ¶ added in v0.9.0
func (c *Client) BatchPutAttributesRequest(input *BatchPutAttributesInput) BatchPutAttributesRequest
BatchPutAttributesRequest returns a request value for making API operation for Amazon SimpleDB.
The BatchPutAttributes operation creates or replaces attributes within one or more items. By using this operation, the client can perform multiple PutAttribute operation with a single call. This helps yield savings in round trips and latencies, enabling Amazon SimpleDB to optimize requests and generally produce better throughput.
The client may specify the item name with the Item.X.ItemName parameter. The client may specify new attributes using a combination of the Item.X.Attribute.Y.Name and Item.X.Attribute.Y.Value parameters. The client may specify the first attribute for the first item using the parameters Item.0.Attribute.0.Name and Item.0.Attribute.0.Value, and for the second attribute for the first item by the parameters Item.0.Attribute.1.Name and Item.0.Attribute.1.Value, and so on.
Attributes are uniquely identified within an item by their name/value combination. For example, a single item can have the attributes { "first_name", "first_value" } and { "first_name", "second_value" }. However, it cannot have two attribute instances where both the Item.X.Attribute.Y.Name and Item.X.Attribute.Y.Value are the same.
Optionally, the requester can supply the Replace parameter for each individual value. Setting this value to true will cause the new attribute values to replace the existing attribute values. For example, if an item I has the attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requester does a BatchPutAttributes of {'I', 'b', '4' } with the Replace parameter set to true, the final attributes of the item will be { 'a', '1' } and { 'b', '4' }, replacing the previous values of the 'b' attribute with the new value.
You cannot specify an empty string as an item or as an attribute name. The BatchPutAttributes operation succeeds or fails in its entirety. There are no partial puts. This operation is vulnerable to exceeding the maximum URL size when making a REST request using the HTTP GET method. This operation does not support conditions using Expected.X.Name
,
Expected.X.Value
, or
Expected.X.Exists
. You can execute multiple BatchPutAttributes operations and other operations in parallel. However, large numbers of concurrent BatchPutAttributes calls can result in Service Unavailable (503) responses.
The following limitations are enforced for this operation:
256 attribute name-value pairs per item
1 MB request size
1 billion attributes per domain
10 GB of total user data storage per domain
25 item limit per BatchPutAttributes operation
// Example sending a request using BatchPutAttributesRequest. req := client.BatchPutAttributesRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) CreateDomainRequest ¶ added in v0.9.0
func (c *Client) CreateDomainRequest(input *CreateDomainInput) CreateDomainRequest
CreateDomainRequest returns a request value for making API operation for Amazon SimpleDB.
The CreateDomain operation creates a new domain. The domain name should be unique among the domains associated with the Access Key ID provided in the request. The CreateDomain operation may take 10 or more seconds to complete.
CreateDomain is an idempotent operation; running it multiple times using the same domain name will not result in an error response.
The client can create up to 100 domains per account.
If the client requires additional domains, go to http://aws.amazon.com/contact-us/simpledb-limit-request/ (http://aws.amazon.com/contact-us/simpledb-limit-request/).
// Example sending a request using CreateDomainRequest. req := client.CreateDomainRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) DeleteAttributesRequest ¶ added in v0.9.0
func (c *Client) DeleteAttributesRequest(input *DeleteAttributesInput) DeleteAttributesRequest
DeleteAttributesRequest returns a request value for making API operation for Amazon SimpleDB.
Deletes one or more attributes associated with an item. If all attributes of the item are deleted, the item is deleted.
If DeleteAttributes is called without being passed any attributes or values specified, all the attributes for the item are deleted.
DeleteAttributes is an idempotent operation; running it multiple times on the same item or attribute does not result in an error response.
Because Amazon SimpleDB makes multiple copies of item data and uses an eventual consistency update model, performing a GetAttributes or Select operation (read) immediately after a DeleteAttributes or PutAttributes operation (write) might not return updated item data.
// Example sending a request using DeleteAttributesRequest. req := client.DeleteAttributesRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) DeleteDomainRequest ¶ added in v0.9.0
func (c *Client) DeleteDomainRequest(input *DeleteDomainInput) DeleteDomainRequest
DeleteDomainRequest returns a request value for making API operation for Amazon SimpleDB.
The DeleteDomain operation deletes a domain. Any items (and their attributes) in the domain are deleted as well. The DeleteDomain operation might take 10 or more seconds to complete.
Running DeleteDomain on a domain that does not exist or running the function multiple times using the same domain name will not result in an error response. // Example sending a request using DeleteDomainRequest. req := client.DeleteDomainRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) DomainMetadataRequest ¶ added in v0.9.0
func (c *Client) DomainMetadataRequest(input *DomainMetadataInput) DomainMetadataRequest
DomainMetadataRequest returns a request value for making API operation for Amazon SimpleDB.
Returns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values.
// Example sending a request using DomainMetadataRequest. req := client.DomainMetadataRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) GetAttributesRequest ¶ added in v0.9.0
func (c *Client) GetAttributesRequest(input *GetAttributesInput) GetAttributesRequest
GetAttributesRequest returns a request value for making API operation for Amazon SimpleDB.
Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter.
If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas.
If GetAttributes is called without being passed any attribute names, all the attributes for the item are returned. // Example sending a request using GetAttributesRequest. req := client.GetAttributesRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) ListDomainsRequest ¶ added in v0.9.0
func (c *Client) ListDomainsRequest(input *ListDomainsInput) ListDomainsRequest
ListDomainsRequest returns a request value for making API operation for Amazon SimpleDB.
The ListDomains operation lists all domains associated with the Access Key ID. It returns domain names up to the limit set by MaxNumberOfDomains (#MaxNumberOfDomains). A NextToken (#NextToken) is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times with the NextToken provided by the operation returns up to MaxNumberOfDomains more domain names with each successive operation call.
// Example sending a request using ListDomainsRequest. req := client.ListDomainsRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) PutAttributesRequest ¶ added in v0.9.0
func (c *Client) PutAttributesRequest(input *PutAttributesInput) PutAttributesRequest
PutAttributesRequest returns a request value for making API operation for Amazon SimpleDB.
The PutAttributes operation creates or replaces attributes in an item. The client may specify new attributes using a combination of the Attribute.X.Name and Attribute.X.Value parameters. The client specifies the first attribute by the parameters Attribute.0.Name and Attribute.0.Value, the second attribute by the parameters Attribute.1.Name and Attribute.1.Value, and so on.
Attributes are uniquely identified in an item by their name/value combination. For example, a single item can have the attributes { "first_name", "first_value" } and { "first_name", second_value" }. However, it cannot have two attribute instances where both the Attribute.X.Name and Attribute.X.Value are the same.
Optionally, the requestor can supply the Replace parameter for each individual attribute. Setting this value to true causes the new attribute value to replace the existing attribute value(s). For example, if an item has the attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requestor calls PutAttributes using the attributes { 'b', '4' } with the Replace parameter set to true, the final attributes of the item are changed to { 'a', '1' } and { 'b', '4' }, which replaces the previous values of the 'b' attribute with the new value.
Using PutAttributes to replace attribute values that do not exist will not result in an error response.
You cannot specify an empty string as an attribute name.
Because Amazon SimpleDB makes multiple copies of client data and uses an eventual consistency update model, an immediate GetAttributes or Select operation (read) immediately after a PutAttributes or DeleteAttributes operation (write) might not return the updated data.
The following limitations are enforced for this operation:
256 total attribute name-value pairs per item
One billion attributes per domain
10 GB of total user data storage per domain
// Example sending a request using PutAttributesRequest. req := client.PutAttributesRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
func (*Client) SelectRequest ¶ added in v0.9.0
func (c *Client) SelectRequest(input *SelectInput) SelectRequest
SelectRequest returns a request value for making API operation for Amazon SimpleDB.
The Select operation returns a set of attributes for ItemNames that match the select expression. Select is similar to the standard SQL SELECT statement.
The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items returned per page to enforce this limit. For example, if the client asks to retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate NextToken so the client can access the next page of results.
For information on how to construct select expressions, see Using Select to Create Amazon SimpleDB Queries in the Developer Guide.
// Example sending a request using SelectRequest. req := client.SelectRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
type CreateDomainInput ¶
type CreateDomainInput struct { // The name of the domain to create. The name can range between 3 and 255 characters // and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (CreateDomainInput) String ¶
func (s CreateDomainInput) String() string
String returns the string representation
func (*CreateDomainInput) Validate ¶
func (s *CreateDomainInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateDomainOutput ¶
type CreateDomainOutput struct {
// contains filtered or unexported fields
}
func (CreateDomainOutput) String ¶
func (s CreateDomainOutput) String() string
String returns the string representation
type CreateDomainRequest ¶
type CreateDomainRequest struct { *aws.Request Input *CreateDomainInput Copy func(*CreateDomainInput) CreateDomainRequest }
CreateDomainRequest is the request type for the CreateDomain API operation.
func (CreateDomainRequest) Send ¶
func (r CreateDomainRequest) Send(ctx context.Context) (*CreateDomainResponse, error)
Send marshals and sends the CreateDomain API request.
type CreateDomainResponse ¶ added in v0.9.0
type CreateDomainResponse struct { *CreateDomainOutput // contains filtered or unexported fields }
CreateDomainResponse is the response type for the CreateDomain API operation.
func (*CreateDomainResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *CreateDomainResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the CreateDomain request.
type DeletableAttribute ¶
type DeletableAttribute struct { // The name of the attribute. // // Name is a required field Name *string `type:"string" required:"true"` // The value of the attribute. Value *string `type:"string"` // contains filtered or unexported fields }
func (DeletableAttribute) String ¶
func (s DeletableAttribute) String() string
String returns the string representation
func (*DeletableAttribute) Validate ¶
func (s *DeletableAttribute) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeletableItem ¶
type DeletableItem struct { Attributes []DeletableAttribute `locationNameList:"Attribute" type:"list" flattened:"true"` // Name is a required field Name *string `locationName:"ItemName" type:"string" required:"true"` // contains filtered or unexported fields }
func (DeletableItem) String ¶
func (s DeletableItem) String() string
String returns the string representation
func (*DeletableItem) Validate ¶
func (s *DeletableItem) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteAttributesInput ¶
type DeleteAttributesInput struct { // A list of Attributes. Similar to columns on a spreadsheet, attributes represent // categories of data that can be assigned to items. Attributes []DeletableAttribute `locationNameList:"Attribute" type:"list" flattened:"true"` // The name of the domain in which to perform the operation. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // The update condition which, if specified, determines whether the specified // attributes will be deleted or not. The update condition must be satisfied // in order for this request to be processed and the attributes to be deleted. Expected *UpdateCondition `type:"structure"` // The name of the item. Similar to rows on a spreadsheet, items represent individual // objects that contain one or more value-attribute pairs. // // ItemName is a required field ItemName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (DeleteAttributesInput) String ¶
func (s DeleteAttributesInput) String() string
String returns the string representation
func (*DeleteAttributesInput) Validate ¶
func (s *DeleteAttributesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteAttributesOutput ¶
type DeleteAttributesOutput struct {
// contains filtered or unexported fields
}
func (DeleteAttributesOutput) String ¶
func (s DeleteAttributesOutput) String() string
String returns the string representation
type DeleteAttributesRequest ¶
type DeleteAttributesRequest struct { *aws.Request Input *DeleteAttributesInput Copy func(*DeleteAttributesInput) DeleteAttributesRequest }
DeleteAttributesRequest is the request type for the DeleteAttributes API operation.
func (DeleteAttributesRequest) Send ¶
func (r DeleteAttributesRequest) Send(ctx context.Context) (*DeleteAttributesResponse, error)
Send marshals and sends the DeleteAttributes API request.
type DeleteAttributesResponse ¶ added in v0.9.0
type DeleteAttributesResponse struct { *DeleteAttributesOutput // contains filtered or unexported fields }
DeleteAttributesResponse is the response type for the DeleteAttributes API operation.
func (*DeleteAttributesResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *DeleteAttributesResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the DeleteAttributes request.
type DeleteDomainInput ¶
type DeleteDomainInput struct { // The name of the domain to delete. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (DeleteDomainInput) String ¶
func (s DeleteDomainInput) String() string
String returns the string representation
func (*DeleteDomainInput) Validate ¶
func (s *DeleteDomainInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteDomainOutput ¶
type DeleteDomainOutput struct {
// contains filtered or unexported fields
}
func (DeleteDomainOutput) String ¶
func (s DeleteDomainOutput) String() string
String returns the string representation
type DeleteDomainRequest ¶
type DeleteDomainRequest struct { *aws.Request Input *DeleteDomainInput Copy func(*DeleteDomainInput) DeleteDomainRequest }
DeleteDomainRequest is the request type for the DeleteDomain API operation.
func (DeleteDomainRequest) Send ¶
func (r DeleteDomainRequest) Send(ctx context.Context) (*DeleteDomainResponse, error)
Send marshals and sends the DeleteDomain API request.
type DeleteDomainResponse ¶ added in v0.9.0
type DeleteDomainResponse struct { *DeleteDomainOutput // contains filtered or unexported fields }
DeleteDomainResponse is the response type for the DeleteDomain API operation.
func (*DeleteDomainResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *DeleteDomainResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the DeleteDomain request.
type DomainMetadataInput ¶
type DomainMetadataInput struct { // The name of the domain for which to display the metadata of. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (DomainMetadataInput) String ¶
func (s DomainMetadataInput) String() string
String returns the string representation
func (*DomainMetadataInput) Validate ¶
func (s *DomainMetadataInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DomainMetadataOutput ¶
type DomainMetadataOutput struct { // The number of unique attribute names in the domain. AttributeNameCount *int64 `type:"integer"` // The total size of all unique attribute names in the domain, in bytes. AttributeNamesSizeBytes *int64 `type:"long"` // The number of all attribute name/value pairs in the domain. AttributeValueCount *int64 `type:"integer"` // The total size of all attribute values in the domain, in bytes. AttributeValuesSizeBytes *int64 `type:"long"` // The number of all items in the domain. ItemCount *int64 `type:"integer"` // The total size of all item names in the domain, in bytes. ItemNamesSizeBytes *int64 `type:"long"` // The data and time when metadata was calculated, in Epoch (UNIX) seconds. Timestamp *int64 `type:"integer"` // contains filtered or unexported fields }
func (DomainMetadataOutput) String ¶
func (s DomainMetadataOutput) String() string
String returns the string representation
type DomainMetadataRequest ¶
type DomainMetadataRequest struct { *aws.Request Input *DomainMetadataInput Copy func(*DomainMetadataInput) DomainMetadataRequest }
DomainMetadataRequest is the request type for the DomainMetadata API operation.
func (DomainMetadataRequest) Send ¶
func (r DomainMetadataRequest) Send(ctx context.Context) (*DomainMetadataResponse, error)
Send marshals and sends the DomainMetadata API request.
type DomainMetadataResponse ¶ added in v0.9.0
type DomainMetadataResponse struct { *DomainMetadataOutput // contains filtered or unexported fields }
DomainMetadataResponse is the response type for the DomainMetadata API operation.
func (*DomainMetadataResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *DomainMetadataResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the DomainMetadata request.
type GetAttributesInput ¶
type GetAttributesInput struct { // The names of the attributes. AttributeNames []string `locationNameList:"AttributeName" type:"list" flattened:"true"` // Determines whether or not strong consistency should be enforced when data // is read from SimpleDB. If // true // , any data previously written to SimpleDB will be returned. Otherwise, results // will be consistent eventually, and the client may not see data that was written // immediately before your read. ConsistentRead *bool `type:"boolean"` // The name of the domain in which to perform the operation. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // The name of the item. // // ItemName is a required field ItemName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (GetAttributesInput) String ¶
func (s GetAttributesInput) String() string
String returns the string representation
func (*GetAttributesInput) Validate ¶
func (s *GetAttributesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type GetAttributesOutput ¶
type GetAttributesOutput struct { // The list of attributes returned by the operation. Attributes []Attribute `locationNameList:"Attribute" type:"list" flattened:"true"` // contains filtered or unexported fields }
func (GetAttributesOutput) String ¶
func (s GetAttributesOutput) String() string
String returns the string representation
type GetAttributesRequest ¶
type GetAttributesRequest struct { *aws.Request Input *GetAttributesInput Copy func(*GetAttributesInput) GetAttributesRequest }
GetAttributesRequest is the request type for the GetAttributes API operation.
func (GetAttributesRequest) Send ¶
func (r GetAttributesRequest) Send(ctx context.Context) (*GetAttributesResponse, error)
Send marshals and sends the GetAttributes API request.
type GetAttributesResponse ¶ added in v0.9.0
type GetAttributesResponse struct { *GetAttributesOutput // contains filtered or unexported fields }
GetAttributesResponse is the response type for the GetAttributes API operation.
func (*GetAttributesResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *GetAttributesResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the GetAttributes request.
type Item ¶
type Item struct { AlternateNameEncoding *string `type:"string"` // A list of attributes. // // Attributes is a required field Attributes []Attribute `locationNameList:"Attribute" type:"list" flattened:"true" required:"true"` // The name of the item. // // Name is a required field Name *string `type:"string" required:"true"` // contains filtered or unexported fields }
type ListDomainsInput ¶
type ListDomainsInput struct { // The maximum number of domain names you want returned. The range is 1 to 100. // The default setting is 100. MaxNumberOfDomains *int64 `type:"integer"` // A string informing Amazon SimpleDB where to start the next list of domain // names. NextToken *string `type:"string"` // contains filtered or unexported fields }
func (ListDomainsInput) String ¶
func (s ListDomainsInput) String() string
String returns the string representation
type ListDomainsOutput ¶
type ListDomainsOutput struct { // A list of domain names that match the expression. DomainNames []string `locationNameList:"DomainName" type:"list" flattened:"true"` // An opaque token indicating that there are more domains than the specified // MaxNumberOfDomains // still available. NextToken *string `type:"string"` // contains filtered or unexported fields }
func (ListDomainsOutput) String ¶
func (s ListDomainsOutput) String() string
String returns the string representation
type ListDomainsPaginator ¶ added in v0.9.0
ListDomainsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.
func NewListDomainsPaginator ¶ added in v0.9.0
func NewListDomainsPaginator(req ListDomainsRequest) ListDomainsPaginator
NewListDomainsRequestPaginator returns a paginator for ListDomains. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.
Note: This operation can generate multiple requests to a service.
// Example iterating over pages. req := client.ListDomainsRequest(input) p := simpledb.NewListDomainsRequestPaginator(req) for p.Next(context.TODO()) { page := p.CurrentPage() } if err := p.Err(); err != nil { return err }
func (*ListDomainsPaginator) CurrentPage ¶ added in v0.9.0
func (p *ListDomainsPaginator) CurrentPage() *ListDomainsOutput
type ListDomainsRequest ¶
type ListDomainsRequest struct { *aws.Request Input *ListDomainsInput Copy func(*ListDomainsInput) ListDomainsRequest }
ListDomainsRequest is the request type for the ListDomains API operation.
func (ListDomainsRequest) Send ¶
func (r ListDomainsRequest) Send(ctx context.Context) (*ListDomainsResponse, error)
Send marshals and sends the ListDomains API request.
type ListDomainsResponse ¶ added in v0.9.0
type ListDomainsResponse struct { *ListDomainsOutput // contains filtered or unexported fields }
ListDomainsResponse is the response type for the ListDomains API operation.
func (*ListDomainsResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *ListDomainsResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the ListDomains request.
type PutAttributesInput ¶
type PutAttributesInput struct { // The list of attributes. // // Attributes is a required field Attributes []ReplaceableAttribute `locationNameList:"Attribute" type:"list" flattened:"true" required:"true"` // The name of the domain in which to perform the operation. // // DomainName is a required field DomainName *string `type:"string" required:"true"` // The update condition which, if specified, determines whether the specified // attributes will be updated or not. The update condition must be satisfied // in order for this request to be processed and the attributes to be updated. Expected *UpdateCondition `type:"structure"` // The name of the item. // // ItemName is a required field ItemName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (PutAttributesInput) String ¶
func (s PutAttributesInput) String() string
String returns the string representation
func (*PutAttributesInput) Validate ¶
func (s *PutAttributesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type PutAttributesOutput ¶
type PutAttributesOutput struct {
// contains filtered or unexported fields
}
func (PutAttributesOutput) String ¶
func (s PutAttributesOutput) String() string
String returns the string representation
type PutAttributesRequest ¶
type PutAttributesRequest struct { *aws.Request Input *PutAttributesInput Copy func(*PutAttributesInput) PutAttributesRequest }
PutAttributesRequest is the request type for the PutAttributes API operation.
func (PutAttributesRequest) Send ¶
func (r PutAttributesRequest) Send(ctx context.Context) (*PutAttributesResponse, error)
Send marshals and sends the PutAttributes API request.
type PutAttributesResponse ¶ added in v0.9.0
type PutAttributesResponse struct { *PutAttributesOutput // contains filtered or unexported fields }
PutAttributesResponse is the response type for the PutAttributes API operation.
func (*PutAttributesResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *PutAttributesResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the PutAttributes request.
type ReplaceableAttribute ¶
type ReplaceableAttribute struct { // The name of the replaceable attribute. // // Name is a required field Name *string `type:"string" required:"true"` // A flag specifying whether or not to replace the attribute/value pair or to // add a new attribute/value pair. The default setting is // false // . Replace *bool `type:"boolean"` // The value of the replaceable attribute. // // Value is a required field Value *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (ReplaceableAttribute) String ¶
func (s ReplaceableAttribute) String() string
String returns the string representation
func (*ReplaceableAttribute) Validate ¶
func (s *ReplaceableAttribute) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ReplaceableItem ¶
type ReplaceableItem struct { // The list of attributes for a replaceable item. // // Attributes is a required field Attributes []ReplaceableAttribute `locationNameList:"Attribute" type:"list" flattened:"true" required:"true"` // The name of the replaceable item. // // Name is a required field Name *string `locationName:"ItemName" type:"string" required:"true"` // contains filtered or unexported fields }
func (ReplaceableItem) String ¶
func (s ReplaceableItem) String() string
String returns the string representation
func (*ReplaceableItem) Validate ¶
func (s *ReplaceableItem) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type SelectInput ¶
type SelectInput struct { // Determines whether or not strong consistency should be enforced when data // is read from SimpleDB. If // true // , any data previously written to SimpleDB will be returned. Otherwise, results // will be consistent eventually, and the client may not see data that was written // immediately before your read. ConsistentRead *bool `type:"boolean"` // A string informing Amazon SimpleDB where to start the next list of // ItemNames // . NextToken *string `type:"string"` // The expression used to query the domain. // // SelectExpression is a required field SelectExpression *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (SelectInput) String ¶
func (s SelectInput) String() string
String returns the string representation
func (*SelectInput) Validate ¶
func (s *SelectInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type SelectOutput ¶
type SelectOutput struct { // A list of items that match the select expression. Items []Item `locationNameList:"Item" type:"list" flattened:"true"` // An opaque token indicating that more items than // MaxNumberOfItems // were matched, the response size exceeded 1 megabyte, or the execution time // exceeded 5 seconds. NextToken *string `type:"string"` // contains filtered or unexported fields }
func (SelectOutput) String ¶
func (s SelectOutput) String() string
String returns the string representation
type SelectPaginator ¶ added in v0.9.0
SelectPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.
func NewSelectPaginator ¶ added in v0.9.0
func NewSelectPaginator(req SelectRequest) SelectPaginator
NewSelectRequestPaginator returns a paginator for Select. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.
Note: This operation can generate multiple requests to a service.
// Example iterating over pages. req := client.SelectRequest(input) p := simpledb.NewSelectRequestPaginator(req) for p.Next(context.TODO()) { page := p.CurrentPage() } if err := p.Err(); err != nil { return err }
func (*SelectPaginator) CurrentPage ¶ added in v0.9.0
func (p *SelectPaginator) CurrentPage() *SelectOutput
type SelectRequest ¶
type SelectRequest struct { *aws.Request Input *SelectInput Copy func(*SelectInput) SelectRequest }
SelectRequest is the request type for the Select API operation.
func (SelectRequest) Send ¶
func (r SelectRequest) Send(ctx context.Context) (*SelectResponse, error)
Send marshals and sends the Select API request.
type SelectResponse ¶ added in v0.9.0
type SelectResponse struct { *SelectOutput // contains filtered or unexported fields }
SelectResponse is the response type for the Select API operation.
func (*SelectResponse) SDKResponseMetdata ¶ added in v0.9.0
func (r *SelectResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the Select request.
type UpdateCondition ¶
type UpdateCondition struct { // A value specifying whether or not the specified attribute must exist with // the specified value in order for the update condition to be satisfied. Specify // true if the attribute must exist for the update condition to be satisfied. // Specify false if the attribute should not exist in order for the update condition // to be satisfied. Exists *bool `type:"boolean"` // The name of the attribute involved in the condition. Name *string `type:"string"` // The value of an attribute. This value can only be specified when the Exists // parameter is equal to true. Value *string `type:"string"` // contains filtered or unexported fields }
Specifies the conditions under which data should be updated. If an update condition is specified for a request, the data will only be updated if the condition is satisfied. For example, if an attribute with a specific name and value exists, or if a specific attribute doesn't exist.
func (UpdateCondition) String ¶
func (s UpdateCondition) String() string
String returns the string representation
Source Files ¶
- api_client.go
- api_doc.go
- api_enums.go
- api_errors.go
- api_op_BatchDeleteAttributes.go
- api_op_BatchPutAttributes.go
- api_op_CreateDomain.go
- api_op_DeleteAttributes.go
- api_op_DeleteDomain.go
- api_op_DomainMetadata.go
- api_op_GetAttributes.go
- api_op_ListDomains.go
- api_op_PutAttributes.go
- api_op_Select.go
- api_types.go
- customizations.go
- unmarshall_error.go
Directories ¶
Path | Synopsis |
---|---|
Package simpledbiface provides an interface to enable mocking the Amazon SimpleDB service client for testing your code.
|
Package simpledbiface provides an interface to enable mocking the Amazon SimpleDB service client for testing your code. |