aws-sdk 2.1004.0 → 2.1008.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +24 -1
  2. package/README.md +1 -1
  3. package/apis/autoscaling-2011-01-01.min.json +62 -56
  4. package/apis/ec2-2016-11-15.min.json +813 -781
  5. package/apis/elasticloadbalancingv2-2015-12-01.min.json +32 -26
  6. package/apis/frauddetector-2019-11-15.min.json +358 -75
  7. package/apis/frauddetector-2019-11-15.paginators.json +5 -0
  8. package/apis/kinesisanalyticsv2-2018-05-23.min.json +3 -6
  9. package/apis/medialive-2017-10-14.min.json +297 -227
  10. package/apis/mediatailor-2018-04-23.min.json +288 -75
  11. package/apis/mediatailor-2018-04-23.paginators.json +6 -0
  12. package/apis/robomaker-2018-06-29.min.json +213 -200
  13. package/apis/sagemaker-2017-07-24.min.json +1 -2
  14. package/apis/storagegateway-2013-06-30.min.json +53 -9
  15. package/apis/workmail-2017-10-01.min.json +156 -27
  16. package/apis/workmail-2017-10-01.paginators.json +5 -0
  17. package/clients/autoscaling.d.ts +12 -8
  18. package/clients/configservice.d.ts +1 -1
  19. package/clients/ec2.d.ts +128 -86
  20. package/clients/ecs.d.ts +4 -4
  21. package/clients/elbv2.d.ts +18 -1
  22. package/clients/frauddetector.d.ts +434 -26
  23. package/clients/kinesisanalyticsv2.d.ts +30 -30
  24. package/clients/medialive.d.ts +76 -5
  25. package/clients/mediatailor.d.ts +224 -0
  26. package/clients/robomaker.d.ts +54 -9
  27. package/clients/sagemaker.d.ts +2 -2
  28. package/clients/storagegateway.d.ts +85 -33
  29. package/clients/workmail.d.ts +171 -7
  30. package/dist/aws-sdk-core-react-native.js +1 -1
  31. package/dist/aws-sdk-react-native.js +15 -15
  32. package/dist/aws-sdk.js +963 -875
  33. package/dist/aws-sdk.min.js +70 -70
  34. package/lib/core.js +1 -1
  35. package/package.json +1 -1
package/clients/ecs.d.ts CHANGED
@@ -1209,7 +1209,7 @@ declare namespace ECS {
1209
1209
  */
1210
1210
  enableECSManagedTags?: Boolean;
1211
1211
  /**
1212
- * Specifies whether to propagate the tags from the task definition or the service to the tasks in the service. If no value is specified, the tags are not propagated. Tags can only be propagated to the tasks within the service during service creation. To add tags to a task after service creation, use the TagResource API action.
1212
+ * Specifies whether to propagate the tags from the task definition or the service to the tasks in the service. If no value is specified, the tags are not propagated. Tags can only be propagated to the tasks within the service during service creation. To add tags to a task after service creation or task creation, use the TagResource API action.
1213
1213
  */
1214
1214
  propagateTags?: PropagateTags;
1215
1215
  /**
@@ -2856,7 +2856,7 @@ declare namespace ECS {
2856
2856
  */
2857
2857
  tags?: Tags;
2858
2858
  /**
2859
- * The family and revision (family:revision) or full ARN of the task definition to run. If a revision is not specified, the latest ACTIVE revision is used.
2859
+ * The family and revision (family:revision) or full ARN of the task definition to run. If a revision is not specified, the latest ACTIVE revision is used. The full ARN value must match the value that you specified ias the Resource of the IAM principal's permissions policy. For example, if the Resource is arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*, the taskDefinition ARN value must be arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName.
2860
2860
  */
2861
2861
  taskDefinition: String;
2862
2862
  }
@@ -3580,7 +3580,7 @@ declare namespace ECS {
3580
3580
  */
3581
3581
  inferenceAcceleratorOverrides?: InferenceAcceleratorOverrides;
3582
3582
  /**
3583
- * The Amazon Resource Name (ARN) of the task execution IAM role override for the task.
3583
+ * The Amazon Resource Name (ARN) of the task execution IAM role override for the task. For more information, see Amazon ECS task execution IAM role in the Amazon Elastic Container Service Developer Guide.
3584
3584
  */
3585
3585
  executionRoleArn?: String;
3586
3586
  /**
@@ -3588,7 +3588,7 @@ declare namespace ECS {
3588
3588
  */
3589
3589
  memory?: String;
3590
3590
  /**
3591
- * The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume. All containers in this task are granted the permissions that are specified in this role.
3591
+ * The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume. All containers in this task are granted the permissions that are specified in this role. For more information, see IAM Role for Tasks in the Amazon Elastic Container Service Developer Guide.
3592
3592
  */
3593
3593
  taskRoleArn?: String;
3594
3594
  /**
@@ -725,6 +725,10 @@ declare namespace ELBv2 {
725
725
  * The tags to assign to the target group.
726
726
  */
727
727
  Tags?: TagList;
728
+ /**
729
+ * The type of IP address used for this target group. The possible values are ipv4 and ipv6. This is an optional parameter. If not specified, the IP address type defaults to ipv4.
730
+ */
731
+ IpAddressType?: TargetGroupIpAddressTypeEnum;
728
732
  }
729
733
  export interface CreateTargetGroupOutput {
730
734
  /**
@@ -933,6 +937,10 @@ declare namespace ELBv2 {
933
937
  * The maximum number of results to return with this call.
934
938
  */
935
939
  PageSize?: PageSize;
940
+ /**
941
+ * The type of load balancer. The default lists the SSL policies for all load balancers.
942
+ */
943
+ LoadBalancerType?: LoadBalancerTypeEnum;
936
944
  }
937
945
  export interface DescribeSSLPoliciesOutput {
938
946
  /**
@@ -1234,7 +1242,7 @@ declare namespace ELBv2 {
1234
1242
  export type Marker = string;
1235
1243
  export interface Matcher {
1236
1244
  /**
1237
- * For Application Load Balancers, you can specify values between 200 and 499, and the default value is 200. You can specify multiple values (for example, "200,202") or a range of values (for example, "200-299"). For Network Load Balancers and Gateway Load Balancers, this must be "200–399".
1245
+ * For Application Load Balancers, you can specify values between 200 and 499, and the default value is 200. You can specify multiple values (for example, "200,202") or a range of values (for example, "200-299"). For Network Load Balancers and Gateway Load Balancers, this must be "200–399". Note that when using shorthand syntax, some values such as commas need to be escaped.
1238
1246
  */
1239
1247
  HttpCode?: HttpCode;
1240
1248
  /**
@@ -1646,6 +1654,10 @@ declare namespace ELBv2 {
1646
1654
  * The name of the policy.
1647
1655
  */
1648
1656
  Name?: SslPolicyName;
1657
+ /**
1658
+ * The supported load balancers.
1659
+ */
1660
+ SupportedLoadBalancerTypes?: ListOfString;
1649
1661
  }
1650
1662
  export type SslPolicyName = string;
1651
1663
  export type SslPolicyNames = SslPolicyName[];
@@ -1784,6 +1796,10 @@ declare namespace ELBv2 {
1784
1796
  * [HTTP/HTTPS protocol] The protocol version. The possible values are GRPC, HTTP1, and HTTP2.
1785
1797
  */
1786
1798
  ProtocolVersion?: ProtocolVersion;
1799
+ /**
1800
+ * The type of IP address used for this target group. The possible values are ipv4 and ipv6. This is an optional parameter. If not specified, the IP address type defaults to ipv4.
1801
+ */
1802
+ IpAddressType?: TargetGroupIpAddressTypeEnum;
1787
1803
  }
1788
1804
  export type TargetGroupArn = string;
1789
1805
  export type TargetGroupArns = TargetGroupArn[];
@@ -1800,6 +1816,7 @@ declare namespace ELBv2 {
1800
1816
  export type TargetGroupAttributeKey = string;
1801
1817
  export type TargetGroupAttributeValue = string;
1802
1818
  export type TargetGroupAttributes = TargetGroupAttribute[];
1819
+ export type TargetGroupIpAddressTypeEnum = "ipv4"|"ipv6"|string;
1803
1820
  export type TargetGroupList = TargetGroupTuple[];
1804
1821
  export type TargetGroupName = string;
1805
1822
  export type TargetGroupNames = TargetGroupName[];