cdk-docker-image-deployment 0.0.197 → 0.0.199

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 (34) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +14 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.examples.json +155 -0
  8. package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.min.json +70 -1
  9. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +141 -50
  10. package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +160 -57
  11. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1032 -794
  12. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +8 -4
  13. package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +389 -45
  14. package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +24 -0
  15. package/node_modules/aws-sdk/apis/neptune-2014-10-31.min.json +130 -103
  16. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.min.json +8 -1
  17. package/node_modules/aws-sdk/apis/workdocs-2016-05-01.min.json +234 -32
  18. package/node_modules/aws-sdk/apis/workdocs-2016-05-01.paginators.json +42 -0
  19. package/node_modules/aws-sdk/clients/applicationautoscaling.d.ts +88 -11
  20. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +70 -0
  21. package/node_modules/aws-sdk/clients/cleanrooms.d.ts +82 -1
  22. package/node_modules/aws-sdk/clients/ec2.d.ts +257 -24
  23. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +9 -1
  24. package/node_modules/aws-sdk/clients/mgn.d.ts +472 -1
  25. package/node_modules/aws-sdk/clients/neptune.d.ts +39 -1
  26. package/node_modules/aws-sdk/clients/s3outposts.d.ts +17 -1
  27. package/node_modules/aws-sdk/clients/workdocs.d.ts +196 -0
  28. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  29. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -12
  30. package/node_modules/aws-sdk/dist/aws-sdk.js +1381 -830
  31. package/node_modules/aws-sdk/dist/aws-sdk.min.js +98 -98
  32. package/node_modules/aws-sdk/lib/core.js +1 -1
  33. package/node_modules/aws-sdk/package.json +1 -1
  34. package/package.json +7 -7
@@ -68,29 +68,53 @@ declare class ApplicationAutoScaling extends Service {
68
68
  */
69
69
  describeScheduledActions(callback?: (err: AWSError, data: ApplicationAutoScaling.Types.DescribeScheduledActionsResponse) => void): Request<ApplicationAutoScaling.Types.DescribeScheduledActionsResponse, AWSError>;
70
70
  /**
71
- * Creates or updates a scaling policy for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scaling policy applies to the scalable target identified by those three attributes. You cannot create a scaling policy until you have registered the resource as a scalable target. Multiple scaling policies can be in force at the same time for the same scalable target. You can have one or more target tracking scaling policies, one or more step scaling policies, or both. However, there is a chance that multiple policies could conflict, instructing the scalable target to scale out or in at the same time. Application Auto Scaling gives precedence to the policy that provides the largest capacity for both scale out and scale in. For example, if one policy increases capacity by 3, another policy increases capacity by 200 percent, and the current capacity is 10, Application Auto Scaling uses the policy with the highest calculated capacity (200% of 10 = 20) and scales out to 30. We recommend caution, however, when using target tracking scaling policies with step scaling policies because conflicts between these policies can cause undesirable behavior. For example, if the step scaling policy initiates a scale-in activity before the target tracking policy is ready to scale in, the scale-in activity will not be blocked. After the scale-in activity completes, the target tracking policy could instruct the scalable target to scale out again. For more information, see Target tracking scaling policies and Step scaling policies in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to execute scaling policies. Any scaling policies that were specified for the scalable target are deleted.
71
+ * Returns all the tags on the specified Application Auto Scaling scalable target. For general information about tags, including the format and syntax, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference.
72
+ */
73
+ listTagsForResource(params: ApplicationAutoScaling.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: ApplicationAutoScaling.Types.ListTagsForResourceResponse) => void): Request<ApplicationAutoScaling.Types.ListTagsForResourceResponse, AWSError>;
74
+ /**
75
+ * Returns all the tags on the specified Application Auto Scaling scalable target. For general information about tags, including the format and syntax, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference.
76
+ */
77
+ listTagsForResource(callback?: (err: AWSError, data: ApplicationAutoScaling.Types.ListTagsForResourceResponse) => void): Request<ApplicationAutoScaling.Types.ListTagsForResourceResponse, AWSError>;
78
+ /**
79
+ * Creates or updates a scaling policy for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scaling policy applies to the scalable target identified by those three attributes. You cannot create a scaling policy until you have registered the resource as a scalable target. Multiple scaling policies can be in force at the same time for the same scalable target. You can have one or more target tracking scaling policies, one or more step scaling policies, or both. However, there is a chance that multiple policies could conflict, instructing the scalable target to scale out or in at the same time. Application Auto Scaling gives precedence to the policy that provides the largest capacity for both scale out and scale in. For example, if one policy increases capacity by 3, another policy increases capacity by 200 percent, and the current capacity is 10, Application Auto Scaling uses the policy with the highest calculated capacity (200% of 10 = 20) and scales out to 30. We recommend caution, however, when using target tracking scaling policies with step scaling policies because conflicts between these policies can cause undesirable behavior. For example, if the step scaling policy initiates a scale-in activity before the target tracking policy is ready to scale in, the scale-in activity will not be blocked. After the scale-in activity completes, the target tracking policy could instruct the scalable target to scale out again. For more information, see Target tracking scaling policies and Step scaling policies in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to use scaling policies. Any scaling policies that were specified for the scalable target are deleted.
72
80
  */
73
81
  putScalingPolicy(params: ApplicationAutoScaling.Types.PutScalingPolicyRequest, callback?: (err: AWSError, data: ApplicationAutoScaling.Types.PutScalingPolicyResponse) => void): Request<ApplicationAutoScaling.Types.PutScalingPolicyResponse, AWSError>;
74
82
  /**
75
- * Creates or updates a scaling policy for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scaling policy applies to the scalable target identified by those three attributes. You cannot create a scaling policy until you have registered the resource as a scalable target. Multiple scaling policies can be in force at the same time for the same scalable target. You can have one or more target tracking scaling policies, one or more step scaling policies, or both. However, there is a chance that multiple policies could conflict, instructing the scalable target to scale out or in at the same time. Application Auto Scaling gives precedence to the policy that provides the largest capacity for both scale out and scale in. For example, if one policy increases capacity by 3, another policy increases capacity by 200 percent, and the current capacity is 10, Application Auto Scaling uses the policy with the highest calculated capacity (200% of 10 = 20) and scales out to 30. We recommend caution, however, when using target tracking scaling policies with step scaling policies because conflicts between these policies can cause undesirable behavior. For example, if the step scaling policy initiates a scale-in activity before the target tracking policy is ready to scale in, the scale-in activity will not be blocked. After the scale-in activity completes, the target tracking policy could instruct the scalable target to scale out again. For more information, see Target tracking scaling policies and Step scaling policies in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to execute scaling policies. Any scaling policies that were specified for the scalable target are deleted.
83
+ * Creates or updates a scaling policy for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scaling policy applies to the scalable target identified by those three attributes. You cannot create a scaling policy until you have registered the resource as a scalable target. Multiple scaling policies can be in force at the same time for the same scalable target. You can have one or more target tracking scaling policies, one or more step scaling policies, or both. However, there is a chance that multiple policies could conflict, instructing the scalable target to scale out or in at the same time. Application Auto Scaling gives precedence to the policy that provides the largest capacity for both scale out and scale in. For example, if one policy increases capacity by 3, another policy increases capacity by 200 percent, and the current capacity is 10, Application Auto Scaling uses the policy with the highest calculated capacity (200% of 10 = 20) and scales out to 30. We recommend caution, however, when using target tracking scaling policies with step scaling policies because conflicts between these policies can cause undesirable behavior. For example, if the step scaling policy initiates a scale-in activity before the target tracking policy is ready to scale in, the scale-in activity will not be blocked. After the scale-in activity completes, the target tracking policy could instruct the scalable target to scale out again. For more information, see Target tracking scaling policies and Step scaling policies in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to use scaling policies. Any scaling policies that were specified for the scalable target are deleted.
76
84
  */
77
85
  putScalingPolicy(callback?: (err: AWSError, data: ApplicationAutoScaling.Types.PutScalingPolicyResponse) => void): Request<ApplicationAutoScaling.Types.PutScalingPolicyResponse, AWSError>;
78
86
  /**
79
- * Creates or updates a scheduled action for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scheduled action applies to the scalable target identified by those three attributes. You cannot create a scheduled action until you have registered the resource as a scalable target. When start and end times are specified with a recurring schedule using a cron expression or rates, they form the boundaries for when the recurring action starts and stops. To update a scheduled action, specify the parameters that you want to change. If you don't specify start and end times, the old values are deleted. For more information, see Scheduled scaling in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to run scheduled actions. Any scheduled actions that were specified for the scalable target are deleted.
87
+ * Creates or updates a scheduled action for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scheduled action applies to the scalable target identified by those three attributes. You cannot create a scheduled action until you have registered the resource as a scalable target. When you specify start and end times with a recurring schedule using a cron expression or rates, they form the boundaries for when the recurring action starts and stops. To update a scheduled action, specify the parameters that you want to change. If you don't specify start and end times, the old values are deleted. For more information, see Scheduled scaling in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to run scheduled actions. Any scheduled actions that were specified for the scalable target are deleted.
80
88
  */
81
89
  putScheduledAction(params: ApplicationAutoScaling.Types.PutScheduledActionRequest, callback?: (err: AWSError, data: ApplicationAutoScaling.Types.PutScheduledActionResponse) => void): Request<ApplicationAutoScaling.Types.PutScheduledActionResponse, AWSError>;
82
90
  /**
83
- * Creates or updates a scheduled action for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scheduled action applies to the scalable target identified by those three attributes. You cannot create a scheduled action until you have registered the resource as a scalable target. When start and end times are specified with a recurring schedule using a cron expression or rates, they form the boundaries for when the recurring action starts and stops. To update a scheduled action, specify the parameters that you want to change. If you don't specify start and end times, the old values are deleted. For more information, see Scheduled scaling in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to run scheduled actions. Any scheduled actions that were specified for the scalable target are deleted.
91
+ * Creates or updates a scheduled action for an Application Auto Scaling scalable target. Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scheduled action applies to the scalable target identified by those three attributes. You cannot create a scheduled action until you have registered the resource as a scalable target. When you specify start and end times with a recurring schedule using a cron expression or rates, they form the boundaries for when the recurring action starts and stops. To update a scheduled action, specify the parameters that you want to change. If you don't specify start and end times, the old values are deleted. For more information, see Scheduled scaling in the Application Auto Scaling User Guide. If a scalable target is deregistered, the scalable target is no longer available to run scheduled actions. Any scheduled actions that were specified for the scalable target are deleted.
84
92
  */
85
93
  putScheduledAction(callback?: (err: AWSError, data: ApplicationAutoScaling.Types.PutScheduledActionResponse) => void): Request<ApplicationAutoScaling.Types.PutScheduledActionResponse, AWSError>;
86
94
  /**
87
- * Registers or updates a scalable target, the resource that you want to scale. Scalable targets are uniquely identified by the combination of resource ID, scalable dimension, and namespace, which represents some capacity dimension of the underlying service. When you register a new scalable target, you must specify values for the minimum and maximum capacity. If the specified resource is not active in the target service, this operation does not change the resource's current capacity. Otherwise, it changes the resource's current capacity to a value that is inside of this range. If you choose to add a scaling policy, current capacity is adjustable within the specified range when scaling starts. Application Auto Scaling scaling policies will not scale capacity to values that are outside of the minimum and maximum range. After you register a scalable target, you do not need to register it again to use other Application Auto Scaling operations. To see which resources have been registered, use DescribeScalableTargets. You can also view the scaling policies for a service namespace by using DescribeScalableTargets. If you no longer need a scalable target, you can deregister it by using DeregisterScalableTarget. To update a scalable target, specify the parameters that you want to change. Include the parameters that identify the scalable target: resource ID, scalable dimension, and namespace. Any parameters that you don't specify are not changed by this update request. If you call the RegisterScalableTarget API to update an existing scalable target, Application Auto Scaling retrieves the current capacity of the resource. If it is below the minimum capacity or above the maximum capacity, Application Auto Scaling adjusts the capacity of the scalable target to place it within these bounds, even if you don't include the MinCapacity or MaxCapacity request parameters.
95
+ * Registers or updates a scalable target, which is the resource that you want to scale. Scalable targets are uniquely identified by the combination of resource ID, scalable dimension, and namespace, which represents some capacity dimension of the underlying service. When you register a new scalable target, you must specify values for the minimum and maximum capacity. If the specified resource is not active in the target service, this operation does not change the resource's current capacity. Otherwise, it changes the resource's current capacity to a value that is inside of this range. If you add a scaling policy, current capacity is adjustable within the specified range when scaling starts. Application Auto Scaling scaling policies will not scale capacity to values that are outside of the minimum and maximum range. After you register a scalable target, you do not need to register it again to use other Application Auto Scaling operations. To see which resources have been registered, use DescribeScalableTargets. You can also view the scaling policies for a service namespace by using DescribeScalableTargets. If you no longer need a scalable target, you can deregister it by using DeregisterScalableTarget. To update a scalable target, specify the parameters that you want to change. Include the parameters that identify the scalable target: resource ID, scalable dimension, and namespace. Any parameters that you don't specify are not changed by this update request. If you call the RegisterScalableTarget API operation to create a scalable target, there might be a brief delay until the operation achieves eventual consistency. You might become aware of this brief delay if you get unexpected errors when performing sequential operations. The typical strategy is to retry the request, and some Amazon Web Services SDKs include automatic backoff and retry logic. If you call the RegisterScalableTarget API operation to update an existing scalable target, Application Auto Scaling retrieves the current capacity of the resource. If it's below the minimum capacity or above the maximum capacity, Application Auto Scaling adjusts the capacity of the scalable target to place it within these bounds, even if you don't include the MinCapacity or MaxCapacity request parameters.
88
96
  */
89
97
  registerScalableTarget(params: ApplicationAutoScaling.Types.RegisterScalableTargetRequest, callback?: (err: AWSError, data: ApplicationAutoScaling.Types.RegisterScalableTargetResponse) => void): Request<ApplicationAutoScaling.Types.RegisterScalableTargetResponse, AWSError>;
90
98
  /**
91
- * Registers or updates a scalable target, the resource that you want to scale. Scalable targets are uniquely identified by the combination of resource ID, scalable dimension, and namespace, which represents some capacity dimension of the underlying service. When you register a new scalable target, you must specify values for the minimum and maximum capacity. If the specified resource is not active in the target service, this operation does not change the resource's current capacity. Otherwise, it changes the resource's current capacity to a value that is inside of this range. If you choose to add a scaling policy, current capacity is adjustable within the specified range when scaling starts. Application Auto Scaling scaling policies will not scale capacity to values that are outside of the minimum and maximum range. After you register a scalable target, you do not need to register it again to use other Application Auto Scaling operations. To see which resources have been registered, use DescribeScalableTargets. You can also view the scaling policies for a service namespace by using DescribeScalableTargets. If you no longer need a scalable target, you can deregister it by using DeregisterScalableTarget. To update a scalable target, specify the parameters that you want to change. Include the parameters that identify the scalable target: resource ID, scalable dimension, and namespace. Any parameters that you don't specify are not changed by this update request. If you call the RegisterScalableTarget API to update an existing scalable target, Application Auto Scaling retrieves the current capacity of the resource. If it is below the minimum capacity or above the maximum capacity, Application Auto Scaling adjusts the capacity of the scalable target to place it within these bounds, even if you don't include the MinCapacity or MaxCapacity request parameters.
99
+ * Registers or updates a scalable target, which is the resource that you want to scale. Scalable targets are uniquely identified by the combination of resource ID, scalable dimension, and namespace, which represents some capacity dimension of the underlying service. When you register a new scalable target, you must specify values for the minimum and maximum capacity. If the specified resource is not active in the target service, this operation does not change the resource's current capacity. Otherwise, it changes the resource's current capacity to a value that is inside of this range. If you add a scaling policy, current capacity is adjustable within the specified range when scaling starts. Application Auto Scaling scaling policies will not scale capacity to values that are outside of the minimum and maximum range. After you register a scalable target, you do not need to register it again to use other Application Auto Scaling operations. To see which resources have been registered, use DescribeScalableTargets. You can also view the scaling policies for a service namespace by using DescribeScalableTargets. If you no longer need a scalable target, you can deregister it by using DeregisterScalableTarget. To update a scalable target, specify the parameters that you want to change. Include the parameters that identify the scalable target: resource ID, scalable dimension, and namespace. Any parameters that you don't specify are not changed by this update request. If you call the RegisterScalableTarget API operation to create a scalable target, there might be a brief delay until the operation achieves eventual consistency. You might become aware of this brief delay if you get unexpected errors when performing sequential operations. The typical strategy is to retry the request, and some Amazon Web Services SDKs include automatic backoff and retry logic. If you call the RegisterScalableTarget API operation to update an existing scalable target, Application Auto Scaling retrieves the current capacity of the resource. If it's below the minimum capacity or above the maximum capacity, Application Auto Scaling adjusts the capacity of the scalable target to place it within these bounds, even if you don't include the MinCapacity or MaxCapacity request parameters.
92
100
  */
93
101
  registerScalableTarget(callback?: (err: AWSError, data: ApplicationAutoScaling.Types.RegisterScalableTargetResponse) => void): Request<ApplicationAutoScaling.Types.RegisterScalableTargetResponse, AWSError>;
102
+ /**
103
+ * Adds or edits tags on an Application Auto Scaling scalable target. Each tag consists of a tag key and a tag value, which are both case-sensitive strings. To add a tag, specify a new tag key and a tag value. To edit a tag, specify an existing tag key and a new tag value. You can use this operation to tag an Application Auto Scaling scalable target, but you cannot tag a scaling policy or scheduled action. You can also add tags to an Application Auto Scaling scalable target while creating it (RegisterScalableTarget). For general information about tags, including the format and syntax, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference. Use tags to control access to a scalable target. For more information, see Tagging support for Application Auto Scaling in the Application Auto Scaling User Guide.
104
+ */
105
+ tagResource(params: ApplicationAutoScaling.Types.TagResourceRequest, callback?: (err: AWSError, data: ApplicationAutoScaling.Types.TagResourceResponse) => void): Request<ApplicationAutoScaling.Types.TagResourceResponse, AWSError>;
106
+ /**
107
+ * Adds or edits tags on an Application Auto Scaling scalable target. Each tag consists of a tag key and a tag value, which are both case-sensitive strings. To add a tag, specify a new tag key and a tag value. To edit a tag, specify an existing tag key and a new tag value. You can use this operation to tag an Application Auto Scaling scalable target, but you cannot tag a scaling policy or scheduled action. You can also add tags to an Application Auto Scaling scalable target while creating it (RegisterScalableTarget). For general information about tags, including the format and syntax, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference. Use tags to control access to a scalable target. For more information, see Tagging support for Application Auto Scaling in the Application Auto Scaling User Guide.
108
+ */
109
+ tagResource(callback?: (err: AWSError, data: ApplicationAutoScaling.Types.TagResourceResponse) => void): Request<ApplicationAutoScaling.Types.TagResourceResponse, AWSError>;
110
+ /**
111
+ * Deletes tags from an Application Auto Scaling scalable target. To delete a tag, specify the tag key and the Application Auto Scaling scalable target.
112
+ */
113
+ untagResource(params: ApplicationAutoScaling.Types.UntagResourceRequest, callback?: (err: AWSError, data: ApplicationAutoScaling.Types.UntagResourceResponse) => void): Request<ApplicationAutoScaling.Types.UntagResourceResponse, AWSError>;
114
+ /**
115
+ * Deletes tags from an Application Auto Scaling scalable target. To delete a tag, specify the tag key and the Application Auto Scaling scalable target.
116
+ */
117
+ untagResource(callback?: (err: AWSError, data: ApplicationAutoScaling.Types.UntagResourceResponse) => void): Request<ApplicationAutoScaling.Types.UntagResourceResponse, AWSError>;
94
118
  }
95
119
  declare namespace ApplicationAutoScaling {
96
120
  export type AdjustmentType = "ChangeInCapacity"|"PercentChangeInCapacity"|"ExactCapacity"|string;
@@ -105,10 +129,11 @@ declare namespace ApplicationAutoScaling {
105
129
  AlarmARN: ResourceId;
106
130
  }
107
131
  export type Alarms = Alarm[];
132
+ export type AmazonResourceName = string;
108
133
  export type Cooldown = number;
109
134
  export interface CustomizedMetricSpecification {
110
135
  /**
111
- * The name of the metric. To get the exact metric name, namespace, and dimensions, inspect the Metric object that is returned by a call to ListMetrics.
136
+ * The name of the metric. To get the exact metric name, namespace, and dimensions, inspect the Metric object that's returned by a call to ListMetrics.
112
137
  */
113
138
  MetricName?: MetricName;
114
139
  /**
@@ -332,6 +357,18 @@ declare namespace ApplicationAutoScaling {
332
357
  export type Expression = string;
333
358
  export type Id = string;
334
359
  export type IncludeNotScaledActivities = boolean;
360
+ export interface ListTagsForResourceRequest {
361
+ /**
362
+ * Specify the ARN of the scalable target. For example: arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123 To get the ARN for a scalable target, use DescribeScalableTargets.
363
+ */
364
+ ResourceARN: AmazonResourceName;
365
+ }
366
+ export interface ListTagsForResourceResponse {
367
+ /**
368
+ * A list of tags. Each tag consists of a tag key and a tag value.
369
+ */
370
+ Tags?: TagMap;
371
+ }
335
372
  export type MaxResults = number;
336
373
  export type MetricAggregationType = "Average"|"Minimum"|"Maximum"|string;
337
374
  export interface MetricDimension {
@@ -483,7 +520,7 @@ declare namespace ApplicationAutoScaling {
483
520
  */
484
521
  MinCapacity?: ResourceCapacity;
485
522
  /**
486
- * The maximum value that you plan to scale out to. When a scaling policy is in effect, Application Auto Scaling can scale out (expand) as needed to the maximum capacity limit in response to changing demand. This property is required when registering a new scalable target. Although you can specify a large maximum capacity, note that service quotas may impose lower limits. Each service has its own default quotas for the maximum capacity of the resource. If you want to specify a higher limit, you can request an increase. For more information, consult the documentation for that service. For information about the default quotas for each service, see Service endpoints and quotas in the Amazon Web Services General Reference.
523
+ * The maximum value that you plan to scale out to. When a scaling policy is in effect, Application Auto Scaling can scale out (expand) as needed to the maximum capacity limit in response to changing demand. This property is required when registering a new scalable target. Although you can specify a large maximum capacity, note that service quotas might impose lower limits. Each service has its own default quotas for the maximum capacity of the resource. If you want to specify a higher limit, you can request an increase. For more information, consult the documentation for that service. For information about the default quotas for each service, see Service endpoints and quotas in the Amazon Web Services General Reference.
487
524
  */
488
525
  MaxCapacity?: ResourceCapacity;
489
526
  /**
@@ -494,8 +531,16 @@ declare namespace ApplicationAutoScaling {
494
531
  * An embedded object that contains attributes and attribute values that are used to suspend and resume automatic scaling. Setting the value of an attribute to true suspends the specified scaling activities. Setting it to false (default) resumes the specified scaling activities. Suspension Outcomes For DynamicScalingInSuspended, while a suspension is in effect, all scale-in activities that are triggered by a scaling policy are suspended. For DynamicScalingOutSuspended, while a suspension is in effect, all scale-out activities that are triggered by a scaling policy are suspended. For ScheduledScalingSuspended, while a suspension is in effect, all scaling activities that involve scheduled actions are suspended. For more information, see Suspending and resuming scaling in the Application Auto Scaling User Guide.
495
532
  */
496
533
  SuspendedState?: SuspendedState;
534
+ /**
535
+ * Assigns one or more tags to the scalable target. Use this parameter to tag the scalable target when it is created. To tag an existing scalable target, use the TagResource operation. Each tag consists of a tag key and a tag value. Both the tag key and the tag value are required. You cannot have more than one tag on a scalable target with the same tag key. Use tags to control access to a scalable target. For more information, see Tagging support for Application Auto Scaling in the Application Auto Scaling User Guide.
536
+ */
537
+ Tags?: TagMap;
497
538
  }
498
539
  export interface RegisterScalableTargetResponse {
540
+ /**
541
+ * The ARN of the scalable target.
542
+ */
543
+ ScalableTargetARN?: XmlString;
499
544
  }
500
545
  export type ResourceCapacity = number;
501
546
  export type ResourceId = string;
@@ -537,6 +582,10 @@ declare namespace ApplicationAutoScaling {
537
582
  * Specifies whether the scaling activities for a scalable target are in a suspended state.
538
583
  */
539
584
  SuspendedState?: SuspendedState;
585
+ /**
586
+ * The ARN of the scalable target.
587
+ */
588
+ ScalableTargetARN?: XmlString;
540
589
  }
541
590
  export interface ScalableTargetAction {
542
591
  /**
@@ -697,11 +746,11 @@ declare namespace ApplicationAutoScaling {
697
746
  export type ServiceNamespace = "ecs"|"elasticmapreduce"|"ec2"|"appstream"|"dynamodb"|"rds"|"sagemaker"|"custom-resource"|"comprehend"|"lambda"|"cassandra"|"kafka"|"elasticache"|"neptune"|string;
698
747
  export interface StepAdjustment {
699
748
  /**
700
- * The lower bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the lower bound is inclusive (the metric must be greater than or equal to the threshold plus the lower bound). Otherwise, it is exclusive (the metric must be greater than the threshold plus the lower bound). A null value indicates negative infinity.
749
+ * The lower bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the lower bound is inclusive (the metric must be greater than or equal to the threshold plus the lower bound). Otherwise, it's exclusive (the metric must be greater than the threshold plus the lower bound). A null value indicates negative infinity.
701
750
  */
702
751
  MetricIntervalLowerBound?: MetricScale;
703
752
  /**
704
- * The upper bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the upper bound is exclusive (the metric must be less than the threshold plus the upper bound). Otherwise, it is inclusive (the metric must be less than or equal to the threshold plus the upper bound). A null value indicates positive infinity. The upper bound must be greater than the lower bound.
753
+ * The upper bound for the difference between the alarm threshold and the CloudWatch metric. If the metric value is above the breach threshold, the upper bound is exclusive (the metric must be less than the threshold plus the upper bound). Otherwise, it's inclusive (the metric must be less than or equal to the threshold plus the upper bound). A null value indicates positive infinity. The upper bound must be greater than the lower bound.
705
754
  */
706
755
  MetricIntervalUpperBound?: MetricScale;
707
756
  /**
@@ -746,6 +795,22 @@ declare namespace ApplicationAutoScaling {
746
795
  */
747
796
  ScheduledScalingSuspended?: ScalingSuspended;
748
797
  }
798
+ export type TagKey = string;
799
+ export type TagKeyList = TagKey[];
800
+ export type TagMap = {[key: string]: TagValue};
801
+ export interface TagResourceRequest {
802
+ /**
803
+ * Identifies the Application Auto Scaling scalable target that you want to apply tags to. For example: arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123 To get the ARN for a scalable target, use DescribeScalableTargets.
804
+ */
805
+ ResourceARN: AmazonResourceName;
806
+ /**
807
+ * The tags assigned to the resource. A tag is a label that you assign to an AWS resource. Each tag consists of a tag key and a tag value. You cannot have more than one tag on an Application Auto Scaling scalable target with the same tag key. If you specify an existing tag key with a different tag value, Application Auto Scaling replaces the current tag value with the specified one. For information about the rules that apply to tag keys and tag values, see User-defined tag restrictions in the Amazon Web Services Billing and Cost Management User Guide.
808
+ */
809
+ Tags: TagMap;
810
+ }
811
+ export interface TagResourceResponse {
812
+ }
813
+ export type TagValue = string;
749
814
  export interface TargetTrackingMetric {
750
815
  /**
751
816
  * The dimensions for the metric. For the list of available dimensions, see the Amazon Web Services documentation available from the table in Amazon Web Services services that publish CloudWatch metrics in the Amazon CloudWatch User Guide. Conditional: If you published your metric with dimensions, you must specify the same dimensions in your scaling policy.
@@ -804,7 +869,7 @@ declare namespace ApplicationAutoScaling {
804
869
  */
805
870
  Metric: TargetTrackingMetric;
806
871
  /**
807
- * The statistic to return. It can include any CloudWatch statistic or extended statistic. For a list of valid values, see the table in Statistics in the Amazon CloudWatch User Guide. The most commonly used metrics for scaling is Average
872
+ * The statistic to return. It can include any CloudWatch statistic or extended statistic. For a list of valid values, see the table in Statistics in the Amazon CloudWatch User Guide. The most commonly used metric for scaling is Average.
808
873
  */
809
874
  Stat: XmlString;
810
875
  /**
@@ -840,6 +905,18 @@ declare namespace ApplicationAutoScaling {
840
905
  DisableScaleIn?: DisableScaleIn;
841
906
  }
842
907
  export type TimestampType = Date;
908
+ export interface UntagResourceRequest {
909
+ /**
910
+ * Identifies the Application Auto Scaling scalable target from which to remove tags. For example: arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123 To get the ARN for a scalable target, use DescribeScalableTargets.
911
+ */
912
+ ResourceARN: AmazonResourceName;
913
+ /**
914
+ * One or more tag keys. Specify only the tag keys, not the tag values.
915
+ */
916
+ TagKeys: TagKeyList;
917
+ }
918
+ export interface UntagResourceResponse {
919
+ }
843
920
  export type XmlString = string;
844
921
  /**
845
922
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
@@ -123,6 +123,14 @@ declare class ChimeSDKMessaging extends Service {
123
123
  * Deletes a channel moderator. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
124
124
  */
125
125
  deleteChannelModerator(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
126
+ /**
127
+ * Deletes the streaming configurations for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
128
+ */
129
+ deleteMessagingStreamingConfigurations(params: ChimeSDKMessaging.Types.DeleteMessagingStreamingConfigurationsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
130
+ /**
131
+ * Deletes the streaming configurations for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
132
+ */
133
+ deleteMessagingStreamingConfigurations(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
126
134
  /**
127
135
  * Returns the full details of a channel in an Amazon Chime AppInstance. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
128
136
  */
@@ -219,6 +227,14 @@ declare class ChimeSDKMessaging extends Service {
219
227
  * The details of the endpoint for the messaging session.
220
228
  */
221
229
  getMessagingSessionEndpoint(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetMessagingSessionEndpointResponse) => void): Request<ChimeSDKMessaging.Types.GetMessagingSessionEndpointResponse, AWSError>;
230
+ /**
231
+ * Retrieves the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
232
+ */
233
+ getMessagingStreamingConfigurations(params: ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse, AWSError>;
234
+ /**
235
+ * Retrieves the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
236
+ */
237
+ getMessagingStreamingConfigurations(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse, AWSError>;
222
238
  /**
223
239
  * Lists all the users banned from a particular channel. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
224
240
  */
@@ -315,6 +331,14 @@ declare class ChimeSDKMessaging extends Service {
315
331
  * Sets the membership preferences of an AppInstanceUser for the specified channel. The AppInstanceUser must be a member of the channel. Only the AppInstanceUser who owns the membership can set preferences. Users in the AppInstanceAdmin and channel moderator roles can't set preferences for other users. Banned users can't set membership preferences for the channel from which they are banned.
316
332
  */
317
333
  putChannelMembershipPreferences(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse) => void): Request<ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse, AWSError>;
334
+ /**
335
+ * Sets the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
336
+ */
337
+ putMessagingStreamingConfigurations(params: ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse, AWSError>;
338
+ /**
339
+ * Sets the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
340
+ */
341
+ putMessagingStreamingConfigurations(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse, AWSError>;
318
342
  /**
319
343
  * Redacts message content, but not metadata. The message exists in the back end, but the action returns null content, and the state shows as redacted. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
320
344
  */
@@ -1166,6 +1190,12 @@ declare namespace ChimeSDKMessaging {
1166
1190
  */
1167
1191
  SubChannelId?: SubChannelId;
1168
1192
  }
1193
+ export interface DeleteMessagingStreamingConfigurationsRequest {
1194
+ /**
1195
+ * The ARN of the streaming configurations being deleted.
1196
+ */
1197
+ AppInstanceArn: ChimeArn;
1198
+ }
1169
1199
  export interface DescribeChannelBanRequest {
1170
1200
  /**
1171
1201
  * The ARN of the channel from which the user is banned.
@@ -1413,6 +1443,18 @@ declare namespace ChimeSDKMessaging {
1413
1443
  */
1414
1444
  Endpoint?: MessagingSessionEndpoint;
1415
1445
  }
1446
+ export interface GetMessagingStreamingConfigurationsRequest {
1447
+ /**
1448
+ * The ARN of the streaming configurations.
1449
+ */
1450
+ AppInstanceArn: ChimeArn;
1451
+ }
1452
+ export interface GetMessagingStreamingConfigurationsResponse {
1453
+ /**
1454
+ * The streaming settings.
1455
+ */
1456
+ StreamingConfigurations?: StreamingConfigurationList;
1457
+ }
1416
1458
  export interface Identity {
1417
1459
  /**
1418
1460
  * The ARN in an Identity.
@@ -1787,6 +1829,7 @@ declare namespace ChimeSDKMessaging {
1787
1829
  StringValues?: MessageAttributeStringValues;
1788
1830
  }
1789
1831
  export type MessageId = string;
1832
+ export type MessagingDataType = "Channel"|"ChannelMessage"|string;
1790
1833
  export interface MessagingSessionEndpoint {
1791
1834
  /**
1792
1835
  * The endpoint to which you establish a websocket connection.
@@ -1883,6 +1926,22 @@ declare namespace ChimeSDKMessaging {
1883
1926
  */
1884
1927
  Preferences?: ChannelMembershipPreferences;
1885
1928
  }
1929
+ export interface PutMessagingStreamingConfigurationsRequest {
1930
+ /**
1931
+ * The ARN of the streaming configuration.
1932
+ */
1933
+ AppInstanceArn: ChimeArn;
1934
+ /**
1935
+ * The streaming configurations.
1936
+ */
1937
+ StreamingConfigurations: StreamingConfigurationList;
1938
+ }
1939
+ export interface PutMessagingStreamingConfigurationsResponse {
1940
+ /**
1941
+ * The requested streaming configurations.
1942
+ */
1943
+ StreamingConfigurations?: StreamingConfigurationList;
1944
+ }
1886
1945
  export interface RedactChannelMessageRequest {
1887
1946
  /**
1888
1947
  * The ARN of the channel containing the messages that you want to redact.
@@ -2025,6 +2084,17 @@ declare namespace ChimeSDKMessaging {
2025
2084
  }
2026
2085
  export type SortOrder = "ASCENDING"|"DESCENDING"|string;
2027
2086
  export type StatusDetail = string;
2087
+ export interface StreamingConfiguration {
2088
+ /**
2089
+ * The data type of the configuration.
2090
+ */
2091
+ DataType: MessagingDataType;
2092
+ /**
2093
+ * The ARN of the resource in the configuration.
2094
+ */
2095
+ ResourceArn: ChimeArn;
2096
+ }
2097
+ export type StreamingConfigurationList = StreamingConfiguration[];
2028
2098
  export type String = string;
2029
2099
  export type SubChannelId = string;
2030
2100
  export interface SubChannelSummary {
@@ -227,6 +227,14 @@ declare class CleanRooms extends Service {
227
227
  * Lists the schemas for relations within a collaboration.
228
228
  */
229
229
  listSchemas(callback?: (err: AWSError, data: CleanRooms.Types.ListSchemasOutput) => void): Request<CleanRooms.Types.ListSchemasOutput, AWSError>;
230
+ /**
231
+ * Lists all of the tags that have been added to a resource.
232
+ */
233
+ listTagsForResource(params: CleanRooms.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: CleanRooms.Types.ListTagsForResourceOutput) => void): Request<CleanRooms.Types.ListTagsForResourceOutput, AWSError>;
234
+ /**
235
+ * Lists all of the tags that have been added to a resource.
236
+ */
237
+ listTagsForResource(callback?: (err: AWSError, data: CleanRooms.Types.ListTagsForResourceOutput) => void): Request<CleanRooms.Types.ListTagsForResourceOutput, AWSError>;
230
238
  /**
231
239
  * Creates a protected query that is started by AWS Clean Rooms.
232
240
  */
@@ -235,6 +243,22 @@ declare class CleanRooms extends Service {
235
243
  * Creates a protected query that is started by AWS Clean Rooms.
236
244
  */
237
245
  startProtectedQuery(callback?: (err: AWSError, data: CleanRooms.Types.StartProtectedQueryOutput) => void): Request<CleanRooms.Types.StartProtectedQueryOutput, AWSError>;
246
+ /**
247
+ * Tags a resource.
248
+ */
249
+ tagResource(params: CleanRooms.Types.TagResourceInput, callback?: (err: AWSError, data: CleanRooms.Types.TagResourceOutput) => void): Request<CleanRooms.Types.TagResourceOutput, AWSError>;
250
+ /**
251
+ * Tags a resource.
252
+ */
253
+ tagResource(callback?: (err: AWSError, data: CleanRooms.Types.TagResourceOutput) => void): Request<CleanRooms.Types.TagResourceOutput, AWSError>;
254
+ /**
255
+ * Removes a tag or list of tags from a resource.
256
+ */
257
+ untagResource(params: CleanRooms.Types.UntagResourceInput, callback?: (err: AWSError, data: CleanRooms.Types.UntagResourceOutput) => void): Request<CleanRooms.Types.UntagResourceOutput, AWSError>;
258
+ /**
259
+ * Removes a tag or list of tags from a resource.
260
+ */
261
+ untagResource(callback?: (err: AWSError, data: CleanRooms.Types.UntagResourceOutput) => void): Request<CleanRooms.Types.UntagResourceOutput, AWSError>;
238
262
  /**
239
263
  * Updates collaboration metadata and can only be called by the collaboration owner.
240
264
  */
@@ -437,6 +461,7 @@ declare namespace CleanRooms {
437
461
  errors: BatchGetSchemaErrorList;
438
462
  }
439
463
  export type Boolean = boolean;
464
+ export type CleanroomsArn = string;
440
465
  export interface Collaboration {
441
466
  /**
442
467
  * The unique ID for the collaboration.
@@ -783,6 +808,10 @@ declare namespace CleanRooms {
783
808
  * An indicator as to whether query logging has been enabled or disabled for the collaboration.
784
809
  */
785
810
  queryLogStatus: CollaborationQueryLogStatus;
811
+ /**
812
+ * An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
813
+ */
814
+ tags?: TagMap;
786
815
  }
787
816
  export interface CreateCollaborationOutput {
788
817
  /**
@@ -831,6 +860,10 @@ declare namespace CleanRooms {
831
860
  * The service will assume this role to access catalog metadata and query the table.
832
861
  */
833
862
  roleArn: RoleArn;
863
+ /**
864
+ * An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
865
+ */
866
+ tags?: TagMap;
834
867
  }
835
868
  export interface CreateConfiguredTableAssociationOutput {
836
869
  /**
@@ -859,6 +892,10 @@ declare namespace CleanRooms {
859
892
  * The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.
860
893
  */
861
894
  analysisMethod: AnalysisMethod;
895
+ /**
896
+ * An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
897
+ */
898
+ tags?: TagMap;
862
899
  }
863
900
  export interface CreateConfiguredTableOutput {
864
901
  /**
@@ -875,6 +912,10 @@ declare namespace CleanRooms {
875
912
  * An indicator as to whether query logging has been enabled or disabled for the collaboration.
876
913
  */
877
914
  queryLogStatus: MembershipQueryLogStatus;
915
+ /**
916
+ * An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
917
+ */
918
+ tags?: TagMap;
878
919
  }
879
920
  export interface CreateMembershipOutput {
880
921
  /**
@@ -1267,6 +1308,18 @@ declare namespace CleanRooms {
1267
1308
  */
1268
1309
  nextToken?: PaginationToken;
1269
1310
  }
1311
+ export interface ListTagsForResourceInput {
1312
+ /**
1313
+ * The Amazon Resource Name (ARN) associated with the resource you want to list tags on.
1314
+ */
1315
+ resourceArn: CleanroomsArn;
1316
+ }
1317
+ export interface ListTagsForResourceOutput {
1318
+ /**
1319
+ * A map of objects specifying each key name and value.
1320
+ */
1321
+ tags: TagMap;
1322
+ }
1270
1323
  export type Long = number;
1271
1324
  export type MaxResults = number;
1272
1325
  export type MemberAbilities = MemberAbility[];
@@ -1570,7 +1623,7 @@ declare namespace CleanRooms {
1570
1623
  */
1571
1624
  columns: ColumnList;
1572
1625
  /**
1573
- * The partition keys for the data set underlying this schema.
1626
+ * The partition keys for the dataset underlying this schema.
1574
1627
  */
1575
1628
  partitionKeys: ColumnList;
1576
1629
  /**
@@ -1689,9 +1742,37 @@ declare namespace CleanRooms {
1689
1742
  */
1690
1743
  glue?: GlueTableReference;
1691
1744
  }
1745
+ export type TagKey = string;
1746
+ export type TagKeys = TagKey[];
1747
+ export type TagMap = {[key: string]: TagValue};
1748
+ export interface TagResourceInput {
1749
+ /**
1750
+ * The Amazon Resource Name (ARN) associated with the resource you want to tag.
1751
+ */
1752
+ resourceArn: CleanroomsArn;
1753
+ /**
1754
+ * A map of objects specifying each key name and value.
1755
+ */
1756
+ tags: TagMap;
1757
+ }
1758
+ export interface TagResourceOutput {
1759
+ }
1760
+ export type TagValue = string;
1692
1761
  export type TargetProtectedQueryStatus = "CANCELLED"|string;
1693
1762
  export type Timestamp = Date;
1694
1763
  export type UUID = string;
1764
+ export interface UntagResourceInput {
1765
+ /**
1766
+ * The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from.
1767
+ */
1768
+ resourceArn: CleanroomsArn;
1769
+ /**
1770
+ * A list of key names of tags to be removed.
1771
+ */
1772
+ tagKeys: TagKeys;
1773
+ }
1774
+ export interface UntagResourceOutput {
1775
+ }
1695
1776
  export interface UpdateCollaborationInput {
1696
1777
  /**
1697
1778
  * The identifier for the collaboration.