aws-sdk 2.1417.0 → 2.1418.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.
package/clients/all.d.ts CHANGED
@@ -349,3 +349,4 @@ export import PaymentCryptographyData = require('./paymentcryptographydata');
349
349
  export import CodeGuruSecurity = require('./codegurusecurity');
350
350
  export import VerifiedPermissions = require('./verifiedpermissions');
351
351
  export import AppFabric = require('./appfabric');
352
+ export import MedicalImaging = require('./medicalimaging');
package/clients/all.js CHANGED
@@ -350,5 +350,6 @@ module.exports = {
350
350
  PaymentCryptographyData: require('./paymentcryptographydata'),
351
351
  CodeGuruSecurity: require('./codegurusecurity'),
352
352
  VerifiedPermissions: require('./verifiedpermissions'),
353
- AppFabric: require('./appfabric')
353
+ AppFabric: require('./appfabric'),
354
+ MedicalImaging: require('./medicalimaging')
354
355
  };
@@ -2080,6 +2080,10 @@ declare namespace CloudFormation {
2080
2080
  * [Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. By default, SELF is specified. Use SELF for stack sets with self-managed permissions. If you are signed in to the management account, specify SELF. If you are signed in to a delegated administrator account, specify DELEGATED_ADMIN. Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see Register a delegated administrator in the CloudFormation User Guide.
2081
2081
  */
2082
2082
  CallAs?: CallAs;
2083
+ /**
2084
+ * Specifies options for the GetTemplateSummary API action.
2085
+ */
2086
+ TemplateSummaryConfig?: TemplateSummaryConfig;
2083
2087
  }
2084
2088
  export interface GetTemplateSummaryOutput {
2085
2089
  /**
@@ -2118,6 +2122,10 @@ declare namespace CloudFormation {
2118
2122
  * A list of resource identifier summaries that describe the target resources of an import operation and the properties you can provide during the import to identify the target resources. For example, BucketName is a possible identifier property for an AWS::S3::Bucket resource.
2119
2123
  */
2120
2124
  ResourceIdentifierSummaries?: ResourceIdentifierSummaries;
2125
+ /**
2126
+ * An object containing any warnings returned.
2127
+ */
2128
+ Warnings?: Warnings;
2121
2129
  }
2122
2130
  export type HandlerErrorCode = "NotUpdatable"|"InvalidRequest"|"AccessDenied"|"InvalidCredentials"|"AlreadyExists"|"NotFound"|"ResourceConflict"|"Throttling"|"ServiceLimitExceeded"|"NotStabilized"|"GeneralServiceException"|"ServiceInternalError"|"NetworkFailure"|"InternalFailure"|"InvalidTypeConfiguration"|"HandlerInternalFailure"|"NonCompliant"|"Unknown"|"UnsupportedTarget"|string;
2123
2131
  export type HookFailureMode = "FAIL"|"WARN"|string;
@@ -4004,6 +4012,12 @@ declare namespace CloudFormation {
4004
4012
  }
4005
4013
  export type TemplateParameters = TemplateParameter[];
4006
4014
  export type TemplateStage = "Original"|"Processed"|string;
4015
+ export interface TemplateSummaryConfig {
4016
+ /**
4017
+ * If set to True, any unrecognized resource types generate warnings and not an error. Any unrecognized resource types are returned in the Warnings output parameter.
4018
+ */
4019
+ TreatUnrecognizedResourceTypesAsWarnings?: TreatUnrecognizedResourceTypesAsWarnings;
4020
+ }
4007
4021
  export type TemplateURL = string;
4008
4022
  export interface TestTypeInput {
4009
4023
  /**
@@ -4040,6 +4054,7 @@ declare namespace CloudFormation {
4040
4054
  export type TotalStackInstancesCount = number;
4041
4055
  export type TransformName = string;
4042
4056
  export type TransformsList = TransformName[];
4057
+ export type TreatUnrecognizedResourceTypesAsWarnings = boolean;
4043
4058
  export type Type = string;
4044
4059
  export type TypeArn = string;
4045
4060
  export type TypeConfiguration = string;
@@ -4466,6 +4481,12 @@ declare namespace CloudFormation {
4466
4481
  export type Version = string;
4467
4482
  export type VersionBump = "MAJOR"|"MINOR"|string;
4468
4483
  export type Visibility = "PUBLIC"|"PRIVATE"|string;
4484
+ export interface Warnings {
4485
+ /**
4486
+ * A list of all of the unrecognized resource types. This is only returned if the TemplateSummaryConfig parameter has the TreatUnrecognizedResourceTypesAsWarning configuration set to True.
4487
+ */
4488
+ UnrecognizedResourceTypes?: ResourceTypes;
4489
+ }
4469
4490
  /**
4470
4491
  * 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.
4471
4492
  */