aws-sdk 2.1387.0 → 2.1389.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/CHANGELOG.md +15 -1
- package/README.md +1 -1
- package/apis/alexaforbusiness-2017-11-09.min.json +344 -128
- package/apis/appflow-2020-08-23.min.json +103 -77
- package/apis/config-2014-11-12.min.json +129 -112
- package/apis/customer-profiles-2020-08-15.min.json +476 -96
- package/apis/frauddetector-2019-11-15.min.json +29 -12
- package/apis/healthlake-2017-07-01.min.json +43 -17
- package/apis/ivs-2020-07-14.min.json +52 -47
- package/apis/m2-2021-04-28.min.json +90 -40
- package/apis/metadata.json +2 -1
- package/apis/rds-2014-10-31.min.json +4 -2
- package/apis/workspaces-web-2020-07-08.min.json +360 -71
- package/apis/workspaces-web-2020-07-08.paginators.json +5 -0
- package/clients/alexaforbusiness.d.ts +12 -0
- package/clients/appflow.d.ts +31 -0
- package/clients/browser_default.d.ts +1 -0
- package/clients/browser_default.js +1 -0
- package/clients/configservice.d.ts +34 -13
- package/clients/customerprofiles.d.ts +438 -2
- package/clients/frauddetector.d.ts +18 -4
- package/clients/healthlake.d.ts +40 -10
- package/clients/ivs.d.ts +27 -6
- package/clients/m2.d.ts +81 -2
- package/clients/rds.d.ts +10 -2
- package/clients/sagemaker.d.ts +2 -2
- package/clients/servicecatalog.d.ts +8 -8
- package/clients/wafv2.d.ts +1 -1
- package/clients/workspacesweb.d.ts +254 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +1609 -605
- package/dist/aws-sdk.min.js +101 -100
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/healthlake.d.ts
CHANGED
@@ -100,11 +100,11 @@ declare class HealthLake extends Service {
|
|
100
100
|
*/
|
101
101
|
startFHIRImportJob(callback?: (err: AWSError, data: HealthLake.Types.StartFHIRImportJobResponse) => void): Request<HealthLake.Types.StartFHIRImportJobResponse, AWSError>;
|
102
102
|
/**
|
103
|
-
* Adds a user
|
103
|
+
* Adds a user specified key and value tag to a Data Store.
|
104
104
|
*/
|
105
105
|
tagResource(params: HealthLake.Types.TagResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
|
106
106
|
/**
|
107
|
-
* Adds a user
|
107
|
+
* Adds a user specified key and value tag to a Data Store.
|
108
108
|
*/
|
109
109
|
tagResource(callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
|
110
110
|
/**
|
@@ -118,9 +118,12 @@ declare class HealthLake extends Service {
|
|
118
118
|
}
|
119
119
|
declare namespace HealthLake {
|
120
120
|
export type AmazonResourceName = string;
|
121
|
+
export type AuthorizationStrategy = "SMART_ON_FHIR_V1"|"AWS_AUTH"|string;
|
122
|
+
export type Boolean = boolean;
|
121
123
|
export type BoundedLengthString = string;
|
122
124
|
export type ClientTokenString = string;
|
123
125
|
export type CmkType = "CUSTOMER_MANAGED_KMS_KEY"|"AWS_OWNED_KMS_KEY"|string;
|
126
|
+
export type ConfigurationMetadata = string;
|
124
127
|
export interface CreateFHIRDatastoreRequest {
|
125
128
|
/**
|
126
129
|
* The user generated name for the Data Store.
|
@@ -146,6 +149,10 @@ declare namespace HealthLake {
|
|
146
149
|
* Resource tags that are applied to a Data Store when it is created.
|
147
150
|
*/
|
148
151
|
Tags?: TagList;
|
152
|
+
/**
|
153
|
+
* The configuration of the identity provider that you want to use for your Data Store.
|
154
|
+
*/
|
155
|
+
IdentityProviderConfiguration?: IdentityProviderConfiguration;
|
149
156
|
}
|
150
157
|
export interface CreateFHIRDatastoreResponse {
|
151
158
|
/**
|
@@ -153,7 +160,7 @@ declare namespace HealthLake {
|
|
153
160
|
*/
|
154
161
|
DatastoreId: DatastoreId;
|
155
162
|
/**
|
156
|
-
* The
|
163
|
+
* The Data Store ARN is generated during the creation of the Data Store and can be found in the output from the initial Data Store creation call.
|
157
164
|
*/
|
158
165
|
DatastoreArn: DatastoreArn;
|
159
166
|
/**
|
@@ -161,7 +168,7 @@ declare namespace HealthLake {
|
|
161
168
|
*/
|
162
169
|
DatastoreStatus: DatastoreStatus;
|
163
170
|
/**
|
164
|
-
* The AWS endpoint for the created Data Store.
|
171
|
+
* The AWS endpoint for the created Data Store.
|
165
172
|
*/
|
166
173
|
DatastoreEndpoint: BoundedLengthString;
|
167
174
|
}
|
@@ -223,6 +230,10 @@ declare namespace HealthLake {
|
|
223
230
|
* The preloaded data configuration for the Data Store. Only data preloaded from Synthea is supported.
|
224
231
|
*/
|
225
232
|
PreloadDataConfig?: PreloadDataConfig;
|
233
|
+
/**
|
234
|
+
* The identity provider that you selected when you created the Data Store.
|
235
|
+
*/
|
236
|
+
IdentityProviderConfiguration?: IdentityProviderConfiguration;
|
226
237
|
}
|
227
238
|
export type DatastorePropertiesList = DatastoreProperties[];
|
228
239
|
export type DatastoreStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|string;
|
@@ -230,7 +241,7 @@ declare namespace HealthLake {
|
|
230
241
|
/**
|
231
242
|
* The AWS-generated ID for the Data Store to be deleted.
|
232
243
|
*/
|
233
|
-
DatastoreId
|
244
|
+
DatastoreId: DatastoreId;
|
234
245
|
}
|
235
246
|
export interface DeleteFHIRDatastoreResponse {
|
236
247
|
/**
|
@@ -252,9 +263,9 @@ declare namespace HealthLake {
|
|
252
263
|
}
|
253
264
|
export interface DescribeFHIRDatastoreRequest {
|
254
265
|
/**
|
255
|
-
* The AWS-generated Data Store
|
266
|
+
* The AWS-generated Data Store ID.
|
256
267
|
*/
|
257
|
-
DatastoreId
|
268
|
+
DatastoreId: DatastoreId;
|
258
269
|
}
|
259
270
|
export interface DescribeFHIRDatastoreResponse {
|
260
271
|
/**
|
@@ -336,6 +347,24 @@ declare namespace HealthLake {
|
|
336
347
|
export type ExportJobPropertiesList = ExportJobProperties[];
|
337
348
|
export type FHIRVersion = "R4"|string;
|
338
349
|
export type IamRoleArn = string;
|
350
|
+
export interface IdentityProviderConfiguration {
|
351
|
+
/**
|
352
|
+
* The authorization strategy that you selected when you created the Data Store.
|
353
|
+
*/
|
354
|
+
AuthorizationStrategy: AuthorizationStrategy;
|
355
|
+
/**
|
356
|
+
* If you enabled fine-grained authorization when you created the Data Store.
|
357
|
+
*/
|
358
|
+
FineGrainedAuthorizationEnabled?: Boolean;
|
359
|
+
/**
|
360
|
+
* The JSON metadata elements that you want to use in your identity provider configuration. Required elements are listed based on the launch specification of the SMART application. For more information on all possible elements, see Metadata in SMART's App Launch specification. authorization_endpoint: The URL to the OAuth2 authorization endpoint. grant_types_supported: An array of grant types that are supported at the token endpoint. You must provide at least one grant type option. Valid options are authorization_code and client_credentials. token_endpoint: The URL to the OAuth2 token endpoint. capabilities: An array of strings of the SMART capabilities that the authorization server supports. code_challenge_methods_supported: An array of strings of supported PKCE code challenge methods. You must include the S256 method in the array of PKCE code challenge methods.
|
361
|
+
*/
|
362
|
+
Metadata?: ConfigurationMetadata;
|
363
|
+
/**
|
364
|
+
* The Amazon Resource Name (ARN) of the Lambda function that you want to use to decode the access token created by the authorization server.
|
365
|
+
*/
|
366
|
+
IdpLambdaArn?: LambdaArn;
|
367
|
+
}
|
339
368
|
export interface ImportJobProperties {
|
340
369
|
/**
|
341
370
|
* The AWS-generated id number for the Import job.
|
@@ -346,7 +375,7 @@ declare namespace HealthLake {
|
|
346
375
|
*/
|
347
376
|
JobName?: JobName;
|
348
377
|
/**
|
349
|
-
* The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, FAILED.
|
378
|
+
* The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED.
|
350
379
|
*/
|
351
380
|
JobStatus: JobStatus;
|
352
381
|
/**
|
@@ -384,7 +413,7 @@ declare namespace HealthLake {
|
|
384
413
|
}
|
385
414
|
export type JobId = string;
|
386
415
|
export type JobName = string;
|
387
|
-
export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|string;
|
416
|
+
export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|"CANCEL_SUBMITTED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETED"|"CANCEL_FAILED"|string;
|
388
417
|
export interface KmsEncryptionConfig {
|
389
418
|
/**
|
390
419
|
* The type of customer-managed-key(CMK) used for encyrption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
|
@@ -395,6 +424,7 @@ declare namespace HealthLake {
|
|
395
424
|
*/
|
396
425
|
KmsKeyId?: EncryptionKeyID;
|
397
426
|
}
|
427
|
+
export type LambdaArn = string;
|
398
428
|
export interface ListFHIRDatastoresRequest {
|
399
429
|
/**
|
400
430
|
* Lists all filters associated with a FHIR Data Store request.
|
@@ -624,7 +654,7 @@ declare namespace HealthLake {
|
|
624
654
|
*/
|
625
655
|
Key: TagKey;
|
626
656
|
/**
|
627
|
-
* The value portion of tag. Tag values are case sensitive.
|
657
|
+
* The value portion of a tag. Tag values are case sensitive.
|
628
658
|
*/
|
629
659
|
Value: TagValue;
|
630
660
|
}
|
package/clients/ivs.d.ts
CHANGED
@@ -228,11 +228,11 @@ declare class IVS extends Service {
|
|
228
228
|
*/
|
229
229
|
untagResource(callback?: (err: AWSError, data: IVS.Types.UntagResourceResponse) => void): Request<IVS.Types.UntagResourceResponse, AWSError>;
|
230
230
|
/**
|
231
|
-
* Updates a channel's configuration.
|
231
|
+
* Updates a channel's configuration. Live channels cannot be updated. You must stop the ongoing stream, update the channel, and restart the stream for the changes to take effect.
|
232
232
|
*/
|
233
233
|
updateChannel(params: IVS.Types.UpdateChannelRequest, callback?: (err: AWSError, data: IVS.Types.UpdateChannelResponse) => void): Request<IVS.Types.UpdateChannelResponse, AWSError>;
|
234
234
|
/**
|
235
|
-
* Updates a channel's configuration.
|
235
|
+
* Updates a channel's configuration. Live channels cannot be updated. You must stop the ongoing stream, update the channel, and restart the stream for the changes to take effect.
|
236
236
|
*/
|
237
237
|
updateChannel(callback?: (err: AWSError, data: IVS.Types.UpdateChannelResponse) => void): Request<IVS.Types.UpdateChannelResponse, AWSError>;
|
238
238
|
}
|
@@ -332,6 +332,10 @@ declare namespace IVS {
|
|
332
332
|
* Channel playback URL.
|
333
333
|
*/
|
334
334
|
playbackUrl?: PlaybackURL;
|
335
|
+
/**
|
336
|
+
* Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
337
|
+
*/
|
338
|
+
preset?: TranscodePreset;
|
335
339
|
/**
|
336
340
|
* Recording-configuration ARN. A value other than an empty string indicates that recording is enabled. Default: "" (empty string, recording is disabled).
|
337
341
|
*/
|
@@ -341,7 +345,7 @@ declare namespace IVS {
|
|
341
345
|
*/
|
342
346
|
tags?: Tags;
|
343
347
|
/**
|
344
|
-
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default.
|
348
|
+
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable input resolution or bitrate, the stream probably will disconnect immediately. Some types generate multiple qualities (renditions) from the original input; this automatically gives viewers the best experience for their devices and network conditions. Some types provide transcoded video; transcoding allows higher playback quality across a range of download speeds. Default: STANDARD. Valid values: BASIC: Video is transmuxed: Amazon IVS delivers the original input quality to viewers. The viewer’s video-quality choice is limited to the original input. Input resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p. Original audio is passed through. STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default when you create a channel. ADVANCED_SD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at SD quality (480p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. ADVANCED_HD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at HD quality (720p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. Optional transcode presets (available for the ADVANCED types) allow you to trade off available download bandwidth and video quality, to optimize the viewing experience. There are two presets: Constrained bandwidth delivery uses a lower bitrate for each quality level. Use it if you have low download bandwidth and/or simple video content (e.g., talking heads) Higher bandwidth delivery uses a higher bitrate for each quality level. Use it if you have high download bandwidth and/or complex video content (e.g., flashes and quick scene changes).
|
345
349
|
*/
|
346
350
|
type?: ChannelType;
|
347
351
|
}
|
@@ -372,6 +376,10 @@ declare namespace IVS {
|
|
372
376
|
* Channel name.
|
373
377
|
*/
|
374
378
|
name?: ChannelName;
|
379
|
+
/**
|
380
|
+
* Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
381
|
+
*/
|
382
|
+
preset?: TranscodePreset;
|
375
383
|
/**
|
376
384
|
* Recording-configuration ARN. A value other than an empty string indicates that recording is enabled. Default: "" (empty string, recording is disabled).
|
377
385
|
*/
|
@@ -380,8 +388,12 @@ declare namespace IVS {
|
|
380
388
|
* Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
|
381
389
|
*/
|
382
390
|
tags?: Tags;
|
391
|
+
/**
|
392
|
+
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable input resolution or bitrate, the stream probably will disconnect immediately. Some types generate multiple qualities (renditions) from the original input; this automatically gives viewers the best experience for their devices and network conditions. Some types provide transcoded video; transcoding allows higher playback quality across a range of download speeds. Default: STANDARD. Valid values: BASIC: Video is transmuxed: Amazon IVS delivers the original input quality to viewers. The viewer’s video-quality choice is limited to the original input. Input resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p. Original audio is passed through. STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default when you create a channel. ADVANCED_SD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at SD quality (480p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. ADVANCED_HD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at HD quality (720p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. Optional transcode presets (available for the ADVANCED types) allow you to trade off available download bandwidth and video quality, to optimize the viewing experience. There are two presets: Constrained bandwidth delivery uses a lower bitrate for each quality level. Use it if you have low download bandwidth and/or simple video content (e.g., talking heads) Higher bandwidth delivery uses a higher bitrate for each quality level. Use it if you have high download bandwidth and/or complex video content (e.g., flashes and quick scene changes).
|
393
|
+
*/
|
394
|
+
type?: ChannelType;
|
383
395
|
}
|
384
|
-
export type ChannelType = "BASIC"|"STANDARD"|string;
|
396
|
+
export type ChannelType = "BASIC"|"STANDARD"|"ADVANCED_SD"|"ADVANCED_HD"|string;
|
385
397
|
export type Channels = Channel[];
|
386
398
|
export interface CreateChannelRequest {
|
387
399
|
/**
|
@@ -400,6 +412,10 @@ declare namespace IVS {
|
|
400
412
|
* Channel name.
|
401
413
|
*/
|
402
414
|
name?: ChannelName;
|
415
|
+
/**
|
416
|
+
* Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
417
|
+
*/
|
418
|
+
preset?: TranscodePreset;
|
403
419
|
/**
|
404
420
|
* Recording-configuration ARN. Default: "" (empty string, recording is disabled).
|
405
421
|
*/
|
@@ -409,7 +425,7 @@ declare namespace IVS {
|
|
409
425
|
*/
|
410
426
|
tags?: Tags;
|
411
427
|
/**
|
412
|
-
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default.
|
428
|
+
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable input resolution or bitrate, the stream probably will disconnect immediately. Some types generate multiple qualities (renditions) from the original input; this automatically gives viewers the best experience for their devices and network conditions. Some types provide transcoded video; transcoding allows higher playback quality across a range of download speeds. Default: STANDARD. Valid values: BASIC: Video is transmuxed: Amazon IVS delivers the original input quality to viewers. The viewer’s video-quality choice is limited to the original input. Input resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p. Original audio is passed through. STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default when you create a channel. ADVANCED_SD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at SD quality (480p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. ADVANCED_HD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at HD quality (720p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. Optional transcode presets (available for the ADVANCED types) allow you to trade off available download bandwidth and video quality, to optimize the viewing experience. There are two presets: Constrained bandwidth delivery uses a lower bitrate for each quality level. Use it if you have low download bandwidth and/or simple video content (e.g., talking heads) Higher bandwidth delivery uses a higher bitrate for each quality level. Use it if you have high download bandwidth and/or complex video content (e.g., flashes and quick scene changes).
|
413
429
|
*/
|
414
430
|
type?: ChannelType;
|
415
431
|
}
|
@@ -1088,6 +1104,7 @@ declare namespace IVS {
|
|
1088
1104
|
targetIntervalSeconds?: TargetIntervalSeconds;
|
1089
1105
|
}
|
1090
1106
|
export type Time = Date;
|
1107
|
+
export type TranscodePreset = "HIGHER_BANDWIDTH_DELIVERY"|"CONSTRAINED_BANDWIDTH_DELIVERY"|string;
|
1091
1108
|
export interface UntagResourceRequest {
|
1092
1109
|
/**
|
1093
1110
|
* ARN of the resource for which tags are to be removed. The ARN must be URL-encoded.
|
@@ -1121,12 +1138,16 @@ declare namespace IVS {
|
|
1121
1138
|
* Channel name.
|
1122
1139
|
*/
|
1123
1140
|
name?: ChannelName;
|
1141
|
+
/**
|
1142
|
+
* Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
1143
|
+
*/
|
1144
|
+
preset?: TranscodePreset;
|
1124
1145
|
/**
|
1125
1146
|
* Recording-configuration ARN. If this is set to an empty string, recording is disabled. A value other than an empty string indicates that recording is enabled
|
1126
1147
|
*/
|
1127
1148
|
recordingConfigurationArn?: ChannelRecordingConfigurationArn;
|
1128
1149
|
/**
|
1129
|
-
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default.
|
1150
|
+
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable input resolution or bitrate, the stream probably will disconnect immediately. Some types generate multiple qualities (renditions) from the original input; this automatically gives viewers the best experience for their devices and network conditions. Some types provide transcoded video; transcoding allows higher playback quality across a range of download speeds. Default: STANDARD. Valid values: BASIC: Video is transmuxed: Amazon IVS delivers the original input quality to viewers. The viewer’s video-quality choice is limited to the original input. Input resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p. Original audio is passed through. STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default when you create a channel. ADVANCED_SD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at SD quality (480p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. ADVANCED_HD: Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at HD quality (720p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available. Optional transcode presets (available for the ADVANCED types) allow you to trade off available download bandwidth and video quality, to optimize the viewing experience. There are two presets: Constrained bandwidth delivery uses a lower bitrate for each quality level. Use it if you have low download bandwidth and/or simple video content (e.g., talking heads) Higher bandwidth delivery uses a higher bitrate for each quality level. Use it if you have high download bandwidth and/or complex video content (e.g., flashes and quick scene changes).
|
1130
1151
|
*/
|
1131
1152
|
type?: ChannelType;
|
1132
1153
|
}
|
package/clients/m2.d.ts
CHANGED
@@ -331,6 +331,10 @@ declare namespace M2 {
|
|
331
331
|
* The name of the application.
|
332
332
|
*/
|
333
333
|
name: EntityName;
|
334
|
+
/**
|
335
|
+
* The Amazon Resource Name (ARN) of the role associated with the application.
|
336
|
+
*/
|
337
|
+
roleArn?: Arn;
|
334
338
|
/**
|
335
339
|
* The status of the application.
|
336
340
|
*/
|
@@ -380,6 +384,9 @@ declare namespace M2 {
|
|
380
384
|
* The unique identifier of the application that hosts this batch job.
|
381
385
|
*/
|
382
386
|
applicationId: Identifier;
|
387
|
+
/**
|
388
|
+
* The unique identifier of this batch job.
|
389
|
+
*/
|
383
390
|
batchJobIdentifier?: BatchJobIdentifier;
|
384
391
|
/**
|
385
392
|
* The timestamp when this batch job execution ended.
|
@@ -402,7 +409,7 @@ declare namespace M2 {
|
|
402
409
|
*/
|
403
410
|
jobType?: BatchJobType;
|
404
411
|
/**
|
405
|
-
*
|
412
|
+
* The batch job return code from either the Blu Age or Micro Focus runtime engines. For more information, see Batch return codes in the IBM WebSphere Application Server documentation.
|
406
413
|
*/
|
407
414
|
returnCode?: String;
|
408
415
|
/**
|
@@ -468,6 +475,10 @@ declare namespace M2 {
|
|
468
475
|
* The unique identifier of the application.
|
469
476
|
*/
|
470
477
|
name: EntityName;
|
478
|
+
/**
|
479
|
+
* The Amazon Resource Name (ARN) of the role associated with the application.
|
480
|
+
*/
|
481
|
+
roleArn?: Arn;
|
471
482
|
/**
|
472
483
|
* A list of tags to apply to the application.
|
473
484
|
*/
|
@@ -708,6 +719,14 @@ declare namespace M2 {
|
|
708
719
|
* The generation data group of the data set.
|
709
720
|
*/
|
710
721
|
gdg?: GdgDetailAttributes;
|
722
|
+
/**
|
723
|
+
* The details of a PO type data set.
|
724
|
+
*/
|
725
|
+
po?: PoDetailAttributes;
|
726
|
+
/**
|
727
|
+
* The details of a PS type data set.
|
728
|
+
*/
|
729
|
+
ps?: PsDetailAttributes;
|
711
730
|
/**
|
712
731
|
* The details of a VSAM data set.
|
713
732
|
*/
|
@@ -718,6 +737,14 @@ declare namespace M2 {
|
|
718
737
|
* The generation data group of the data set.
|
719
738
|
*/
|
720
739
|
gdg?: GdgAttributes;
|
740
|
+
/**
|
741
|
+
* The details of a PO type data set.
|
742
|
+
*/
|
743
|
+
po?: PoAttributes;
|
744
|
+
/**
|
745
|
+
* The details of a PS type data set.
|
746
|
+
*/
|
747
|
+
ps?: PsAttributes;
|
721
748
|
/**
|
722
749
|
* The details of a VSAM data set.
|
723
750
|
*/
|
@@ -992,6 +1019,10 @@ declare namespace M2 {
|
|
992
1019
|
* The unique identifier of the application.
|
993
1020
|
*/
|
994
1021
|
name: EntityName;
|
1022
|
+
/**
|
1023
|
+
* The Amazon Resource Name (ARN) of the role associated with the application.
|
1024
|
+
*/
|
1025
|
+
roleArn?: Arn;
|
995
1026
|
/**
|
996
1027
|
* The status of the application.
|
997
1028
|
*/
|
@@ -1064,6 +1095,9 @@ declare namespace M2 {
|
|
1064
1095
|
* The identifier of the application.
|
1065
1096
|
*/
|
1066
1097
|
applicationId: Identifier;
|
1098
|
+
/**
|
1099
|
+
* The unique identifier of this batch job.
|
1100
|
+
*/
|
1067
1101
|
batchJobIdentifier?: BatchJobIdentifier;
|
1068
1102
|
/**
|
1069
1103
|
* The timestamp when the batch job execution ended.
|
@@ -1090,7 +1124,7 @@ declare namespace M2 {
|
|
1090
1124
|
*/
|
1091
1125
|
jobUser?: String100;
|
1092
1126
|
/**
|
1093
|
-
*
|
1127
|
+
* The batch job return code from either the Blu Age or Micro Focus runtime engines. For more information, see Batch return codes in the IBM WebSphere Application Server documentation.
|
1094
1128
|
*/
|
1095
1129
|
returnCode?: String;
|
1096
1130
|
/**
|
@@ -1617,6 +1651,30 @@ declare namespace M2 {
|
|
1617
1651
|
*/
|
1618
1652
|
schedule?: MaintenanceSchedule;
|
1619
1653
|
}
|
1654
|
+
export interface PoAttributes {
|
1655
|
+
/**
|
1656
|
+
* The character set encoding of the data set.
|
1657
|
+
*/
|
1658
|
+
encoding?: String;
|
1659
|
+
/**
|
1660
|
+
* The format of the data set records.
|
1661
|
+
*/
|
1662
|
+
format: String;
|
1663
|
+
/**
|
1664
|
+
* An array containing one or more filename extensions, allowing you to specify which files to be included as PDS member.
|
1665
|
+
*/
|
1666
|
+
memberFileExtensions: String20List;
|
1667
|
+
}
|
1668
|
+
export interface PoDetailAttributes {
|
1669
|
+
/**
|
1670
|
+
* The character set encoding of the data set.
|
1671
|
+
*/
|
1672
|
+
encoding: String;
|
1673
|
+
/**
|
1674
|
+
* The format of the data set records.
|
1675
|
+
*/
|
1676
|
+
format: String;
|
1677
|
+
}
|
1620
1678
|
export type PortList = Integer[];
|
1621
1679
|
export interface PrimaryKey {
|
1622
1680
|
/**
|
@@ -1632,6 +1690,26 @@ declare namespace M2 {
|
|
1632
1690
|
*/
|
1633
1691
|
offset: Integer;
|
1634
1692
|
}
|
1693
|
+
export interface PsAttributes {
|
1694
|
+
/**
|
1695
|
+
* The character set encoding of the data set.
|
1696
|
+
*/
|
1697
|
+
encoding?: String;
|
1698
|
+
/**
|
1699
|
+
* The format of the data set records.
|
1700
|
+
*/
|
1701
|
+
format: String;
|
1702
|
+
}
|
1703
|
+
export interface PsDetailAttributes {
|
1704
|
+
/**
|
1705
|
+
* The character set encoding of the data set.
|
1706
|
+
*/
|
1707
|
+
encoding: String;
|
1708
|
+
/**
|
1709
|
+
* The format of the data set records.
|
1710
|
+
*/
|
1711
|
+
format: String;
|
1712
|
+
}
|
1635
1713
|
export interface RecordLength {
|
1636
1714
|
/**
|
1637
1715
|
* The maximum record length. In case of fixed, both minimum and maximum are the same.
|
@@ -1710,6 +1788,7 @@ declare namespace M2 {
|
|
1710
1788
|
export type String20 = string;
|
1711
1789
|
export type String200 = string;
|
1712
1790
|
export type String2000 = string;
|
1791
|
+
export type String20List = String20[];
|
1713
1792
|
export type String50 = string;
|
1714
1793
|
export type String50List = String50[];
|
1715
1794
|
export type StringFree65000 = string;
|
package/clients/rds.d.ts
CHANGED
@@ -1959,7 +1959,7 @@ declare namespace RDS {
|
|
1959
1959
|
*/
|
1960
1960
|
AllocatedStorage?: IntegerOptional;
|
1961
1961
|
/**
|
1962
|
-
* Specifies the storage type to be associated with the DB cluster. This setting is required to create a Multi-AZ DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters) Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters) Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1962
|
+
* Specifies the storage type to be associated with the DB cluster. This setting is required to create a Multi-AZ DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters) Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters) Valid for: Aurora DB clusters and Multi-AZ DB clusters For more information on storage types for Aurora DB clusters, see Storage configurations for Amazon Aurora DB clusters. For more information on storage types for Multi-AZ DB clusters, see Settings for creating Multi-AZ DB clusters.
|
1963
1963
|
*/
|
1964
1964
|
StorageType?: String;
|
1965
1965
|
/**
|
@@ -6582,6 +6582,10 @@ declare namespace RDS {
|
|
6582
6582
|
* The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager. This setting is valid only if both of the following conditions are met: The DB instance doesn't manage the master user password in Amazon Web Services Secrets Manager. If the DB instance already manages the master user password in Amazon Web Services Secrets Manager, you can't change the KMS key used to encrypt the secret. You are turning on ManageMasterUserPassword to manage the master user password in Amazon Web Services Secrets Manager. If you are turning on ManageMasterUserPassword and don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.
|
6583
6583
|
*/
|
6584
6584
|
MasterUserSecretKmsKeyId?: String;
|
6585
|
+
/**
|
6586
|
+
* The target Oracle DB engine when you convert a non-CDB to a CDB. This intermediate step is necessary to upgrade an Oracle Database 19c non-CDB to an Oracle Database 21c CDB. Note the following requirements: Make sure that you specify oracle-ee-cdb or oracle-se2-cdb. Make sure that your DB engine runs Oracle Database 19c with an April 2021 or later RU. Note the following limitations: You can't convert a CDB to a non-CDB. You can't convert a replica database. You can't convert a non-CDB to a CDB and upgrade the engine version in the same command. You can't convert the existing custom parameter or option group when it has options or parameters that are permanent or persistent. In this situation, the DB instance reverts to the default option and parameter group. To avoid reverting to the default, specify a new parameter group with --db-parameter-group-name and a new option group with --option-group-name.
|
6587
|
+
*/
|
6588
|
+
Engine?: String;
|
6585
6589
|
}
|
6586
6590
|
export interface ModifyDBInstanceResult {
|
6587
6591
|
DBInstance?: DBInstance;
|
@@ -6707,7 +6711,7 @@ declare namespace RDS {
|
|
6707
6711
|
*/
|
6708
6712
|
DBSnapshotIdentifier: String;
|
6709
6713
|
/**
|
6710
|
-
* The engine version to upgrade the DB snapshot to. The following are the database engines and engine versions that are available when you upgrade a DB snapshot. MySQL 5.5.46 (supported for 5.1 DB snapshots) Oracle
|
6714
|
+
* The engine version to upgrade the DB snapshot to. The following are the database engines and engine versions that are available when you upgrade a DB snapshot. MySQL 5.5.46 (supported for 5.1 DB snapshots) Oracle 12.1.0.2.v8 (supported for 12.1.0.1 DB snapshots) 11.2.0.4.v12 (supported for 11.2.0.2 DB snapshots) 11.2.0.4.v11 (supported for 11.2.0.3 DB snapshots) PostgreSQL For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS.
|
6711
6715
|
*/
|
6712
6716
|
EngineVersion?: String;
|
6713
6717
|
/**
|
@@ -7435,6 +7439,10 @@ declare namespace RDS {
|
|
7435
7439
|
* The storage throughput of the DB instance.
|
7436
7440
|
*/
|
7437
7441
|
StorageThroughput?: IntegerOptional;
|
7442
|
+
/**
|
7443
|
+
* The database engine of the DB instance.
|
7444
|
+
*/
|
7445
|
+
Engine?: String;
|
7438
7446
|
}
|
7439
7447
|
export interface ProcessorFeature {
|
7440
7448
|
/**
|
package/clients/sagemaker.d.ts
CHANGED
@@ -3211,7 +3211,7 @@ declare namespace SageMaker {
|
|
3211
3211
|
*/
|
3212
3212
|
ChannelType?: AutoMLChannelType;
|
3213
3213
|
/**
|
3214
|
-
* The content type of the data from the input source. The following are the allowed content types for different problems: ImageClassification: image/png, image/jpeg, image
|
3214
|
+
* The content type of the data from the input source. The following are the allowed content types for different problems: ImageClassification: image/png, image/jpeg, or image/*. The default value is image/*. TextClassification: text/csv;header=present or x-application/vnd.amazon+parquet. The default value is text/csv;header=present.
|
3215
3215
|
*/
|
3216
3216
|
ContentType?: ContentType;
|
3217
3217
|
/**
|
@@ -6828,7 +6828,7 @@ declare namespace SageMaker {
|
|
6828
6828
|
}
|
6829
6829
|
export interface DeploymentRecommendation {
|
6830
6830
|
/**
|
6831
|
-
* Status of the deployment recommendation. NOT_APPLICABLE means that SageMaker is unable to provide a default recommendation for the model using the information provided.
|
6831
|
+
* Status of the deployment recommendation. The status NOT_APPLICABLE means that SageMaker is unable to provide a default recommendation for the model using the information provided. If the deployment status is IN_PROGRESS, retry your API call after a few seconds to get a COMPLETED deployment recommendation.
|
6832
6832
|
*/
|
6833
6833
|
RecommendationStatus: RecommendationStatus;
|
6834
6834
|
/**
|
@@ -356,11 +356,11 @@ declare class ServiceCatalog extends Service {
|
|
356
356
|
*/
|
357
357
|
disassociateBudgetFromResource(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateBudgetFromResourceOutput) => void): Request<ServiceCatalog.Types.DisassociateBudgetFromResourceOutput, AWSError>;
|
358
358
|
/**
|
359
|
-
* Disassociates a previously associated principal ARN from a specified portfolio. The PrincipalType and PrincipalARN must match the AssociatePrincipalWithPortfolio call request details. For example, to disassociate an association created with a PrincipalARN of PrincipalType IAM you must use the PrincipalType IAM when calling DisassociatePrincipalFromPortfolio. For portfolios that have been shared with principal name sharing enabled: after disassociating a principal, share recipient accounts will no longer be able to provision products in this portfolio using a role matching the name of the associated principal.
|
359
|
+
* Disassociates a previously associated principal ARN from a specified portfolio. The PrincipalType and PrincipalARN must match the AssociatePrincipalWithPortfolio call request details. For example, to disassociate an association created with a PrincipalARN of PrincipalType IAM you must use the PrincipalType IAM when calling DisassociatePrincipalFromPortfolio. For portfolios that have been shared with principal name sharing enabled: after disassociating a principal, share recipient accounts will no longer be able to provision products in this portfolio using a role matching the name of the associated principal. For more information, review associate-principal-with-portfolio in the Amazon Web Services CLI Command Reference. If you disassociate a principal from a portfolio, with PrincipalType as IAM, the same principal will still have access to the portfolio if it matches one of the associated principals of type IAM_PATTERN. To fully remove access for a principal, verify all the associated Principals of type IAM_PATTERN, and then ensure you disassociate any IAM_PATTERN principals that match the principal whose access you are removing.
|
360
360
|
*/
|
361
361
|
disassociatePrincipalFromPortfolio(params: ServiceCatalog.Types.DisassociatePrincipalFromPortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput) => void): Request<ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput, AWSError>;
|
362
362
|
/**
|
363
|
-
* Disassociates a previously associated principal ARN from a specified portfolio. The PrincipalType and PrincipalARN must match the AssociatePrincipalWithPortfolio call request details. For example, to disassociate an association created with a PrincipalARN of PrincipalType IAM you must use the PrincipalType IAM when calling DisassociatePrincipalFromPortfolio. For portfolios that have been shared with principal name sharing enabled: after disassociating a principal, share recipient accounts will no longer be able to provision products in this portfolio using a role matching the name of the associated principal.
|
363
|
+
* Disassociates a previously associated principal ARN from a specified portfolio. The PrincipalType and PrincipalARN must match the AssociatePrincipalWithPortfolio call request details. For example, to disassociate an association created with a PrincipalARN of PrincipalType IAM you must use the PrincipalType IAM when calling DisassociatePrincipalFromPortfolio. For portfolios that have been shared with principal name sharing enabled: after disassociating a principal, share recipient accounts will no longer be able to provision products in this portfolio using a role matching the name of the associated principal. For more information, review associate-principal-with-portfolio in the Amazon Web Services CLI Command Reference. If you disassociate a principal from a portfolio, with PrincipalType as IAM, the same principal will still have access to the portfolio if it matches one of the associated principals of type IAM_PATTERN. To fully remove access for a principal, verify all the associated Principals of type IAM_PATTERN, and then ensure you disassociate any IAM_PATTERN principals that match the principal whose access you are removing.
|
364
364
|
*/
|
365
365
|
disassociatePrincipalFromPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput) => void): Request<ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput, AWSError>;
|
366
366
|
/**
|
@@ -790,11 +790,11 @@ declare namespace ServiceCatalog {
|
|
790
790
|
*/
|
791
791
|
PortfolioId: Id;
|
792
792
|
/**
|
793
|
-
* The ARN of the principal (user, role, or group).
|
793
|
+
* The ARN of the principal (user, role, or group). The supported value is a fully defined IAM ARN if the PrincipalType is IAM. If the PrincipalType is IAM_PATTERN, the supported value is an IAM ARN without an AccountID in the following format: arn:partition:iam:::resource-type/resource-id The resource-id can be either of the following: Fully formed, for example arn:aws:iam:::role/resource-name or arn:aws:iam:::role/resource-path/resource-name A wildcard ARN. The wildcard ARN accepts IAM_PATTERN values with a "*" or "?" in the resource-id segment of the ARN, for example arn:partition:service:::resource-type/resource-path/resource-name. The new symbols are exclusive to the resource-path and resource-name and cannot be used to replace the resource-type or other ARN values. Examples of an acceptable wildcard ARN: arn:aws:iam:::role/ResourceName_* arn:aws:iam:::role/*ResourceName_? Examples of an unacceptable wildcard ARN: arn:aws:iam:::*ResourceName You can associate multiple IAM_PATTERNs even if the account has no principal with that name. The ARN path and principal name allow unlimited wildcard characters. The "?" wildcard character matches zero or one of any character. This is similar to ".?" in regular regex context. The "*" wildcard character matches any number of any characters. This is similar ".*" in regular regex context. In the IAM Principal ARNs format (arn:partition:iam:::resource-type/resource-path/resource-name), valid resource-type values include user/, group/, or role/. The "?" and "*" are allowed only after the resource-type, in the resource-id segment. You can use special characters anywhere within the resource-id. The "*" also matches the "/" character, allowing paths to be formed within the resource-id. For example, arn:aws:iam:::role/*ResourceName_? matches both arn:aws:iam:::role/pathA/pathB/ResourceName_1 and arn:aws:iam:::role/pathA/ResourceName_1.
|
794
794
|
*/
|
795
795
|
PrincipalARN: PrincipalARN;
|
796
796
|
/**
|
797
|
-
* The principal type. The supported value is IAM if you use a fully defined ARN, or IAM_PATTERN if you use an ARN with no accountID.
|
797
|
+
* The principal type. The supported value is IAM if you use a fully defined ARN, or IAM_PATTERN if you use an ARN with no accountID, with or without wildcard characters.
|
798
798
|
*/
|
799
799
|
PrincipalType: PrincipalType;
|
800
800
|
}
|
@@ -1935,11 +1935,11 @@ declare namespace ServiceCatalog {
|
|
1935
1935
|
*/
|
1936
1936
|
PortfolioId: Id;
|
1937
1937
|
/**
|
1938
|
-
* The ARN of the principal (user, role, or group). This field allows an ARN with no accountID if PrincipalType is IAM_PATTERN.
|
1938
|
+
* The ARN of the principal (user, role, or group). This field allows an ARN with no accountID with or without wildcard characters if PrincipalType is IAM_PATTERN.
|
1939
1939
|
*/
|
1940
1940
|
PrincipalARN: PrincipalARN;
|
1941
1941
|
/**
|
1942
|
-
* The supported value is IAM if you use a fully defined ARN, or IAM_PATTERN if you
|
1942
|
+
* The supported value is IAM if you use a fully defined ARN, or IAM_PATTERN if you specify an IAM ARN with no AccountId, with or without wildcard characters.
|
1943
1943
|
*/
|
1944
1944
|
PrincipalType?: PrincipalType;
|
1945
1945
|
}
|
@@ -2973,11 +2973,11 @@ declare namespace ServiceCatalog {
|
|
2973
2973
|
export type PortfolioShareType = "IMPORTED"|"AWS_SERVICECATALOG"|"AWS_ORGANIZATIONS"|string;
|
2974
2974
|
export interface Principal {
|
2975
2975
|
/**
|
2976
|
-
* The ARN of the principal (user, role, or group). This field allows for an ARN with no accountID if the PrincipalType is an IAM_PATTERN.
|
2976
|
+
* The ARN of the principal (user, role, or group). This field allows for an ARN with no accountID, with or without wildcard characters if the PrincipalType is an IAM_PATTERN. For more information, review associate-principal-with-portfolio in the Amazon Web Services CLI Command Reference.
|
2977
2977
|
*/
|
2978
2978
|
PrincipalARN?: PrincipalARN;
|
2979
2979
|
/**
|
2980
|
-
* The principal type. The supported value is IAM if you use a fully defined ARN, or IAM_PATTERN if you use an ARN with no accountID.
|
2980
|
+
* The principal type. The supported value is IAM if you use a fully defined ARN, or IAM_PATTERN if you use an ARN with no accountID, with or without wildcard characters.
|
2981
2981
|
*/
|
2982
2982
|
PrincipalType?: PrincipalType;
|
2983
2983
|
}
|
package/clients/wafv2.d.ts
CHANGED
@@ -1110,7 +1110,7 @@ declare namespace WAFV2 {
|
|
1110
1110
|
*/
|
1111
1111
|
Cookies?: Cookies;
|
1112
1112
|
/**
|
1113
|
-
* Inspect a string containing the list of the request's header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using
|
1113
|
+
* Inspect a string containing the list of the request's header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using colons and no added spaces, for example Host:User-Agent:Accept:Authorization:Referer. Matches against the header order string are case insensitive.
|
1114
1114
|
*/
|
1115
1115
|
HeaderOrder?: HeaderOrder;
|
1116
1116
|
}
|