1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package appconfig_test
import (
"fmt"
"strings"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/appconfig"
)
var _ time.Duration
var _ strings.Reader
var _ aws.Config
func parseTime(layout, value string) *time.Time {
t, err := time.Parse(layout, value)
if err != nil {
panic(err)
}
return &t
}
// To create an application
// The following create-application example creates an application in AWS AppConfig.
func ExampleAppConfig_CreateApplication_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.CreateApplicationInput{
Description: aws.String("An application used for creating an example."),
Name: aws.String("example-application"),
}
result, err := svc.CreateApplication(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To create a configuration profile
// The following create-configuration-profile example creates a configuration profile
// using a configuration stored in Parameter Store, a capability of Systems Manager.
func ExampleAppConfig_CreateConfigurationProfile_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.CreateConfigurationProfileInput{
ApplicationId: aws.String("339ohji"),
LocationUri: aws.String("ssm-parameter://Example-Parameter"),
Name: aws.String("Example-Configuration-Profile"),
RetrievalRoleArn: aws.String("arn:aws:iam::111122223333:role/Example-App-Config-Role"),
}
result, err := svc.CreateConfigurationProfile(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To create a deployment strategy
// The following create-deployment-strategy example creates a deployment strategy called
// Example-Deployment that takes 15 minutes and deploys the configuration to 25% of
// the application at a time. The strategy is also copied to an SSM Document.
func ExampleAppConfig_CreateDeploymentStrategy_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.CreateDeploymentStrategyInput{
DeploymentDurationInMinutes: aws.Int64(15),
GrowthFactor: aws.Float64(25.000000),
Name: aws.String("Example-Deployment"),
ReplicateTo: aws.String("SSM_DOCUMENT"),
}
result, err := svc.CreateDeploymentStrategy(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To create an environment
// The following create-environment example creates an AWS AppConfig environment named
// Example-Environment using the application you created using create-application
func ExampleAppConfig_CreateEnvironment_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.CreateEnvironmentInput{
ApplicationId: aws.String("339ohji"),
Name: aws.String("Example-Environment"),
}
result, err := svc.CreateEnvironment(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To create a hosted configuration version
// The following create-hosted-configuration-version example creates a new configuration
// in the AWS AppConfig configuration store.
func ExampleAppConfig_CreateHostedConfigurationVersion_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.CreateHostedConfigurationVersionInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
Content: []byte("eyAiTmFtZSI6ICJFeGFtcGxlQXBwbGljYXRpb24iLCAiSWQiOiBFeGFtcGxlSUQsICJSYW5rIjogNyB9"),
ContentType: aws.String("text"),
LatestVersionNumber: aws.Int64(1),
}
result, err := svc.CreateHostedConfigurationVersion(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeServiceQuotaExceededException:
fmt.Println(appconfig.ErrCodeServiceQuotaExceededException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeConflictException:
fmt.Println(appconfig.ErrCodeConflictException, aerr.Error())
case appconfig.ErrCodePayloadTooLargeException:
fmt.Println(appconfig.ErrCodePayloadTooLargeException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To delete an application
// The following delete-application example deletes the specified application.
func ExampleAppConfig_DeleteApplication_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.DeleteApplicationInput{
ApplicationId: aws.String("339ohji"),
}
result, err := svc.DeleteApplication(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To delete a configuration profile
// The following delete-configuration-profile example deletes the specified configuration
// profile.
func ExampleAppConfig_DeleteConfigurationProfile_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.DeleteConfigurationProfileInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
}
result, err := svc.DeleteConfigurationProfile(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeConflictException:
fmt.Println(appconfig.ErrCodeConflictException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To delete a deployment strategy
// The following delete-deployment-strategy example deletes the specified deployment
// strategy.
func ExampleAppConfig_DeleteDeploymentStrategy_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.DeleteDeploymentStrategyInput{
DeploymentStrategyId: aws.String("1225qzk"),
}
result, err := svc.DeleteDeploymentStrategy(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To delete an environment
// The following delete-environment example deletes the specified application environment.
func ExampleAppConfig_DeleteEnvironment_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.DeleteEnvironmentInput{
ApplicationId: aws.String("339ohji"),
EnvironmentId: aws.String("54j1r29"),
}
result, err := svc.DeleteEnvironment(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeConflictException:
fmt.Println(appconfig.ErrCodeConflictException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To delete a hosted configuration version
// The following delete-hosted-configuration-version example deletes a configuration
// version hosted in the AWS AppConfig configuration store.
func ExampleAppConfig_DeleteHostedConfigurationVersion_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.DeleteHostedConfigurationVersionInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
VersionNumber: aws.Int64(1),
}
result, err := svc.DeleteHostedConfigurationVersion(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list details of an application
// The following get-application example lists the details of the specified application.
func ExampleAppConfig_GetApplication_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.GetApplicationInput{
ApplicationId: aws.String("339ohji"),
}
result, err := svc.GetApplication(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To retrieve configuration details
// The following get-configuration example returns the configuration details of the
// example application. On subsequent calls to get-configuration, use the client-configuration-version
// parameter to only update the configuration of your application if the version has
// changed. Only updating the configuration when the version has changed avoids excess
// charges incurred by calling get-configuration.
func ExampleAppConfig_GetConfiguration_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.GetConfigurationInput{
Application: aws.String("example-application"),
ClientId: aws.String("example-id"),
Configuration: aws.String("Example-Configuration-Profile"),
Environment: aws.String("Example-Environment"),
}
result, err := svc.GetConfiguration(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To retrieve configuration profile details
// The following get-configuration-profile example returns the details of the specified
// configuration profile.
func ExampleAppConfig_GetConfigurationProfile_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.GetConfigurationProfileInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
}
result, err := svc.GetConfigurationProfile(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To retrieve deployment details
// The following get-deployment example lists details of the deployment to the application
// in the specified environment and deployment.
func ExampleAppConfig_GetDeployment_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.GetDeploymentInput{
ApplicationId: aws.String("339ohji"),
DeploymentNumber: aws.Int64(1),
EnvironmentId: aws.String("54j1r29"),
}
result, err := svc.GetDeployment(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To retrieve details of a deployment strategy
// The following get-deployment-strategy example lists the details of the specified
// deployment strategy.
func ExampleAppConfig_GetDeploymentStrategy_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.GetDeploymentStrategyInput{
DeploymentStrategyId: aws.String("1225qzk"),
}
result, err := svc.GetDeploymentStrategy(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To retrieve environment details
// The following get-environment example returns the details and state of the specified
// environment.
func ExampleAppConfig_GetEnvironment_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.GetEnvironmentInput{
ApplicationId: aws.String("339ohji"),
EnvironmentId: aws.String("54j1r29"),
}
result, err := svc.GetEnvironment(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To retrieve hosted configuration details
// The following get-hosted-configuration-version example retrieves the configuration
// details of the AWS AppConfig hosted configuration.
func ExampleAppConfig_GetHostedConfigurationVersion_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.GetHostedConfigurationVersionInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
VersionNumber: aws.Int64(1),
}
result, err := svc.GetHostedConfigurationVersion(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list the available applications
// The following list-applications example lists the available applications in your
// AWS account.
func ExampleAppConfig_ListApplications_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ListApplicationsInput{}
result, err := svc.ListApplications(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list the available configuration profiles
// The following list-configuration-profiles example lists the available configuration
// profiles for the specified application.
func ExampleAppConfig_ListConfigurationProfiles_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ListConfigurationProfilesInput{
ApplicationId: aws.String("339ohji"),
}
result, err := svc.ListConfigurationProfiles(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list the available deployment strategies
// The following list-deployment-strategies example lists the available deployment strategies
// in your AWS account.
func ExampleAppConfig_ListDeploymentStrategies_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ListDeploymentStrategiesInput{}
result, err := svc.ListDeploymentStrategies(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list the available deployments
// The following list-deployments example lists the available deployments in your AWS
// account for the specified application and environment.
func ExampleAppConfig_ListDeployments_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ListDeploymentsInput{
ApplicationId: aws.String("339ohji"),
EnvironmentId: aws.String("54j1r29"),
}
result, err := svc.ListDeployments(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list the available environments
// The following list-environments example lists the available environments in your
// AWS account for the specified application.
func ExampleAppConfig_ListEnvironments_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ListEnvironmentsInput{
ApplicationId: aws.String("339ohji"),
}
result, err := svc.ListEnvironments(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list the available hosted configuration versions
// The following list-hosted-configuration-versions example lists the configurations
// versions hosted in the AWS AppConfig hosted configuration store for the specified
// application and configuration profile.
func ExampleAppConfig_ListHostedConfigurationVersions_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ListHostedConfigurationVersionsInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
}
result, err := svc.ListHostedConfigurationVersions(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To list the tags of an application
// The following list-tags-for-resource example lists the tags of a specified application.
func ExampleAppConfig_ListTagsForResource_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ListTagsForResourceInput{
ResourceArn: aws.String("arn:aws:appconfig:us-east-1:111122223333:application/339ohji"),
}
result, err := svc.ListTagsForResource(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To start a configuration deployment
// The following start-deployment example starts a deployment to the application using
// the specified environment, deployment strategy, and configuration profile.
func ExampleAppConfig_StartDeployment_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.StartDeploymentInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
ConfigurationVersion: aws.String("1"),
DeploymentStrategyId: aws.String("1225qzk"),
Description: aws.String(""),
EnvironmentId: aws.String("54j1r29"),
Tags: map[string]*string{},
}
result, err := svc.StartDeployment(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeConflictException:
fmt.Println(appconfig.ErrCodeConflictException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To stop configuration deployment
// The following stop-deployment example stops the deployment of an application configuration
// to the specified environment.
func ExampleAppConfig_StopDeployment_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.StopDeploymentInput{
ApplicationId: aws.String("339ohji"),
DeploymentNumber: aws.Int64(2),
EnvironmentId: aws.String("54j1r29"),
}
result, err := svc.StopDeployment(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To tag an application
// The following tag-resource example tags an application resource.
func ExampleAppConfig_TagResource_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.TagResourceInput{
ResourceArn: aws.String("arn:aws:appconfig:us-east-1:111122223333:application/339ohji"),
Tags: map[string]*string{
"group1": aws.String("1"),
},
}
result, err := svc.TagResource(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To remove a tag from an application
// The following untag-resource example removes the group1 tag from the specified application.
func ExampleAppConfig_UntagResource_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.UntagResourceInput{
ResourceArn: aws.String("arn:aws:appconfig:us-east-1:111122223333:application/339ohji"),
TagKeys: []*string{
aws.String("group1"),
},
}
result, err := svc.UntagResource(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To update an application
// The following update-application example updates the name of the specified application.
func ExampleAppConfig_UpdateApplication_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.UpdateApplicationInput{
ApplicationId: aws.String("339ohji"),
Description: aws.String(""),
Name: aws.String("Example-Application"),
}
result, err := svc.UpdateApplication(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To update a configuration profile
// The following update-configuration-profile example updates the description of the
// specified configuration profile.
func ExampleAppConfig_UpdateConfigurationProfile_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.UpdateConfigurationProfileInput{
ApplicationId: aws.String("339ohji"),
ConfigurationProfileId: aws.String("ur8hx2f"),
Description: aws.String("Configuration profile used for examples."),
}
result, err := svc.UpdateConfigurationProfile(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To update a deployment strategy
// The following update-deployment-strategy example updates final bake time to 20 minutes
// in the specified deployment strategy. ::
func ExampleAppConfig_UpdateDeploymentStrategy_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.UpdateDeploymentStrategyInput{
DeploymentStrategyId: aws.String("1225qzk"),
FinalBakeTimeInMinutes: aws.Int64(20),
}
result, err := svc.UpdateDeploymentStrategy(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To update an environment
// The following update-environment example updates an environment's description.
func ExampleAppConfig_UpdateEnvironment_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.UpdateEnvironmentInput{
ApplicationId: aws.String("339ohji"),
Description: aws.String("An environment for examples."),
EnvironmentId: aws.String("54j1r29"),
}
result, err := svc.UpdateEnvironment(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
// To validate a configuration
// The following validate-configuration example uses the validators in a configuration
// profile to validate a configuration.
func ExampleAppConfig_ValidateConfiguration_shared00() {
svc := appconfig.New(session.New())
input := &appconfig.ValidateConfigurationInput{
ApplicationId: aws.String("abc1234"),
ConfigurationProfileId: aws.String("ur8hx2f"),
ConfigurationVersion: aws.String("1"),
}
result, err := svc.ValidateConfiguration(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case appconfig.ErrCodeBadRequestException:
fmt.Println(appconfig.ErrCodeBadRequestException, aerr.Error())
case appconfig.ErrCodeResourceNotFoundException:
fmt.Println(appconfig.ErrCodeResourceNotFoundException, aerr.Error())
case appconfig.ErrCodeInternalServerException:
fmt.Println(appconfig.ErrCodeInternalServerException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
|