123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615 |
- // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
- package cloudsearch_test
- import (
- "bytes"
- "fmt"
- "time"
- "github.com/aws/aws-sdk-go/aws"
- "github.com/aws/aws-sdk-go/service/cloudsearch"
- )
- var _ time.Duration
- var _ bytes.Buffer
- func ExampleCloudSearch_BuildSuggesters() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.BuildSuggestersInput{
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.BuildSuggesters(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_CreateDomain() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.CreateDomainInput{
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.CreateDomain(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DefineAnalysisScheme() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DefineAnalysisSchemeInput{
- AnalysisScheme: &cloudsearch.AnalysisScheme{ // Required
- AnalysisSchemeLanguage: aws.String("AnalysisSchemeLanguage"), // Required
- AnalysisSchemeName: aws.String("StandardName"), // Required
- AnalysisOptions: &cloudsearch.AnalysisOptions{
- AlgorithmicStemming: aws.String("AlgorithmicStemming"),
- JapaneseTokenizationDictionary: aws.String("String"),
- StemmingDictionary: aws.String("String"),
- Stopwords: aws.String("String"),
- Synonyms: aws.String("String"),
- },
- },
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.DefineAnalysisScheme(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DefineExpression() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DefineExpressionInput{
- DomainName: aws.String("DomainName"), // Required
- Expression: &cloudsearch.Expression{ // Required
- ExpressionName: aws.String("StandardName"), // Required
- ExpressionValue: aws.String("ExpressionValue"), // Required
- },
- }
- resp, err := svc.DefineExpression(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DefineIndexField() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DefineIndexFieldInput{
- DomainName: aws.String("DomainName"), // Required
- IndexField: &cloudsearch.IndexField{ // Required
- IndexFieldName: aws.String("DynamicFieldName"), // Required
- IndexFieldType: aws.String("IndexFieldType"), // Required
- DateArrayOptions: &cloudsearch.DateArrayOptions{
- DefaultValue: aws.String("FieldValue"),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SourceFields: aws.String("FieldNameCommaList"),
- },
- DateOptions: &cloudsearch.DateOptions{
- DefaultValue: aws.String("FieldValue"),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SortEnabled: aws.Bool(true),
- SourceField: aws.String("FieldName"),
- },
- DoubleArrayOptions: &cloudsearch.DoubleArrayOptions{
- DefaultValue: aws.Float64(1.0),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SourceFields: aws.String("FieldNameCommaList"),
- },
- DoubleOptions: &cloudsearch.DoubleOptions{
- DefaultValue: aws.Float64(1.0),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SortEnabled: aws.Bool(true),
- SourceField: aws.String("FieldName"),
- },
- IntArrayOptions: &cloudsearch.IntArrayOptions{
- DefaultValue: aws.Int64(1),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SourceFields: aws.String("FieldNameCommaList"),
- },
- IntOptions: &cloudsearch.IntOptions{
- DefaultValue: aws.Int64(1),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SortEnabled: aws.Bool(true),
- SourceField: aws.String("FieldName"),
- },
- LatLonOptions: &cloudsearch.LatLonOptions{
- DefaultValue: aws.String("FieldValue"),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SortEnabled: aws.Bool(true),
- SourceField: aws.String("FieldName"),
- },
- LiteralArrayOptions: &cloudsearch.LiteralArrayOptions{
- DefaultValue: aws.String("FieldValue"),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SourceFields: aws.String("FieldNameCommaList"),
- },
- LiteralOptions: &cloudsearch.LiteralOptions{
- DefaultValue: aws.String("FieldValue"),
- FacetEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SearchEnabled: aws.Bool(true),
- SortEnabled: aws.Bool(true),
- SourceField: aws.String("FieldName"),
- },
- TextArrayOptions: &cloudsearch.TextArrayOptions{
- AnalysisScheme: aws.String("Word"),
- DefaultValue: aws.String("FieldValue"),
- HighlightEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SourceFields: aws.String("FieldNameCommaList"),
- },
- TextOptions: &cloudsearch.TextOptions{
- AnalysisScheme: aws.String("Word"),
- DefaultValue: aws.String("FieldValue"),
- HighlightEnabled: aws.Bool(true),
- ReturnEnabled: aws.Bool(true),
- SortEnabled: aws.Bool(true),
- SourceField: aws.String("FieldName"),
- },
- },
- }
- resp, err := svc.DefineIndexField(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DefineSuggester() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DefineSuggesterInput{
- DomainName: aws.String("DomainName"), // Required
- Suggester: &cloudsearch.Suggester{ // Required
- DocumentSuggesterOptions: &cloudsearch.DocumentSuggesterOptions{ // Required
- SourceField: aws.String("FieldName"), // Required
- FuzzyMatching: aws.String("SuggesterFuzzyMatching"),
- SortExpression: aws.String("String"),
- },
- SuggesterName: aws.String("StandardName"), // Required
- },
- }
- resp, err := svc.DefineSuggester(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DeleteAnalysisScheme() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DeleteAnalysisSchemeInput{
- AnalysisSchemeName: aws.String("StandardName"), // Required
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.DeleteAnalysisScheme(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DeleteDomain() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DeleteDomainInput{
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.DeleteDomain(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DeleteExpression() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DeleteExpressionInput{
- DomainName: aws.String("DomainName"), // Required
- ExpressionName: aws.String("StandardName"), // Required
- }
- resp, err := svc.DeleteExpression(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DeleteIndexField() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DeleteIndexFieldInput{
- DomainName: aws.String("DomainName"), // Required
- IndexFieldName: aws.String("DynamicFieldName"), // Required
- }
- resp, err := svc.DeleteIndexField(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DeleteSuggester() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DeleteSuggesterInput{
- DomainName: aws.String("DomainName"), // Required
- SuggesterName: aws.String("StandardName"), // Required
- }
- resp, err := svc.DeleteSuggester(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeAnalysisSchemes() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeAnalysisSchemesInput{
- DomainName: aws.String("DomainName"), // Required
- AnalysisSchemeNames: []*string{
- aws.String("StandardName"), // Required
- // More values...
- },
- Deployed: aws.Bool(true),
- }
- resp, err := svc.DescribeAnalysisSchemes(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeAvailabilityOptions() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeAvailabilityOptionsInput{
- DomainName: aws.String("DomainName"), // Required
- Deployed: aws.Bool(true),
- }
- resp, err := svc.DescribeAvailabilityOptions(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeDomains() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeDomainsInput{
- DomainNames: []*string{
- aws.String("DomainName"), // Required
- // More values...
- },
- }
- resp, err := svc.DescribeDomains(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeExpressions() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeExpressionsInput{
- DomainName: aws.String("DomainName"), // Required
- Deployed: aws.Bool(true),
- ExpressionNames: []*string{
- aws.String("StandardName"), // Required
- // More values...
- },
- }
- resp, err := svc.DescribeExpressions(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeIndexFields() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeIndexFieldsInput{
- DomainName: aws.String("DomainName"), // Required
- Deployed: aws.Bool(true),
- FieldNames: []*string{
- aws.String("DynamicFieldName"), // Required
- // More values...
- },
- }
- resp, err := svc.DescribeIndexFields(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeScalingParameters() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeScalingParametersInput{
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.DescribeScalingParameters(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeServiceAccessPolicies() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeServiceAccessPoliciesInput{
- DomainName: aws.String("DomainName"), // Required
- Deployed: aws.Bool(true),
- }
- resp, err := svc.DescribeServiceAccessPolicies(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_DescribeSuggesters() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.DescribeSuggestersInput{
- DomainName: aws.String("DomainName"), // Required
- Deployed: aws.Bool(true),
- SuggesterNames: []*string{
- aws.String("StandardName"), // Required
- // More values...
- },
- }
- resp, err := svc.DescribeSuggesters(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_IndexDocuments() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.IndexDocumentsInput{
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.IndexDocuments(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_ListDomainNames() {
- svc := cloudsearch.New(nil)
- var params *cloudsearch.ListDomainNamesInput
- resp, err := svc.ListDomainNames(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_UpdateAvailabilityOptions() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.UpdateAvailabilityOptionsInput{
- DomainName: aws.String("DomainName"), // Required
- MultiAZ: aws.Bool(true), // Required
- }
- resp, err := svc.UpdateAvailabilityOptions(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_UpdateScalingParameters() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.UpdateScalingParametersInput{
- DomainName: aws.String("DomainName"), // Required
- ScalingParameters: &cloudsearch.ScalingParameters{ // Required
- DesiredInstanceType: aws.String("PartitionInstanceType"),
- DesiredPartitionCount: aws.Int64(1),
- DesiredReplicationCount: aws.Int64(1),
- },
- }
- resp, err := svc.UpdateScalingParameters(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- func ExampleCloudSearch_UpdateServiceAccessPolicies() {
- svc := cloudsearch.New(nil)
- params := &cloudsearch.UpdateServiceAccessPoliciesInput{
- AccessPolicies: aws.String("PolicyDocument"), // Required
- DomainName: aws.String("DomainName"), // Required
- }
- resp, err := svc.UpdateServiceAccessPolicies(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
|