aws-sdk-codedeploy 1.51.0 → 1.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,19 +13,6 @@ module Aws::CodeDeploy
13
13
  # Represents the input of, and adds tags to, an on-premises instance
14
14
  # operation.
15
15
  #
16
- # @note When making an API call, you may pass AddTagsToOnPremisesInstancesInput
17
- # data as a hash:
18
- #
19
- # {
20
- # tags: [ # required
21
- # {
22
- # key: "Key",
23
- # value: "Value",
24
- # },
25
- # ],
26
- # instance_names: ["InstanceName"], # required
27
- # }
28
- #
29
16
  # @!attribute [rw] tags
30
17
  # The tag key-value pairs to add to the on-premises instances.
31
18
  #
@@ -48,13 +35,6 @@ module Aws::CodeDeploy
48
35
 
49
36
  # Information about an alarm.
50
37
  #
51
- # @note When making an API call, you may pass Alarm
52
- # data as a hash:
53
- #
54
- # {
55
- # name: "AlarmName",
56
- # }
57
- #
58
38
  # @!attribute [rw] name
59
39
  # The name of the alarm. Maximum length is 255 characters. Each alarm
60
40
  # name can be used only once in a list of alarms.
@@ -71,19 +51,6 @@ module Aws::CodeDeploy
71
51
  # Information about alarms associated with a deployment or deployment
72
52
  # group.
73
53
  #
74
- # @note When making an API call, you may pass AlarmConfiguration
75
- # data as a hash:
76
- #
77
- # {
78
- # enabled: false,
79
- # ignore_poll_alarm_failure: false,
80
- # alarms: [
81
- # {
82
- # name: "AlarmName",
83
- # },
84
- # ],
85
- # }
86
- #
87
54
  # @!attribute [rw] enabled
88
55
  # Indicates whether the alarm configuration is enabled.
89
56
  # @return [Boolean]
@@ -93,10 +60,10 @@ module Aws::CodeDeploy
93
60
  # the current state of alarms cannot be retrieved from Amazon
94
61
  # CloudWatch. The default value is false.
95
62
  #
96
- # * `true`\: The deployment proceeds even if alarm status information
63
+ # * `true`: The deployment proceeds even if alarm status information
97
64
  # can't be retrieved from Amazon CloudWatch.
98
65
  #
99
- # * `false`\: The deployment stops if alarm status information can't
66
+ # * `false`: The deployment stops if alarm status information can't
100
67
  # be retrieved from Amazon CloudWatch.
101
68
  # @return [Boolean]
102
69
  #
@@ -126,14 +93,6 @@ module Aws::CodeDeploy
126
93
  # deployments, the revision is the same as the AppSpec file. This method
127
94
  # replaces the deprecated `RawString` data type.
128
95
  #
129
- # @note When making an API call, you may pass AppSpecContent
130
- # data as a hash:
131
- #
132
- # {
133
- # content: "RawStringContent",
134
- # sha256: "RawStringSha256",
135
- # }
136
- #
137
96
  # @!attribute [rw] content
138
97
  # The YAML-formatted or JSON-formatted revision string.
139
98
  #
@@ -242,14 +201,6 @@ module Aws::CodeDeploy
242
201
  # previous version of an application revision when a deployment is not
243
202
  # completed successfully.
244
203
  #
245
- # @note When making an API call, you may pass AutoRollbackConfiguration
246
- # data as a hash:
247
- #
248
- # {
249
- # enabled: false,
250
- # events: ["DEPLOYMENT_FAILURE"], # accepts DEPLOYMENT_FAILURE, DEPLOYMENT_STOP_ON_ALARM, DEPLOYMENT_STOP_ON_REQUEST
251
- # }
252
- #
253
204
  # @!attribute [rw] enabled
254
205
  # Indicates whether a defined automatic rollback configuration is
255
206
  # currently enabled.
@@ -289,37 +240,6 @@ module Aws::CodeDeploy
289
240
 
290
241
  # Represents the input of a `BatchGetApplicationRevisions` operation.
291
242
  #
292
- # @note When making an API call, you may pass BatchGetApplicationRevisionsInput
293
- # data as a hash:
294
- #
295
- # {
296
- # application_name: "ApplicationName", # required
297
- # revisions: [ # required
298
- # {
299
- # revision_type: "S3", # accepts S3, GitHub, String, AppSpecContent
300
- # s3_location: {
301
- # bucket: "S3Bucket",
302
- # key: "S3Key",
303
- # bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
304
- # version: "VersionId",
305
- # e_tag: "ETag",
306
- # },
307
- # git_hub_location: {
308
- # repository: "Repository",
309
- # commit_id: "CommitId",
310
- # },
311
- # string: {
312
- # content: "RawStringContent",
313
- # sha256: "RawStringSha256",
314
- # },
315
- # app_spec_content: {
316
- # content: "RawStringContent",
317
- # sha256: "RawStringSha256",
318
- # },
319
- # },
320
- # ],
321
- # }
322
- #
323
243
  # @!attribute [rw] application_name
324
244
  # The name of an CodeDeploy application about which to get revision
325
245
  # information.
@@ -369,13 +289,6 @@ module Aws::CodeDeploy
369
289
 
370
290
  # Represents the input of a `BatchGetApplications` operation.
371
291
  #
372
- # @note When making an API call, you may pass BatchGetApplicationsInput
373
- # data as a hash:
374
- #
375
- # {
376
- # application_names: ["ApplicationName"], # required
377
- # }
378
- #
379
292
  # @!attribute [rw] application_names
380
293
  # A list of application names separated by spaces. The maximum number
381
294
  # of application names you can specify is 100.
@@ -405,14 +318,6 @@ module Aws::CodeDeploy
405
318
 
406
319
  # Represents the input of a `BatchGetDeploymentGroups` operation.
407
320
  #
408
- # @note When making an API call, you may pass BatchGetDeploymentGroupsInput
409
- # data as a hash:
410
- #
411
- # {
412
- # application_name: "ApplicationName", # required
413
- # deployment_group_names: ["DeploymentGroupName"], # required
414
- # }
415
- #
416
321
  # @!attribute [rw] application_name
417
322
  # The name of an CodeDeploy application associated with the applicable
418
323
  # IAM or Amazon Web Services account.
@@ -453,14 +358,6 @@ module Aws::CodeDeploy
453
358
 
454
359
  # Represents the input of a `BatchGetDeploymentInstances` operation.
455
360
  #
456
- # @note When making an API call, you may pass BatchGetDeploymentInstancesInput
457
- # data as a hash:
458
- #
459
- # {
460
- # deployment_id: "DeploymentId", # required
461
- # instance_ids: ["InstanceId"], # required
462
- # }
463
- #
464
361
  # @!attribute [rw] deployment_id
465
362
  # The unique ID of a deployment.
466
363
  # @return [String]
@@ -499,14 +396,6 @@ module Aws::CodeDeploy
499
396
  include Aws::Structure
500
397
  end
501
398
 
502
- # @note When making an API call, you may pass BatchGetDeploymentTargetsInput
503
- # data as a hash:
504
- #
505
- # {
506
- # deployment_id: "DeploymentId",
507
- # target_ids: ["TargetId"],
508
- # }
509
- #
510
399
  # @!attribute [rw] deployment_id
511
400
  # The unique ID of a deployment.
512
401
  # @return [String]
@@ -549,15 +438,15 @@ module Aws::CodeDeploy
549
438
  # events. The type of the target objects depends on the deployment'
550
439
  # compute platform.
551
440
  #
552
- # * **EC2/On-premises**\: Each target object is an Amazon EC2 or
441
+ # * **EC2/On-premises**: Each target object is an Amazon EC2 or
553
442
  # on-premises instance.
554
443
  #
555
- # * **Lambda**\: The target object is a specific version of an Lambda
444
+ # * **Lambda**: The target object is a specific version of an Lambda
556
445
  # function.
557
446
  #
558
- # * **Amazon ECS**\: The target object is an Amazon ECS service.
447
+ # * **Amazon ECS**: The target object is an Amazon ECS service.
559
448
  #
560
- # * **CloudFormation**\: The target object is an CloudFormation
449
+ # * **CloudFormation**: The target object is an CloudFormation
561
450
  # blue/green deployment.
562
451
  # @return [Array<Types::DeploymentTarget>]
563
452
  #
@@ -571,13 +460,6 @@ module Aws::CodeDeploy
571
460
 
572
461
  # Represents the input of a `BatchGetDeployments` operation.
573
462
  #
574
- # @note When making an API call, you may pass BatchGetDeploymentsInput
575
- # data as a hash:
576
- #
577
- # {
578
- # deployment_ids: ["DeploymentId"], # required
579
- # }
580
- #
581
463
  # @!attribute [rw] deployment_ids
582
464
  # A list of deployment IDs, separated by spaces. The maximum number of
583
465
  # deployment IDs you can specify is 25.
@@ -607,13 +489,6 @@ module Aws::CodeDeploy
607
489
 
608
490
  # Represents the input of a `BatchGetOnPremisesInstances` operation.
609
491
  #
610
- # @note When making an API call, you may pass BatchGetOnPremisesInstancesInput
611
- # data as a hash:
612
- #
613
- # {
614
- # instance_names: ["InstanceName"], # required
615
- # }
616
- #
617
492
  # @!attribute [rw] instance_names
618
493
  # The names of the on-premises instances about which to get
619
494
  # information. The maximum number of instance names you can specify is
@@ -652,23 +527,6 @@ module Aws::CodeDeploy
652
527
  # Information about blue/green deployment options for a deployment
653
528
  # group.
654
529
  #
655
- # @note When making an API call, you may pass BlueGreenDeploymentConfiguration
656
- # data as a hash:
657
- #
658
- # {
659
- # terminate_blue_instances_on_deployment_success: {
660
- # action: "TERMINATE", # accepts TERMINATE, KEEP_ALIVE
661
- # termination_wait_time_in_minutes: 1,
662
- # },
663
- # deployment_ready_option: {
664
- # action_on_timeout: "CONTINUE_DEPLOYMENT", # accepts CONTINUE_DEPLOYMENT, STOP_DEPLOYMENT
665
- # wait_time_in_minutes: 1,
666
- # },
667
- # green_fleet_provisioning_option: {
668
- # action: "DISCOVER_EXISTING", # accepts DISCOVER_EXISTING, COPY_AUTO_SCALING_GROUP
669
- # },
670
- # }
671
- #
672
530
  # @!attribute [rw] terminate_blue_instances_on_deployment_success
673
531
  # Information about whether to terminate instances in the original
674
532
  # fleet during a blue/green deployment.
@@ -698,22 +556,13 @@ module Aws::CodeDeploy
698
556
  # terminated when a blue/green deployment is successful.
699
557
  # `BlueInstanceTerminationOption` does not apply to Lambda deployments.
700
558
  #
701
- # @note When making an API call, you may pass BlueInstanceTerminationOption
702
- # data as a hash:
703
- #
704
- # {
705
- # action: "TERMINATE", # accepts TERMINATE, KEEP_ALIVE
706
- # termination_wait_time_in_minutes: 1,
707
- # }
708
- #
709
559
  # @!attribute [rw] action
710
560
  # The action to take on instances in the original environment after a
711
561
  # successful blue/green deployment.
712
562
  #
713
- # * `TERMINATE`\: Instances are terminated after a specified wait
714
- # time.
563
+ # * `TERMINATE`: Instances are terminated after a specified wait time.
715
564
  #
716
- # * `KEEP_ALIVE`\: Instances are left running after they are
565
+ # * `KEEP_ALIVE`: Instances are left running after they are
717
566
  # deregistered from the load balancer and removed from the
718
567
  # deployment group.
719
568
  # @return [String]
@@ -797,14 +646,6 @@ module Aws::CodeDeploy
797
646
  include Aws::Structure
798
647
  end
799
648
 
800
- # @note When making an API call, you may pass ContinueDeploymentInput
801
- # data as a hash:
802
- #
803
- # {
804
- # deployment_id: "DeploymentId",
805
- # deployment_wait_type: "READY_WAIT", # accepts READY_WAIT, TERMINATION_WAIT
806
- # }
807
- #
808
649
  # @!attribute [rw] deployment_id
809
650
  # The unique ID of a blue/green deployment for which you want to start
810
651
  # rerouting traffic to the replacement environment.
@@ -828,20 +669,6 @@ module Aws::CodeDeploy
828
669
 
829
670
  # Represents the input of a `CreateApplication` operation.
830
671
  #
831
- # @note When making an API call, you may pass CreateApplicationInput
832
- # data as a hash:
833
- #
834
- # {
835
- # application_name: "ApplicationName", # required
836
- # compute_platform: "Server", # accepts Server, Lambda, ECS
837
- # tags: [
838
- # {
839
- # key: "Key",
840
- # value: "Value",
841
- # },
842
- # ],
843
- # }
844
- #
845
672
  # @!attribute [rw] application_name
846
673
  # The name of the application. This name must be unique with the
847
674
  # applicable IAM or Amazon Web Services account.
@@ -884,29 +711,6 @@ module Aws::CodeDeploy
884
711
 
885
712
  # Represents the input of a `CreateDeploymentConfig` operation.
886
713
  #
887
- # @note When making an API call, you may pass CreateDeploymentConfigInput
888
- # data as a hash:
889
- #
890
- # {
891
- # deployment_config_name: "DeploymentConfigName", # required
892
- # minimum_healthy_hosts: {
893
- # type: "HOST_COUNT", # accepts HOST_COUNT, FLEET_PERCENT
894
- # value: 1,
895
- # },
896
- # traffic_routing_config: {
897
- # type: "TimeBasedCanary", # accepts TimeBasedCanary, TimeBasedLinear, AllAtOnce
898
- # time_based_canary: {
899
- # canary_percentage: 1,
900
- # canary_interval: 1,
901
- # },
902
- # time_based_linear: {
903
- # linear_percentage: 1,
904
- # linear_interval: 1,
905
- # },
906
- # },
907
- # compute_platform: "Server", # accepts Server, Lambda, ECS
908
- # }
909
- #
910
714
  # @!attribute [rw] deployment_config_name
911
715
  # The name of the deployment configuration to create.
912
716
  # @return [String]
@@ -970,130 +774,6 @@ module Aws::CodeDeploy
970
774
 
971
775
  # Represents the input of a `CreateDeploymentGroup` operation.
972
776
  #
973
- # @note When making an API call, you may pass CreateDeploymentGroupInput
974
- # data as a hash:
975
- #
976
- # {
977
- # application_name: "ApplicationName", # required
978
- # deployment_group_name: "DeploymentGroupName", # required
979
- # deployment_config_name: "DeploymentConfigName",
980
- # ec2_tag_filters: [
981
- # {
982
- # key: "Key",
983
- # value: "Value",
984
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
985
- # },
986
- # ],
987
- # on_premises_instance_tag_filters: [
988
- # {
989
- # key: "Key",
990
- # value: "Value",
991
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
992
- # },
993
- # ],
994
- # auto_scaling_groups: ["AutoScalingGroupName"],
995
- # service_role_arn: "Role", # required
996
- # trigger_configurations: [
997
- # {
998
- # trigger_name: "TriggerName",
999
- # trigger_target_arn: "TriggerTargetArn",
1000
- # trigger_events: ["DeploymentStart"], # accepts DeploymentStart, DeploymentSuccess, DeploymentFailure, DeploymentStop, DeploymentRollback, DeploymentReady, InstanceStart, InstanceSuccess, InstanceFailure, InstanceReady
1001
- # },
1002
- # ],
1003
- # alarm_configuration: {
1004
- # enabled: false,
1005
- # ignore_poll_alarm_failure: false,
1006
- # alarms: [
1007
- # {
1008
- # name: "AlarmName",
1009
- # },
1010
- # ],
1011
- # },
1012
- # auto_rollback_configuration: {
1013
- # enabled: false,
1014
- # events: ["DEPLOYMENT_FAILURE"], # accepts DEPLOYMENT_FAILURE, DEPLOYMENT_STOP_ON_ALARM, DEPLOYMENT_STOP_ON_REQUEST
1015
- # },
1016
- # outdated_instances_strategy: "UPDATE", # accepts UPDATE, IGNORE
1017
- # deployment_style: {
1018
- # deployment_type: "IN_PLACE", # accepts IN_PLACE, BLUE_GREEN
1019
- # deployment_option: "WITH_TRAFFIC_CONTROL", # accepts WITH_TRAFFIC_CONTROL, WITHOUT_TRAFFIC_CONTROL
1020
- # },
1021
- # blue_green_deployment_configuration: {
1022
- # terminate_blue_instances_on_deployment_success: {
1023
- # action: "TERMINATE", # accepts TERMINATE, KEEP_ALIVE
1024
- # termination_wait_time_in_minutes: 1,
1025
- # },
1026
- # deployment_ready_option: {
1027
- # action_on_timeout: "CONTINUE_DEPLOYMENT", # accepts CONTINUE_DEPLOYMENT, STOP_DEPLOYMENT
1028
- # wait_time_in_minutes: 1,
1029
- # },
1030
- # green_fleet_provisioning_option: {
1031
- # action: "DISCOVER_EXISTING", # accepts DISCOVER_EXISTING, COPY_AUTO_SCALING_GROUP
1032
- # },
1033
- # },
1034
- # load_balancer_info: {
1035
- # elb_info_list: [
1036
- # {
1037
- # name: "ELBName",
1038
- # },
1039
- # ],
1040
- # target_group_info_list: [
1041
- # {
1042
- # name: "TargetGroupName",
1043
- # },
1044
- # ],
1045
- # target_group_pair_info_list: [
1046
- # {
1047
- # target_groups: [
1048
- # {
1049
- # name: "TargetGroupName",
1050
- # },
1051
- # ],
1052
- # prod_traffic_route: {
1053
- # listener_arns: ["ListenerArn"],
1054
- # },
1055
- # test_traffic_route: {
1056
- # listener_arns: ["ListenerArn"],
1057
- # },
1058
- # },
1059
- # ],
1060
- # },
1061
- # ec2_tag_set: {
1062
- # ec2_tag_set_list: [
1063
- # [
1064
- # {
1065
- # key: "Key",
1066
- # value: "Value",
1067
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
1068
- # },
1069
- # ],
1070
- # ],
1071
- # },
1072
- # ecs_services: [
1073
- # {
1074
- # service_name: "ECSServiceName",
1075
- # cluster_name: "ECSClusterName",
1076
- # },
1077
- # ],
1078
- # on_premises_tag_set: {
1079
- # on_premises_tag_set_list: [
1080
- # [
1081
- # {
1082
- # key: "Key",
1083
- # value: "Value",
1084
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
1085
- # },
1086
- # ],
1087
- # ],
1088
- # },
1089
- # tags: [
1090
- # {
1091
- # key: "Key",
1092
- # value: "Value",
1093
- # },
1094
- # ],
1095
- # }
1096
- #
1097
777
  # @!attribute [rw] application_name
1098
778
  # The name of an CodeDeploy application associated with the IAM user
1099
779
  # or Amazon Web Services account.
@@ -1262,75 +942,6 @@ module Aws::CodeDeploy
1262
942
 
1263
943
  # Represents the input of a `CreateDeployment` operation.
1264
944
  #
1265
- # @note When making an API call, you may pass CreateDeploymentInput
1266
- # data as a hash:
1267
- #
1268
- # {
1269
- # application_name: "ApplicationName", # required
1270
- # deployment_group_name: "DeploymentGroupName",
1271
- # revision: {
1272
- # revision_type: "S3", # accepts S3, GitHub, String, AppSpecContent
1273
- # s3_location: {
1274
- # bucket: "S3Bucket",
1275
- # key: "S3Key",
1276
- # bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
1277
- # version: "VersionId",
1278
- # e_tag: "ETag",
1279
- # },
1280
- # git_hub_location: {
1281
- # repository: "Repository",
1282
- # commit_id: "CommitId",
1283
- # },
1284
- # string: {
1285
- # content: "RawStringContent",
1286
- # sha256: "RawStringSha256",
1287
- # },
1288
- # app_spec_content: {
1289
- # content: "RawStringContent",
1290
- # sha256: "RawStringSha256",
1291
- # },
1292
- # },
1293
- # deployment_config_name: "DeploymentConfigName",
1294
- # description: "Description",
1295
- # ignore_application_stop_failures: false,
1296
- # target_instances: {
1297
- # tag_filters: [
1298
- # {
1299
- # key: "Key",
1300
- # value: "Value",
1301
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
1302
- # },
1303
- # ],
1304
- # auto_scaling_groups: ["AutoScalingGroupName"],
1305
- # ec2_tag_set: {
1306
- # ec2_tag_set_list: [
1307
- # [
1308
- # {
1309
- # key: "Key",
1310
- # value: "Value",
1311
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
1312
- # },
1313
- # ],
1314
- # ],
1315
- # },
1316
- # },
1317
- # auto_rollback_configuration: {
1318
- # enabled: false,
1319
- # events: ["DEPLOYMENT_FAILURE"], # accepts DEPLOYMENT_FAILURE, DEPLOYMENT_STOP_ON_ALARM, DEPLOYMENT_STOP_ON_REQUEST
1320
- # },
1321
- # update_outdated_instances_only: false,
1322
- # file_exists_behavior: "DISALLOW", # accepts DISALLOW, OVERWRITE, RETAIN
1323
- # override_alarm_configuration: {
1324
- # enabled: false,
1325
- # ignore_poll_alarm_failure: false,
1326
- # alarms: [
1327
- # {
1328
- # name: "AlarmName",
1329
- # },
1330
- # ],
1331
- # },
1332
- # }
1333
- #
1334
945
  # @!attribute [rw] application_name
1335
946
  # The name of an CodeDeploy application associated with the IAM user
1336
947
  # or Amazon Web Services account.
@@ -1475,13 +1086,6 @@ module Aws::CodeDeploy
1475
1086
 
1476
1087
  # Represents the input of a `DeleteApplication` operation.
1477
1088
  #
1478
- # @note When making an API call, you may pass DeleteApplicationInput
1479
- # data as a hash:
1480
- #
1481
- # {
1482
- # application_name: "ApplicationName", # required
1483
- # }
1484
- #
1485
1089
  # @!attribute [rw] application_name
1486
1090
  # The name of an CodeDeploy application associated with the IAM user
1487
1091
  # or Amazon Web Services account.
@@ -1497,13 +1101,6 @@ module Aws::CodeDeploy
1497
1101
 
1498
1102
  # Represents the input of a `DeleteDeploymentConfig` operation.
1499
1103
  #
1500
- # @note When making an API call, you may pass DeleteDeploymentConfigInput
1501
- # data as a hash:
1502
- #
1503
- # {
1504
- # deployment_config_name: "DeploymentConfigName", # required
1505
- # }
1506
- #
1507
1104
  # @!attribute [rw] deployment_config_name
1508
1105
  # The name of a deployment configuration associated with the IAM user
1509
1106
  # or Amazon Web Services account.
@@ -1519,14 +1116,6 @@ module Aws::CodeDeploy
1519
1116
 
1520
1117
  # Represents the input of a `DeleteDeploymentGroup` operation.
1521
1118
  #
1522
- # @note When making an API call, you may pass DeleteDeploymentGroupInput
1523
- # data as a hash:
1524
- #
1525
- # {
1526
- # application_name: "ApplicationName", # required
1527
- # deployment_group_name: "DeploymentGroupName", # required
1528
- # }
1529
- #
1530
1119
  # @!attribute [rw] application_name
1531
1120
  # The name of an CodeDeploy application associated with the IAM user
1532
1121
  # or Amazon Web Services account.
@@ -1567,13 +1156,6 @@ module Aws::CodeDeploy
1567
1156
 
1568
1157
  # Represents the input of a `DeleteGitHubAccount` operation.
1569
1158
  #
1570
- # @note When making an API call, you may pass DeleteGitHubAccountTokenInput
1571
- # data as a hash:
1572
- #
1573
- # {
1574
- # token_name: "GitHubAccountTokenName",
1575
- # }
1576
- #
1577
1159
  # @!attribute [rw] token_name
1578
1160
  # The name of the GitHub account connection to delete.
1579
1161
  # @return [String]
@@ -1600,13 +1182,6 @@ module Aws::CodeDeploy
1600
1182
  include Aws::Structure
1601
1183
  end
1602
1184
 
1603
- # @note When making an API call, you may pass DeleteResourcesByExternalIdInput
1604
- # data as a hash:
1605
- #
1606
- # {
1607
- # external_id: "ExternalId",
1608
- # }
1609
- #
1610
1185
  # @!attribute [rw] external_id
1611
1186
  # The unique ID of an external resource (for example, a CloudFormation
1612
1187
  # stack ID) that is linked to one or more CodeDeploy resources.
@@ -1973,13 +1548,13 @@ module Aws::CodeDeploy
1973
1548
  # @!attribute [rw] creator
1974
1549
  # The means by which the deployment was created:
1975
1550
  #
1976
- # * `user`\: A user created the deployment.
1551
+ # * `user`: A user created the deployment.
1977
1552
  #
1978
- # * `autoscaling`\: Amazon EC2 Auto Scaling created the deployment.
1553
+ # * `autoscaling`: Amazon EC2 Auto Scaling created the deployment.
1979
1554
  #
1980
- # * `codeDeployRollback`\: A rollback process created the deployment.
1555
+ # * `codeDeployRollback`: A rollback process created the deployment.
1981
1556
  #
1982
- # * `CodeDeployAutoUpdate`\: An auto-update process created the
1557
+ # * `CodeDeployAutoUpdate`: An auto-update process created the
1983
1558
  # deployment when it detected outdated Amazon EC2 instances.
1984
1559
  # @return [String]
1985
1560
  #
@@ -2063,14 +1638,14 @@ module Aws::CodeDeploy
2063
1638
  # a deployment target location but weren't part of the previous
2064
1639
  # successful deployment.
2065
1640
  #
2066
- # * `DISALLOW`\: The deployment fails. This is also the default
1641
+ # * `DISALLOW`: The deployment fails. This is also the default
2067
1642
  # behavior if no option is specified.
2068
1643
  #
2069
- # * `OVERWRITE`\: The version of the file from the application
2070
- # revision currently being deployed replaces the version already on
2071
- # the instance.
1644
+ # * `OVERWRITE`: The version of the file from the application revision
1645
+ # currently being deployed replaces the version already on the
1646
+ # instance.
2072
1647
  #
2073
- # * `RETAIN`\: The version of the file already on the instance is kept
1648
+ # * `RETAIN`: The version of the file already on the instance is kept
2074
1649
  # and used as part of the new deployment.
2075
1650
  # @return [String]
2076
1651
  #
@@ -2198,14 +1773,6 @@ module Aws::CodeDeploy
2198
1773
  # Information about how traffic is rerouted to instances in a
2199
1774
  # replacement environment in a blue/green deployment.
2200
1775
  #
2201
- # @note When making an API call, you may pass DeploymentReadyOption
2202
- # data as a hash:
2203
- #
2204
- # {
2205
- # action_on_timeout: "CONTINUE_DEPLOYMENT", # accepts CONTINUE_DEPLOYMENT, STOP_DEPLOYMENT
2206
- # wait_time_in_minutes: 1,
2207
- # }
2208
- #
2209
1776
  # @!attribute [rw] action_on_timeout
2210
1777
  # Information about when to reroute traffic from an original
2211
1778
  # environment to a replacement environment in a blue/green deployment.
@@ -2241,14 +1808,6 @@ module Aws::CodeDeploy
2241
1808
  # blue/green, you want to run and whether to route deployment traffic
2242
1809
  # behind a load balancer.
2243
1810
  #
2244
- # @note When making an API call, you may pass DeploymentStyle
2245
- # data as a hash:
2246
- #
2247
- # {
2248
- # deployment_type: "IN_PLACE", # accepts IN_PLACE, BLUE_GREEN
2249
- # deployment_option: "WITH_TRAFFIC_CONTROL", # accepts WITH_TRAFFIC_CONTROL, WITHOUT_TRAFFIC_CONTROL
2250
- # }
2251
- #
2252
1811
  # @!attribute [rw] deployment_type
2253
1812
  # Indicates whether to run an in-place deployment or a blue/green
2254
1813
  # deployment.
@@ -2331,13 +1890,6 @@ module Aws::CodeDeploy
2331
1890
 
2332
1891
  # Represents the input of a `DeregisterOnPremisesInstance` operation.
2333
1892
  #
2334
- # @note When making an API call, you may pass DeregisterOnPremisesInstanceInput
2335
- # data as a hash:
2336
- #
2337
- # {
2338
- # instance_name: "InstanceName", # required
2339
- # }
2340
- #
2341
1893
  # @!attribute [rw] instance_name
2342
1894
  # The name of the on-premises instance to deregister.
2343
1895
  # @return [String]
@@ -2407,15 +1959,6 @@ module Aws::CodeDeploy
2407
1959
 
2408
1960
  # Information about an EC2 tag filter.
2409
1961
  #
2410
- # @note When making an API call, you may pass EC2TagFilter
2411
- # data as a hash:
2412
- #
2413
- # {
2414
- # key: "Key",
2415
- # value: "Value",
2416
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
2417
- # }
2418
- #
2419
1962
  # @!attribute [rw] key
2420
1963
  # The tag filter key.
2421
1964
  # @return [String]
@@ -2427,11 +1970,11 @@ module Aws::CodeDeploy
2427
1970
  # @!attribute [rw] type
2428
1971
  # The tag filter type:
2429
1972
  #
2430
- # * `KEY_ONLY`\: Key only.
1973
+ # * `KEY_ONLY`: Key only.
2431
1974
  #
2432
- # * `VALUE_ONLY`\: Value only.
1975
+ # * `VALUE_ONLY`: Value only.
2433
1976
  #
2434
- # * `KEY_AND_VALUE`\: Key and value.
1977
+ # * `KEY_AND_VALUE`: Key and value.
2435
1978
  # @return [String]
2436
1979
  #
2437
1980
  # @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/EC2TagFilter AWS API Documentation
@@ -2446,21 +1989,6 @@ module Aws::CodeDeploy
2446
1989
 
2447
1990
  # Information about groups of Amazon EC2 instance tags.
2448
1991
  #
2449
- # @note When making an API call, you may pass EC2TagSet
2450
- # data as a hash:
2451
- #
2452
- # {
2453
- # ec2_tag_set_list: [
2454
- # [
2455
- # {
2456
- # key: "Key",
2457
- # value: "Value",
2458
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
2459
- # },
2460
- # ],
2461
- # ],
2462
- # }
2463
- #
2464
1992
  # @!attribute [rw] ec2_tag_set_list
2465
1993
  # A list that contains other lists of Amazon EC2 instance tag groups.
2466
1994
  # For an instance to be included in the deployment group, it must be
@@ -2478,14 +2006,6 @@ module Aws::CodeDeploy
2478
2006
  # Contains the service and cluster names used to identify an Amazon ECS
2479
2007
  # deployment's target.
2480
2008
  #
2481
- # @note When making an API call, you may pass ECSService
2482
- # data as a hash:
2483
- #
2484
- # {
2485
- # service_name: "ECSServiceName",
2486
- # cluster_name: "ECSClusterName",
2487
- # }
2488
- #
2489
2009
  # @!attribute [rw] service_name
2490
2010
  # The name of the target Amazon ECS service.
2491
2011
  # @return [String]
@@ -2594,12 +2114,12 @@ module Aws::CodeDeploy
2594
2114
  # @!attribute [rw] status
2595
2115
  # The status of the task set. There are three valid task set statuses:
2596
2116
  #
2597
- # * `PRIMARY`\: Indicates the task set is serving production traffic.
2117
+ # * `PRIMARY`: Indicates the task set is serving production traffic.
2598
2118
  #
2599
- # * `ACTIVE`\: Indicates the task set is not serving production
2119
+ # * `ACTIVE`: Indicates the task set is not serving production
2600
2120
  # traffic.
2601
2121
  #
2602
- # * `DRAINING`\: Indicates the tasks in the task set are being stopped
2122
+ # * `DRAINING`: Indicates the tasks in the task set are being stopped
2603
2123
  # and their corresponding targets are being deregistered from their
2604
2124
  # target group.
2605
2125
  # @return [String]
@@ -2637,13 +2157,6 @@ module Aws::CodeDeploy
2637
2157
  # a deployment. Instances are registered directly with a load balancer,
2638
2158
  # and traffic is routed to the load balancer.
2639
2159
  #
2640
- # @note When making an API call, you may pass ELBInfo
2641
- # data as a hash:
2642
- #
2643
- # {
2644
- # name: "ELBName",
2645
- # }
2646
- #
2647
2160
  # @!attribute [rw] name
2648
2161
  # For blue/green deployments, the name of the load balancer that is
2649
2162
  # used to route traffic from original instances to replacement
@@ -2765,13 +2278,6 @@ module Aws::CodeDeploy
2765
2278
 
2766
2279
  # Represents the input of a `GetApplication` operation.
2767
2280
  #
2768
- # @note When making an API call, you may pass GetApplicationInput
2769
- # data as a hash:
2770
- #
2771
- # {
2772
- # application_name: "ApplicationName", # required
2773
- # }
2774
- #
2775
2281
  # @!attribute [rw] application_name
2776
2282
  # The name of an CodeDeploy application associated with the IAM user
2777
2283
  # or Amazon Web Services account.
@@ -2801,35 +2307,6 @@ module Aws::CodeDeploy
2801
2307
 
2802
2308
  # Represents the input of a `GetApplicationRevision` operation.
2803
2309
  #
2804
- # @note When making an API call, you may pass GetApplicationRevisionInput
2805
- # data as a hash:
2806
- #
2807
- # {
2808
- # application_name: "ApplicationName", # required
2809
- # revision: { # required
2810
- # revision_type: "S3", # accepts S3, GitHub, String, AppSpecContent
2811
- # s3_location: {
2812
- # bucket: "S3Bucket",
2813
- # key: "S3Key",
2814
- # bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
2815
- # version: "VersionId",
2816
- # e_tag: "ETag",
2817
- # },
2818
- # git_hub_location: {
2819
- # repository: "Repository",
2820
- # commit_id: "CommitId",
2821
- # },
2822
- # string: {
2823
- # content: "RawStringContent",
2824
- # sha256: "RawStringSha256",
2825
- # },
2826
- # app_spec_content: {
2827
- # content: "RawStringContent",
2828
- # sha256: "RawStringSha256",
2829
- # },
2830
- # },
2831
- # }
2832
- #
2833
2310
  # @!attribute [rw] application_name
2834
2311
  # The name of the application that corresponds to the revision.
2835
2312
  # @return [String]
@@ -2875,13 +2352,6 @@ module Aws::CodeDeploy
2875
2352
 
2876
2353
  # Represents the input of a `GetDeploymentConfig` operation.
2877
2354
  #
2878
- # @note When making an API call, you may pass GetDeploymentConfigInput
2879
- # data as a hash:
2880
- #
2881
- # {
2882
- # deployment_config_name: "DeploymentConfigName", # required
2883
- # }
2884
- #
2885
2355
  # @!attribute [rw] deployment_config_name
2886
2356
  # The name of a deployment configuration associated with the IAM user
2887
2357
  # or Amazon Web Services account.
@@ -2911,14 +2381,6 @@ module Aws::CodeDeploy
2911
2381
 
2912
2382
  # Represents the input of a `GetDeploymentGroup` operation.
2913
2383
  #
2914
- # @note When making an API call, you may pass GetDeploymentGroupInput
2915
- # data as a hash:
2916
- #
2917
- # {
2918
- # application_name: "ApplicationName", # required
2919
- # deployment_group_name: "DeploymentGroupName", # required
2920
- # }
2921
- #
2922
2384
  # @!attribute [rw] application_name
2923
2385
  # The name of an CodeDeploy application associated with the IAM user
2924
2386
  # or Amazon Web Services account.
@@ -2953,13 +2415,6 @@ module Aws::CodeDeploy
2953
2415
 
2954
2416
  # Represents the input of a `GetDeployment` operation.
2955
2417
  #
2956
- # @note When making an API call, you may pass GetDeploymentInput
2957
- # data as a hash:
2958
- #
2959
- # {
2960
- # deployment_id: "DeploymentId", # required
2961
- # }
2962
- #
2963
2418
  # @!attribute [rw] deployment_id
2964
2419
  # The unique ID of a deployment associated with the IAM user or Amazon
2965
2420
  # Web Services account.
@@ -2975,14 +2430,6 @@ module Aws::CodeDeploy
2975
2430
 
2976
2431
  # Represents the input of a `GetDeploymentInstance` operation.
2977
2432
  #
2978
- # @note When making an API call, you may pass GetDeploymentInstanceInput
2979
- # data as a hash:
2980
- #
2981
- # {
2982
- # deployment_id: "DeploymentId", # required
2983
- # instance_id: "InstanceId", # required
2984
- # }
2985
- #
2986
2433
  # @!attribute [rw] deployment_id
2987
2434
  # The unique ID of a deployment.
2988
2435
  # @return [String]
@@ -3028,14 +2475,6 @@ module Aws::CodeDeploy
3028
2475
  include Aws::Structure
3029
2476
  end
3030
2477
 
3031
- # @note When making an API call, you may pass GetDeploymentTargetInput
3032
- # data as a hash:
3033
- #
3034
- # {
3035
- # deployment_id: "DeploymentId",
3036
- # target_id: "TargetId",
3037
- # }
3038
- #
3039
2478
  # @!attribute [rw] deployment_id
3040
2479
  # The unique ID of a deployment.
3041
2480
  # @return [String]
@@ -3071,13 +2510,6 @@ module Aws::CodeDeploy
3071
2510
 
3072
2511
  # Represents the input of a `GetOnPremisesInstance` operation.
3073
2512
  #
3074
- # @note When making an API call, you may pass GetOnPremisesInstanceInput
3075
- # data as a hash:
3076
- #
3077
- # {
3078
- # instance_name: "InstanceName", # required
3079
- # }
3080
- #
3081
2513
  # @!attribute [rw] instance_name
3082
2514
  # The name of the on-premises instance about which to get information.
3083
2515
  # @return [String]
@@ -3120,14 +2552,6 @@ module Aws::CodeDeploy
3120
2552
  # Information about the location of application artifacts stored in
3121
2553
  # GitHub.
3122
2554
  #
3123
- # @note When making an API call, you may pass GitHubLocation
3124
- # data as a hash:
3125
- #
3126
- # {
3127
- # repository: "Repository",
3128
- # commit_id: "CommitId",
3129
- # }
3130
- #
3131
2555
  # @!attribute [rw] repository
3132
2556
  # The GitHub account and repository pair that stores a reference to
3133
2557
  # the commit that represents the bundled artifacts for the application
@@ -3153,20 +2577,13 @@ module Aws::CodeDeploy
3153
2577
  # Information about the instances that belong to the replacement
3154
2578
  # environment in a blue/green deployment.
3155
2579
  #
3156
- # @note When making an API call, you may pass GreenFleetProvisioningOption
3157
- # data as a hash:
3158
- #
3159
- # {
3160
- # action: "DISCOVER_EXISTING", # accepts DISCOVER_EXISTING, COPY_AUTO_SCALING_GROUP
3161
- # }
3162
- #
3163
2580
  # @!attribute [rw] action
3164
2581
  # The method used to add instances to a replacement environment.
3165
2582
  #
3166
- # * `DISCOVER_EXISTING`\: Use instances that already exist or will be
2583
+ # * `DISCOVER_EXISTING`: Use instances that already exist or will be
3167
2584
  # created manually.
3168
2585
  #
3169
- # * `COPY_AUTO_SCALING_GROUP`\: Use settings from a specified Auto
2586
+ # * `COPY_AUTO_SCALING_GROUP`: Use settings from a specified Auto
3170
2587
  # Scaling group to define and create instances in a new Auto Scaling
3171
2588
  # group.
3172
2589
  # @return [String]
@@ -3301,17 +2718,17 @@ module Aws::CodeDeploy
3301
2718
  # @!attribute [rw] status
3302
2719
  # The deployment status for this instance:
3303
2720
  #
3304
- # * `Pending`\: The deployment is pending for this instance.
2721
+ # * `Pending`: The deployment is pending for this instance.
3305
2722
  #
3306
- # * `In Progress`\: The deployment is in progress for this instance.
2723
+ # * `In Progress`: The deployment is in progress for this instance.
3307
2724
  #
3308
- # * `Succeeded`\: The deployment has succeeded for this instance.
2725
+ # * `Succeeded`: The deployment has succeeded for this instance.
3309
2726
  #
3310
- # * `Failed`\: The deployment has failed for this instance.
2727
+ # * `Failed`: The deployment has failed for this instance.
3311
2728
  #
3312
- # * `Skipped`\: The deployment has been skipped for this instance.
2729
+ # * `Skipped`: The deployment has been skipped for this instance.
3313
2730
  #
3314
- # * `Unknown`\: The deployment status is unknown for this instance.
2731
+ # * `Unknown`: The deployment status is unknown for this instance.
3315
2732
  # @return [String]
3316
2733
  #
3317
2734
  # @!attribute [rw] last_updated_at
@@ -3967,19 +3384,6 @@ module Aws::CodeDeploy
3967
3384
 
3968
3385
  # Represents the input of a `ListApplicationRevisions` operation.
3969
3386
  #
3970
- # @note When making an API call, you may pass ListApplicationRevisionsInput
3971
- # data as a hash:
3972
- #
3973
- # {
3974
- # application_name: "ApplicationName", # required
3975
- # sort_by: "registerTime", # accepts registerTime, firstUsedTime, lastUsedTime
3976
- # sort_order: "ascending", # accepts ascending, descending
3977
- # s3_bucket: "S3Bucket",
3978
- # s3_key_prefix: "S3Key",
3979
- # deployed: "include", # accepts include, exclude, ignore
3980
- # next_token: "NextToken",
3981
- # }
3982
- #
3983
3387
  # @!attribute [rw] application_name
3984
3388
  # The name of an CodeDeploy application associated with the IAM user
3985
3389
  # or Amazon Web Services account.
@@ -3988,15 +3392,15 @@ module Aws::CodeDeploy
3988
3392
  # @!attribute [rw] sort_by
3989
3393
  # The column name to use to sort the list results:
3990
3394
  #
3991
- # * `registerTime`\: Sort by the time the revisions were registered
3395
+ # * `registerTime`: Sort by the time the revisions were registered
3992
3396
  # with CodeDeploy.
3993
3397
  #
3994
- # * `firstUsedTime`\: Sort by the time the revisions were first used
3995
- # in a deployment.
3996
- #
3997
- # * `lastUsedTime`\: Sort by the time the revisions were last used in
3398
+ # * `firstUsedTime`: Sort by the time the revisions were first used in
3998
3399
  # a deployment.
3999
3400
  #
3401
+ # * `lastUsedTime`: Sort by the time the revisions were last used in a
3402
+ # deployment.
3403
+ #
4000
3404
  # If not specified or set to null, the results are returned in an
4001
3405
  # arbitrary order.
4002
3406
  # @return [String]
@@ -4004,9 +3408,9 @@ module Aws::CodeDeploy
4004
3408
  # @!attribute [rw] sort_order
4005
3409
  # The order in which to sort the list results:
4006
3410
  #
4007
- # * `ascending`\: ascending order.
3411
+ # * `ascending`: ascending order.
4008
3412
  #
4009
- # * `descending`\: descending order.
3413
+ # * `descending`: descending order.
4010
3414
  #
4011
3415
  # If not specified, the results are sorted in ascending order.
4012
3416
  #
@@ -4028,13 +3432,13 @@ module Aws::CodeDeploy
4028
3432
  # Whether to list revisions based on whether the revision is the
4029
3433
  # target revision of a deployment group:
4030
3434
  #
4031
- # * `include`\: List revisions that are target revisions of a
3435
+ # * `include`: List revisions that are target revisions of a
4032
3436
  # deployment group.
4033
3437
  #
4034
- # * `exclude`\: Do not list revisions that are target revisions of a
3438
+ # * `exclude`: Do not list revisions that are target revisions of a
4035
3439
  # deployment group.
4036
3440
  #
4037
- # * `ignore`\: List all revisions.
3441
+ # * `ignore`: List all revisions.
4038
3442
  # @return [String]
4039
3443
  #
4040
3444
  # @!attribute [rw] next_token
@@ -4080,13 +3484,6 @@ module Aws::CodeDeploy
4080
3484
 
4081
3485
  # Represents the input of a `ListApplications` operation.
4082
3486
  #
4083
- # @note When making an API call, you may pass ListApplicationsInput
4084
- # data as a hash:
4085
- #
4086
- # {
4087
- # next_token: "NextToken",
4088
- # }
4089
- #
4090
3487
  # @!attribute [rw] next_token
4091
3488
  # An identifier returned from the previous list applications call. It
4092
3489
  # can be used to return the next set of applications in the list.
@@ -4123,13 +3520,6 @@ module Aws::CodeDeploy
4123
3520
 
4124
3521
  # Represents the input of a `ListDeploymentConfigs` operation.
4125
3522
  #
4126
- # @note When making an API call, you may pass ListDeploymentConfigsInput
4127
- # data as a hash:
4128
- #
4129
- # {
4130
- # next_token: "NextToken",
4131
- # }
4132
- #
4133
3523
  # @!attribute [rw] next_token
4134
3524
  # An identifier returned from the previous `ListDeploymentConfigs`
4135
3525
  # call. It can be used to return the next set of deployment
@@ -4169,14 +3559,6 @@ module Aws::CodeDeploy
4169
3559
 
4170
3560
  # Represents the input of a `ListDeploymentGroups` operation.
4171
3561
  #
4172
- # @note When making an API call, you may pass ListDeploymentGroupsInput
4173
- # data as a hash:
4174
- #
4175
- # {
4176
- # application_name: "ApplicationName", # required
4177
- # next_token: "NextToken",
4178
- # }
4179
- #
4180
3562
  # @!attribute [rw] application_name
4181
3563
  # The name of an CodeDeploy application associated with the IAM user
4182
3564
  # or Amazon Web Services account.
@@ -4225,16 +3607,6 @@ module Aws::CodeDeploy
4225
3607
 
4226
3608
  # Represents the input of a `ListDeploymentInstances` operation.
4227
3609
  #
4228
- # @note When making an API call, you may pass ListDeploymentInstancesInput
4229
- # data as a hash:
4230
- #
4231
- # {
4232
- # deployment_id: "DeploymentId", # required
4233
- # next_token: "NextToken",
4234
- # instance_status_filter: ["Pending"], # accepts Pending, InProgress, Succeeded, Failed, Skipped, Unknown, Ready
4235
- # instance_type_filter: ["Blue"], # accepts Blue, Green
4236
- # }
4237
- #
4238
3610
  # @!attribute [rw] deployment_id
4239
3611
  # The unique ID of a deployment.
4240
3612
  # @return [String]
@@ -4248,18 +3620,18 @@ module Aws::CodeDeploy
4248
3620
  # @!attribute [rw] instance_status_filter
4249
3621
  # A subset of instances to list by status:
4250
3622
  #
4251
- # * `Pending`\: Include those instances with pending deployments.
3623
+ # * `Pending`: Include those instances with pending deployments.
4252
3624
  #
4253
- # * `InProgress`\: Include those instances where deployments are still
3625
+ # * `InProgress`: Include those instances where deployments are still
4254
3626
  # in progress.
4255
3627
  #
4256
- # * `Succeeded`\: Include those instances with successful deployments.
3628
+ # * `Succeeded`: Include those instances with successful deployments.
4257
3629
  #
4258
- # * `Failed`\: Include those instances with failed deployments.
3630
+ # * `Failed`: Include those instances with failed deployments.
4259
3631
  #
4260
- # * `Skipped`\: Include those instances with skipped deployments.
3632
+ # * `Skipped`: Include those instances with skipped deployments.
4261
3633
  #
4262
- # * `Unknown`\: Include those instances with deployments in an unknown
3634
+ # * `Unknown`: Include those instances with deployments in an unknown
4263
3635
  # state.
4264
3636
  # @return [Array<String>]
4265
3637
  #
@@ -4302,17 +3674,6 @@ module Aws::CodeDeploy
4302
3674
  include Aws::Structure
4303
3675
  end
4304
3676
 
4305
- # @note When making an API call, you may pass ListDeploymentTargetsInput
4306
- # data as a hash:
4307
- #
4308
- # {
4309
- # deployment_id: "DeploymentId",
4310
- # next_token: "NextToken",
4311
- # target_filters: {
4312
- # "TargetStatus" => ["FilterValue"],
4313
- # },
4314
- # }
4315
- #
4316
3677
  # @!attribute [rw] deployment_id
4317
3678
  # The unique ID of a deployment.
4318
3679
  # @return [String]
@@ -4366,21 +3727,6 @@ module Aws::CodeDeploy
4366
3727
 
4367
3728
  # Represents the input of a `ListDeployments` operation.
4368
3729
  #
4369
- # @note When making an API call, you may pass ListDeploymentsInput
4370
- # data as a hash:
4371
- #
4372
- # {
4373
- # application_name: "ApplicationName",
4374
- # deployment_group_name: "DeploymentGroupName",
4375
- # external_id: "ExternalId",
4376
- # include_only_statuses: ["Created"], # accepts Created, Queued, InProgress, Baking, Succeeded, Failed, Stopped, Ready
4377
- # create_time_range: {
4378
- # start: Time.now,
4379
- # end: Time.now,
4380
- # },
4381
- # next_token: "NextToken",
4382
- # }
4383
- #
4384
3730
  # @!attribute [rw] application_name
4385
3731
  # The name of an CodeDeploy application associated with the IAM user
4386
3732
  # or Amazon Web Services account.
@@ -4410,19 +3756,18 @@ module Aws::CodeDeploy
4410
3756
  # @!attribute [rw] include_only_statuses
4411
3757
  # A subset of deployments to list by status:
4412
3758
  #
4413
- # * `Created`\: Include created deployments in the resulting list.
3759
+ # * `Created`: Include created deployments in the resulting list.
4414
3760
  #
4415
- # * `Queued`\: Include queued deployments in the resulting list.
3761
+ # * `Queued`: Include queued deployments in the resulting list.
4416
3762
  #
4417
- # * `In Progress`\: Include in-progress deployments in the resulting
3763
+ # * `In Progress`: Include in-progress deployments in the resulting
4418
3764
  # list.
4419
3765
  #
4420
- # * `Succeeded`\: Include successful deployments in the resulting
4421
- # list.
3766
+ # * `Succeeded`: Include successful deployments in the resulting list.
4422
3767
  #
4423
- # * `Failed`\: Include failed deployments in the resulting list.
3768
+ # * `Failed`: Include failed deployments in the resulting list.
4424
3769
  #
4425
- # * `Stopped`\: Include stopped deployments in the resulting list.
3770
+ # * `Stopped`: Include stopped deployments in the resulting list.
4426
3771
  # @return [Array<String>]
4427
3772
  #
4428
3773
  # @!attribute [rw] create_time_range
@@ -4471,13 +3816,6 @@ module Aws::CodeDeploy
4471
3816
 
4472
3817
  # Represents the input of a `ListGitHubAccountTokenNames` operation.
4473
3818
  #
4474
- # @note When making an API call, you may pass ListGitHubAccountTokenNamesInput
4475
- # data as a hash:
4476
- #
4477
- # {
4478
- # next_token: "NextToken",
4479
- # }
4480
- #
4481
3819
  # @!attribute [rw] next_token
4482
3820
  # An identifier returned from the previous
4483
3821
  # `ListGitHubAccountTokenNames` call. It can be used to return the
@@ -4516,28 +3854,13 @@ module Aws::CodeDeploy
4516
3854
 
4517
3855
  # Represents the input of a `ListOnPremisesInstances` operation.
4518
3856
  #
4519
- # @note When making an API call, you may pass ListOnPremisesInstancesInput
4520
- # data as a hash:
4521
- #
4522
- # {
4523
- # registration_status: "Registered", # accepts Registered, Deregistered
4524
- # tag_filters: [
4525
- # {
4526
- # key: "Key",
4527
- # value: "Value",
4528
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
4529
- # },
4530
- # ],
4531
- # next_token: "NextToken",
4532
- # }
4533
- #
4534
3857
  # @!attribute [rw] registration_status
4535
3858
  # The registration status of the on-premises instances:
4536
3859
  #
4537
- # * `Deregistered`\: Include deregistered on-premises instances in the
3860
+ # * `Deregistered`: Include deregistered on-premises instances in the
4538
3861
  # resulting list.
4539
3862
  #
4540
- # * `Registered`\: Include registered on-premises instances in the
3863
+ # * `Registered`: Include registered on-premises instances in the
4541
3864
  # resulting list.
4542
3865
  # @return [String]
4543
3866
  #
@@ -4583,14 +3906,6 @@ module Aws::CodeDeploy
4583
3906
  include Aws::Structure
4584
3907
  end
4585
3908
 
4586
- # @note When making an API call, you may pass ListTagsForResourceInput
4587
- # data as a hash:
4588
- #
4589
- # {
4590
- # resource_arn: "Arn", # required
4591
- # next_token: "NextToken",
4592
- # }
4593
- #
4594
3909
  # @!attribute [rw] resource_arn
4595
3910
  # The ARN of a CodeDeploy resource. `ListTagsForResource` returns all
4596
3911
  # the tags associated with the resource that is identified by the
@@ -4635,37 +3950,6 @@ module Aws::CodeDeploy
4635
3950
  # Information about the Elastic Load Balancing load balancer or target
4636
3951
  # group used in a deployment.
4637
3952
  #
4638
- # @note When making an API call, you may pass LoadBalancerInfo
4639
- # data as a hash:
4640
- #
4641
- # {
4642
- # elb_info_list: [
4643
- # {
4644
- # name: "ELBName",
4645
- # },
4646
- # ],
4647
- # target_group_info_list: [
4648
- # {
4649
- # name: "TargetGroupName",
4650
- # },
4651
- # ],
4652
- # target_group_pair_info_list: [
4653
- # {
4654
- # target_groups: [
4655
- # {
4656
- # name: "TargetGroupName",
4657
- # },
4658
- # ],
4659
- # prod_traffic_route: {
4660
- # listener_arns: ["ListenerArn"],
4661
- # },
4662
- # test_traffic_route: {
4663
- # listener_arns: ["ListenerArn"],
4664
- # },
4665
- # },
4666
- # ],
4667
- # }
4668
- #
4669
3953
  # @!attribute [rw] elb_info_list
4670
3954
  # An array that contains information about the load balancer to use
4671
3955
  # for load balancing in a deployment. In Elastic Load Balancing, load
@@ -4703,21 +3987,13 @@ module Aws::CodeDeploy
4703
3987
 
4704
3988
  # Information about minimum healthy instance.
4705
3989
  #
4706
- # @note When making an API call, you may pass MinimumHealthyHosts
4707
- # data as a hash:
4708
- #
4709
- # {
4710
- # type: "HOST_COUNT", # accepts HOST_COUNT, FLEET_PERCENT
4711
- # value: 1,
4712
- # }
4713
- #
4714
3990
  # @!attribute [rw] type
4715
3991
  # The minimum healthy instance type:
4716
3992
  #
4717
- # * `HOST_COUNT`\: The minimum number of healthy instances as an
3993
+ # * `HOST_COUNT`: The minimum number of healthy instances as an
4718
3994
  # absolute value.
4719
3995
  #
4720
- # * `FLEET_PERCENT`\: The minimum number of healthy instances as a
3996
+ # * `FLEET_PERCENT`: The minimum number of healthy instances as a
4721
3997
  # percentage of the total number of instances in the deployment.
4722
3998
  #
4723
3999
  # In an example of nine instances, if a HOST\_COUNT of six is
@@ -4771,21 +4047,6 @@ module Aws::CodeDeploy
4771
4047
 
4772
4048
  # Information about groups of on-premises instance tags.
4773
4049
  #
4774
- # @note When making an API call, you may pass OnPremisesTagSet
4775
- # data as a hash:
4776
- #
4777
- # {
4778
- # on_premises_tag_set_list: [
4779
- # [
4780
- # {
4781
- # key: "Key",
4782
- # value: "Value",
4783
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
4784
- # },
4785
- # ],
4786
- # ],
4787
- # }
4788
- #
4789
4050
  # @!attribute [rw] on_premises_tag_set_list
4790
4051
  # A list that contains other lists of on-premises instance tag groups.
4791
4052
  # For an instance to be included in the deployment group, it must be
@@ -4806,15 +4067,6 @@ module Aws::CodeDeploy
4806
4067
  #
4807
4068
  class OperationNotSupportedException < Aws::EmptyStructure; end
4808
4069
 
4809
- # @note When making an API call, you may pass PutLifecycleEventHookExecutionStatusInput
4810
- # data as a hash:
4811
- #
4812
- # {
4813
- # deployment_id: "DeploymentId",
4814
- # lifecycle_event_hook_execution_id: "LifecycleEventHookExecutionId",
4815
- # status: "Pending", # accepts Pending, InProgress, Succeeded, Failed, Skipped, Unknown
4816
- # }
4817
- #
4818
4070
  # @!attribute [rw] deployment_id
4819
4071
  # The unique ID of a deployment. Pass this ID to a Lambda function
4820
4072
  # that validates a deployment lifecycle event.
@@ -4860,14 +4112,6 @@ module Aws::CodeDeploy
4860
4112
  # JSON-formatted string. For Lambda deployments, the revision is the
4861
4113
  # same as the AppSpec file.
4862
4114
  #
4863
- # @note When making an API call, you may pass RawString
4864
- # data as a hash:
4865
- #
4866
- # {
4867
- # content: "RawStringContent",
4868
- # sha256: "RawStringSha256",
4869
- # }
4870
- #
4871
4115
  # @!attribute [rw] content
4872
4116
  # The YAML-formatted or JSON-formatted revision string. It includes
4873
4117
  # information about which Lambda function to update and optional
@@ -4889,36 +4133,6 @@ module Aws::CodeDeploy
4889
4133
 
4890
4134
  # Represents the input of a RegisterApplicationRevision operation.
4891
4135
  #
4892
- # @note When making an API call, you may pass RegisterApplicationRevisionInput
4893
- # data as a hash:
4894
- #
4895
- # {
4896
- # application_name: "ApplicationName", # required
4897
- # description: "Description",
4898
- # revision: { # required
4899
- # revision_type: "S3", # accepts S3, GitHub, String, AppSpecContent
4900
- # s3_location: {
4901
- # bucket: "S3Bucket",
4902
- # key: "S3Key",
4903
- # bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
4904
- # version: "VersionId",
4905
- # e_tag: "ETag",
4906
- # },
4907
- # git_hub_location: {
4908
- # repository: "Repository",
4909
- # commit_id: "CommitId",
4910
- # },
4911
- # string: {
4912
- # content: "RawStringContent",
4913
- # sha256: "RawStringSha256",
4914
- # },
4915
- # app_spec_content: {
4916
- # content: "RawStringContent",
4917
- # sha256: "RawStringSha256",
4918
- # },
4919
- # },
4920
- # }
4921
- #
4922
4136
  # @!attribute [rw] application_name
4923
4137
  # The name of an CodeDeploy application associated with the IAM user
4924
4138
  # or Amazon Web Services account.
@@ -4945,15 +4159,6 @@ module Aws::CodeDeploy
4945
4159
 
4946
4160
  # Represents the input of the register on-premises instance operation.
4947
4161
  #
4948
- # @note When making an API call, you may pass RegisterOnPremisesInstanceInput
4949
- # data as a hash:
4950
- #
4951
- # {
4952
- # instance_name: "InstanceName", # required
4953
- # iam_session_arn: "IamSessionArn",
4954
- # iam_user_arn: "IamUserArn",
4955
- # }
4956
- #
4957
4162
  # @!attribute [rw] instance_name
4958
4163
  # The name of the on-premises instance to register.
4959
4164
  # @return [String]
@@ -5001,19 +4206,6 @@ module Aws::CodeDeploy
5001
4206
  # Represents the input of a `RemoveTagsFromOnPremisesInstances`
5002
4207
  # operation.
5003
4208
  #
5004
- # @note When making an API call, you may pass RemoveTagsFromOnPremisesInstancesInput
5005
- # data as a hash:
5006
- #
5007
- # {
5008
- # tags: [ # required
5009
- # {
5010
- # key: "Key",
5011
- # value: "Value",
5012
- # },
5013
- # ],
5014
- # instance_names: ["InstanceName"], # required
5015
- # }
5016
- #
5017
4209
  # @!attribute [rw] tags
5018
4210
  # The tag key-value pairs to remove from the on-premises instances.
5019
4211
  # @return [Array<Types::Tag>]
@@ -5072,32 +4264,6 @@ module Aws::CodeDeploy
5072
4264
 
5073
4265
  # Information about the location of an application revision.
5074
4266
  #
5075
- # @note When making an API call, you may pass RevisionLocation
5076
- # data as a hash:
5077
- #
5078
- # {
5079
- # revision_type: "S3", # accepts S3, GitHub, String, AppSpecContent
5080
- # s3_location: {
5081
- # bucket: "S3Bucket",
5082
- # key: "S3Key",
5083
- # bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
5084
- # version: "VersionId",
5085
- # e_tag: "ETag",
5086
- # },
5087
- # git_hub_location: {
5088
- # repository: "Repository",
5089
- # commit_id: "CommitId",
5090
- # },
5091
- # string: {
5092
- # content: "RawStringContent",
5093
- # sha256: "RawStringSha256",
5094
- # },
5095
- # app_spec_content: {
5096
- # content: "RawStringContent",
5097
- # sha256: "RawStringSha256",
5098
- # },
5099
- # }
5100
- #
5101
4267
  # @!attribute [rw] revision_type
5102
4268
  # The type of application revision:
5103
4269
  #
@@ -5189,17 +4355,6 @@ module Aws::CodeDeploy
5189
4355
  # Information about the location of application artifacts stored in
5190
4356
  # Amazon S3.
5191
4357
  #
5192
- # @note When making an API call, you may pass S3Location
5193
- # data as a hash:
5194
- #
5195
- # {
5196
- # bucket: "S3Bucket",
5197
- # key: "S3Key",
5198
- # bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
5199
- # version: "VersionId",
5200
- # e_tag: "ETag",
5201
- # }
5202
- #
5203
4358
  # @!attribute [rw] bucket
5204
4359
  # The name of the Amazon S3 bucket where the application revision is
5205
4360
  # stored.
@@ -5214,11 +4369,11 @@ module Aws::CodeDeploy
5214
4369
  # The file type of the application revision. Must be one of the
5215
4370
  # following:
5216
4371
  #
5217
- # * `tar`\: A tar archive file.
4372
+ # * `tar`: A tar archive file.
5218
4373
  #
5219
- # * `tgz`\: A compressed tar archive file.
4374
+ # * `tgz`: A compressed tar archive file.
5220
4375
  #
5221
- # * `zip`\: A zip archive file.
4376
+ # * `zip`: A zip archive file.
5222
4377
  # @return [String]
5223
4378
  #
5224
4379
  # @!attribute [rw] version
@@ -5249,13 +4404,6 @@ module Aws::CodeDeploy
5249
4404
  include Aws::Structure
5250
4405
  end
5251
4406
 
5252
- # @note When making an API call, you may pass SkipWaitTimeForInstanceTerminationInput
5253
- # data as a hash:
5254
- #
5255
- # {
5256
- # deployment_id: "DeploymentId",
5257
- # }
5258
- #
5259
4407
  # @!attribute [rw] deployment_id
5260
4408
  # The unique ID of a blue/green deployment for which you want to skip
5261
4409
  # the instance termination wait time.
@@ -5271,14 +4419,6 @@ module Aws::CodeDeploy
5271
4419
 
5272
4420
  # Represents the input of a `StopDeployment` operation.
5273
4421
  #
5274
- # @note When making an API call, you may pass StopDeploymentInput
5275
- # data as a hash:
5276
- #
5277
- # {
5278
- # deployment_id: "DeploymentId", # required
5279
- # auto_rollback_enabled: false,
5280
- # }
5281
- #
5282
4422
  # @!attribute [rw] deployment_id
5283
4423
  # The unique ID of a deployment.
5284
4424
  # @return [String]
@@ -5323,14 +4463,6 @@ module Aws::CodeDeploy
5323
4463
 
5324
4464
  # Information about a tag.
5325
4465
  #
5326
- # @note When making an API call, you may pass Tag
5327
- # data as a hash:
5328
- #
5329
- # {
5330
- # key: "Key",
5331
- # value: "Value",
5332
- # }
5333
- #
5334
4466
  # @!attribute [rw] key
5335
4467
  # The tag's key.
5336
4468
  # @return [String]
@@ -5350,15 +4482,6 @@ module Aws::CodeDeploy
5350
4482
 
5351
4483
  # Information about an on-premises instance tag filter.
5352
4484
  #
5353
- # @note When making an API call, you may pass TagFilter
5354
- # data as a hash:
5355
- #
5356
- # {
5357
- # key: "Key",
5358
- # value: "Value",
5359
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
5360
- # }
5361
- #
5362
4485
  # @!attribute [rw] key
5363
4486
  # The on-premises instance tag filter key.
5364
4487
  # @return [String]
@@ -5399,19 +4522,6 @@ module Aws::CodeDeploy
5399
4522
  #
5400
4523
  class TagRequiredException < Aws::EmptyStructure; end
5401
4524
 
5402
- # @note When making an API call, you may pass TagResourceInput
5403
- # data as a hash:
5404
- #
5405
- # {
5406
- # resource_arn: "Arn", # required
5407
- # tags: [ # required
5408
- # {
5409
- # key: "Key",
5410
- # value: "Value",
5411
- # },
5412
- # ],
5413
- # }
5414
- #
5415
4525
  # @!attribute [rw] resource_arn
5416
4526
  # The ARN of a resource, such as a CodeDeploy application or
5417
4527
  # deployment group.
@@ -5446,13 +4556,6 @@ module Aws::CodeDeploy
5446
4556
  # deployment. Instances are registered as targets in a target group, and
5447
4557
  # traffic is routed to the target group.
5448
4558
  #
5449
- # @note When making an API call, you may pass TargetGroupInfo
5450
- # data as a hash:
5451
- #
5452
- # {
5453
- # name: "TargetGroupName",
5454
- # }
5455
- #
5456
4559
  # @!attribute [rw] name
5457
4560
  # For blue/green deployments, the name of the target group that
5458
4561
  # instances in the original environment are deregistered from, and
@@ -5475,23 +4578,6 @@ module Aws::CodeDeploy
5475
4578
  # an Amazon ECS deployment. An optional test traffic route can be
5476
4579
  # specified.
5477
4580
  #
5478
- # @note When making an API call, you may pass TargetGroupPairInfo
5479
- # data as a hash:
5480
- #
5481
- # {
5482
- # target_groups: [
5483
- # {
5484
- # name: "TargetGroupName",
5485
- # },
5486
- # ],
5487
- # prod_traffic_route: {
5488
- # listener_arns: ["ListenerArn"],
5489
- # },
5490
- # test_traffic_route: {
5491
- # listener_arns: ["ListenerArn"],
5492
- # },
5493
- # }
5494
- #
5495
4581
  # @!attribute [rw] target_groups
5496
4582
  # One pair of target groups. One is associated with the original task
5497
4583
  # set. The second is associated with the task set that serves traffic
@@ -5522,31 +4608,6 @@ module Aws::CodeDeploy
5522
4608
  # Information about the instances to be used in the replacement
5523
4609
  # environment in a blue/green deployment.
5524
4610
  #
5525
- # @note When making an API call, you may pass TargetInstances
5526
- # data as a hash:
5527
- #
5528
- # {
5529
- # tag_filters: [
5530
- # {
5531
- # key: "Key",
5532
- # value: "Value",
5533
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
5534
- # },
5535
- # ],
5536
- # auto_scaling_groups: ["AutoScalingGroupName"],
5537
- # ec2_tag_set: {
5538
- # ec2_tag_set_list: [
5539
- # [
5540
- # {
5541
- # key: "Key",
5542
- # value: "Value",
5543
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
5544
- # },
5545
- # ],
5546
- # ],
5547
- # },
5548
- # }
5549
- #
5550
4611
  # @!attribute [rw] tag_filters
5551
4612
  # The tag filter key, type, and value used to identify Amazon EC2
5552
4613
  # instances in a replacement environment for a blue/green deployment.
@@ -5586,14 +4647,6 @@ module Aws::CodeDeploy
5586
4647
  # original and target Lambda function versions or ECS task sets are
5587
4648
  # specified in the deployment's AppSpec file.
5588
4649
  #
5589
- # @note When making an API call, you may pass TimeBasedCanary
5590
- # data as a hash:
5591
- #
5592
- # {
5593
- # canary_percentage: 1,
5594
- # canary_interval: 1,
5595
- # }
5596
- #
5597
4650
  # @!attribute [rw] canary_percentage
5598
4651
  # The percentage of traffic to shift in the first increment of a
5599
4652
  # `TimeBasedCanary` deployment.
@@ -5619,14 +4672,6 @@ module Aws::CodeDeploy
5619
4672
  # Lambda function versions or ECS task sets are specified in the
5620
4673
  # deployment's AppSpec file.
5621
4674
  #
5622
- # @note When making an API call, you may pass TimeBasedLinear
5623
- # data as a hash:
5624
- #
5625
- # {
5626
- # linear_percentage: 1,
5627
- # linear_interval: 1,
5628
- # }
5629
- #
5630
4675
  # @!attribute [rw] linear_percentage
5631
4676
  # The percentage of traffic that is shifted at the start of each
5632
4677
  # increment of a `TimeBasedLinear` deployment.
@@ -5648,14 +4693,6 @@ module Aws::CodeDeploy
5648
4693
 
5649
4694
  # Information about a time range.
5650
4695
  #
5651
- # @note When making an API call, you may pass TimeRange
5652
- # data as a hash:
5653
- #
5654
- # {
5655
- # start: Time.now,
5656
- # end: Time.now,
5657
- # }
5658
- #
5659
4696
  # @!attribute [rw] start
5660
4697
  # The start time of the time range.
5661
4698
  #
@@ -5685,13 +4722,6 @@ module Aws::CodeDeploy
5685
4722
  # route traffic that is received from the load balancer to a target
5686
4723
  # group.
5687
4724
  #
5688
- # @note When making an API call, you may pass TrafficRoute
5689
- # data as a hash:
5690
- #
5691
- # {
5692
- # listener_arns: ["ListenerArn"],
5693
- # }
5694
- #
5695
4725
  # @!attribute [rw] listener_arns
5696
4726
  # The Amazon Resource Name (ARN) of one listener. The listener
5697
4727
  # identifies the route between a target group and a load balancer.
@@ -5711,21 +4741,6 @@ module Aws::CodeDeploy
5711
4741
  # deployment, or from one Amazon ECS task set to another during an
5712
4742
  # Amazon ECS deployment.
5713
4743
  #
5714
- # @note When making an API call, you may pass TrafficRoutingConfig
5715
- # data as a hash:
5716
- #
5717
- # {
5718
- # type: "TimeBasedCanary", # accepts TimeBasedCanary, TimeBasedLinear, AllAtOnce
5719
- # time_based_canary: {
5720
- # canary_percentage: 1,
5721
- # canary_interval: 1,
5722
- # },
5723
- # time_based_linear: {
5724
- # linear_percentage: 1,
5725
- # linear_interval: 1,
5726
- # },
5727
- # }
5728
- #
5729
4744
  # @!attribute [rw] type
5730
4745
  # The type of traffic shifting (`TimeBasedCanary` or
5731
4746
  # `TimeBasedLinear`) used by a deployment configuration.
@@ -5758,15 +4773,6 @@ module Aws::CodeDeploy
5758
4773
 
5759
4774
  # Information about notification triggers for the deployment group.
5760
4775
  #
5761
- # @note When making an API call, you may pass TriggerConfig
5762
- # data as a hash:
5763
- #
5764
- # {
5765
- # trigger_name: "TriggerName",
5766
- # trigger_target_arn: "TriggerTargetArn",
5767
- # trigger_events: ["DeploymentStart"], # accepts DeploymentStart, DeploymentSuccess, DeploymentFailure, DeploymentStop, DeploymentRollback, DeploymentReady, InstanceStart, InstanceSuccess, InstanceFailure, InstanceReady
5768
- # }
5769
- #
5770
4776
  # @!attribute [rw] trigger_name
5771
4777
  # The name of the notification trigger.
5772
4778
  # @return [String]
@@ -5804,14 +4810,6 @@ module Aws::CodeDeploy
5804
4810
  #
5805
4811
  class UnsupportedActionForDeploymentTypeException < Aws::EmptyStructure; end
5806
4812
 
5807
- # @note When making an API call, you may pass UntagResourceInput
5808
- # data as a hash:
5809
- #
5810
- # {
5811
- # resource_arn: "Arn", # required
5812
- # tag_keys: ["Key"], # required
5813
- # }
5814
- #
5815
4813
  # @!attribute [rw] resource_arn
5816
4814
  # The Amazon Resource Name (ARN) that specifies from which resource to
5817
4815
  # disassociate the tags with the keys in the `TagKeys` input
@@ -5839,14 +4837,6 @@ module Aws::CodeDeploy
5839
4837
 
5840
4838
  # Represents the input of an `UpdateApplication` operation.
5841
4839
  #
5842
- # @note When making an API call, you may pass UpdateApplicationInput
5843
- # data as a hash:
5844
- #
5845
- # {
5846
- # application_name: "ApplicationName",
5847
- # new_application_name: "ApplicationName",
5848
- # }
5849
- #
5850
4840
  # @!attribute [rw] application_name
5851
4841
  # The current name of the application you want to change.
5852
4842
  # @return [String]
@@ -5866,125 +4856,6 @@ module Aws::CodeDeploy
5866
4856
 
5867
4857
  # Represents the input of an `UpdateDeploymentGroup` operation.
5868
4858
  #
5869
- # @note When making an API call, you may pass UpdateDeploymentGroupInput
5870
- # data as a hash:
5871
- #
5872
- # {
5873
- # application_name: "ApplicationName", # required
5874
- # current_deployment_group_name: "DeploymentGroupName", # required
5875
- # new_deployment_group_name: "DeploymentGroupName",
5876
- # deployment_config_name: "DeploymentConfigName",
5877
- # ec2_tag_filters: [
5878
- # {
5879
- # key: "Key",
5880
- # value: "Value",
5881
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
5882
- # },
5883
- # ],
5884
- # on_premises_instance_tag_filters: [
5885
- # {
5886
- # key: "Key",
5887
- # value: "Value",
5888
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
5889
- # },
5890
- # ],
5891
- # auto_scaling_groups: ["AutoScalingGroupName"],
5892
- # service_role_arn: "Role",
5893
- # trigger_configurations: [
5894
- # {
5895
- # trigger_name: "TriggerName",
5896
- # trigger_target_arn: "TriggerTargetArn",
5897
- # trigger_events: ["DeploymentStart"], # accepts DeploymentStart, DeploymentSuccess, DeploymentFailure, DeploymentStop, DeploymentRollback, DeploymentReady, InstanceStart, InstanceSuccess, InstanceFailure, InstanceReady
5898
- # },
5899
- # ],
5900
- # alarm_configuration: {
5901
- # enabled: false,
5902
- # ignore_poll_alarm_failure: false,
5903
- # alarms: [
5904
- # {
5905
- # name: "AlarmName",
5906
- # },
5907
- # ],
5908
- # },
5909
- # auto_rollback_configuration: {
5910
- # enabled: false,
5911
- # events: ["DEPLOYMENT_FAILURE"], # accepts DEPLOYMENT_FAILURE, DEPLOYMENT_STOP_ON_ALARM, DEPLOYMENT_STOP_ON_REQUEST
5912
- # },
5913
- # outdated_instances_strategy: "UPDATE", # accepts UPDATE, IGNORE
5914
- # deployment_style: {
5915
- # deployment_type: "IN_PLACE", # accepts IN_PLACE, BLUE_GREEN
5916
- # deployment_option: "WITH_TRAFFIC_CONTROL", # accepts WITH_TRAFFIC_CONTROL, WITHOUT_TRAFFIC_CONTROL
5917
- # },
5918
- # blue_green_deployment_configuration: {
5919
- # terminate_blue_instances_on_deployment_success: {
5920
- # action: "TERMINATE", # accepts TERMINATE, KEEP_ALIVE
5921
- # termination_wait_time_in_minutes: 1,
5922
- # },
5923
- # deployment_ready_option: {
5924
- # action_on_timeout: "CONTINUE_DEPLOYMENT", # accepts CONTINUE_DEPLOYMENT, STOP_DEPLOYMENT
5925
- # wait_time_in_minutes: 1,
5926
- # },
5927
- # green_fleet_provisioning_option: {
5928
- # action: "DISCOVER_EXISTING", # accepts DISCOVER_EXISTING, COPY_AUTO_SCALING_GROUP
5929
- # },
5930
- # },
5931
- # load_balancer_info: {
5932
- # elb_info_list: [
5933
- # {
5934
- # name: "ELBName",
5935
- # },
5936
- # ],
5937
- # target_group_info_list: [
5938
- # {
5939
- # name: "TargetGroupName",
5940
- # },
5941
- # ],
5942
- # target_group_pair_info_list: [
5943
- # {
5944
- # target_groups: [
5945
- # {
5946
- # name: "TargetGroupName",
5947
- # },
5948
- # ],
5949
- # prod_traffic_route: {
5950
- # listener_arns: ["ListenerArn"],
5951
- # },
5952
- # test_traffic_route: {
5953
- # listener_arns: ["ListenerArn"],
5954
- # },
5955
- # },
5956
- # ],
5957
- # },
5958
- # ec2_tag_set: {
5959
- # ec2_tag_set_list: [
5960
- # [
5961
- # {
5962
- # key: "Key",
5963
- # value: "Value",
5964
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
5965
- # },
5966
- # ],
5967
- # ],
5968
- # },
5969
- # ecs_services: [
5970
- # {
5971
- # service_name: "ECSServiceName",
5972
- # cluster_name: "ECSClusterName",
5973
- # },
5974
- # ],
5975
- # on_premises_tag_set: {
5976
- # on_premises_tag_set_list: [
5977
- # [
5978
- # {
5979
- # key: "Key",
5980
- # value: "Value",
5981
- # type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
5982
- # },
5983
- # ],
5984
- # ],
5985
- # },
5986
- # }
5987
- #
5988
4859
  # @!attribute [rw] application_name
5989
4860
  # The application name that corresponds to the deployment group to
5990
4861
  # update.