p6-cdk-namer 0.8.13 → 0.8.16
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/.jsii +3 -3
- package/changelog.md +1 -1
- package/lib/p6namer.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +13 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +863 -807
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +210 -83
- package/node_modules/aws-sdk/apis/fms-2018-01-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/fsx-2018-03-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/iot-data-2015-05-28.min.json +1 -1
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +222 -154
- package/node_modules/aws-sdk/apis/organizations-2016-11-28.min.json +77 -62
- package/node_modules/aws-sdk/clients/acmpca.d.ts +40 -40
- package/node_modules/aws-sdk/clients/ec2.d.ts +77 -3
- package/node_modules/aws-sdk/clients/fms.d.ts +222 -8
- package/node_modules/aws-sdk/clients/fsx.d.ts +12 -8
- package/node_modules/aws-sdk/clients/iot.d.ts +13 -13
- package/node_modules/aws-sdk/clients/iotdata.d.ts +7 -7
- package/node_modules/aws-sdk/clients/medialive.d.ts +79 -3
- package/node_modules/aws-sdk/clients/organizations.d.ts +144 -129
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +867 -811
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +69 -69
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/p6cdknamer/jsii/jsii.go +2 -2
- package/p6cdknamer/version +1 -1
- package/package.json +4 -4
- package/releasetag.txt +1 -1
- package/version.txt +1 -1
|
@@ -3332,15 +3332,15 @@ declare namespace Iot {
|
|
|
3332
3332
|
}
|
|
3333
3333
|
export interface CreateCustomMetricRequest {
|
|
3334
3334
|
/**
|
|
3335
|
-
* The name of the custom metric. This will be used in the metric report submitted from the device/thing.
|
|
3335
|
+
* The name of the custom metric. This will be used in the metric report submitted from the device/thing. The name can't begin with aws:. You can't change the name after you define it.
|
|
3336
3336
|
*/
|
|
3337
3337
|
metricName: MetricName;
|
|
3338
3338
|
/**
|
|
3339
|
-
*
|
|
3339
|
+
* The friendly name in the console for the custom metric. This name doesn't have to be unique. Don't use this name as the metric identifier in the device metric report. You can update the friendly name after you define it.
|
|
3340
3340
|
*/
|
|
3341
3341
|
displayName?: CustomMetricDisplayName;
|
|
3342
3342
|
/**
|
|
3343
|
-
* The type of the custom metric.
|
|
3343
|
+
* The type of the custom metric. The type number only takes a single metric value as an input, but when you submit the metrics value in the DeviceMetrics report, you must pass it as an array with a single value.
|
|
3344
3344
|
*/
|
|
3345
3345
|
metricType: CustomMetricType;
|
|
3346
3346
|
/**
|
|
@@ -3358,7 +3358,7 @@ declare namespace Iot {
|
|
|
3358
3358
|
*/
|
|
3359
3359
|
metricName?: MetricName;
|
|
3360
3360
|
/**
|
|
3361
|
-
* The Amazon Resource Number (ARN) of the custom metric,
|
|
3361
|
+
* The Amazon Resource Number (ARN) of the custom metric. For example, arn:aws-partition:iot:region:accountId:custommetric/metricName
|
|
3362
3362
|
*/
|
|
3363
3363
|
metricArn?: CustomMetricArn;
|
|
3364
3364
|
}
|
|
@@ -3960,7 +3960,7 @@ declare namespace Iot {
|
|
|
3960
3960
|
*/
|
|
3961
3961
|
roleArn: RoleArn;
|
|
3962
3962
|
/**
|
|
3963
|
-
* How long (in seconds) the credentials will be valid. The default value is 3,600 seconds.
|
|
3963
|
+
* How long (in seconds) the credentials will be valid. The default value is 3,600 seconds. This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.
|
|
3964
3964
|
*/
|
|
3965
3965
|
credentialDurationSeconds?: CredentialDurationSeconds;
|
|
3966
3966
|
/**
|
|
@@ -4221,11 +4221,11 @@ declare namespace Iot {
|
|
|
4221
4221
|
*/
|
|
4222
4222
|
certificateChain?: CodeSigningCertificateChain;
|
|
4223
4223
|
/**
|
|
4224
|
-
* The hash algorithm used to code sign the file.
|
|
4224
|
+
* The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses SHA256 or SHA1, so you can pass either of them based on which was used for generating the signature.
|
|
4225
4225
|
*/
|
|
4226
4226
|
hashAlgorithm?: HashAlgorithm;
|
|
4227
4227
|
/**
|
|
4228
|
-
* The signature algorithm used to code sign the file.
|
|
4228
|
+
* The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ECDSA or RSA, so you can pass either of them based on which was used for generating the signature.
|
|
4229
4229
|
*/
|
|
4230
4230
|
signatureAlgorithm?: SignatureAlgorithm;
|
|
4231
4231
|
}
|
|
@@ -4763,7 +4763,7 @@ declare namespace Iot {
|
|
|
4763
4763
|
*/
|
|
4764
4764
|
metricArn?: CustomMetricArn;
|
|
4765
4765
|
/**
|
|
4766
|
-
* The type of the custom metric.
|
|
4766
|
+
* The type of the custom metric. The type number only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.
|
|
4767
4767
|
*/
|
|
4768
4768
|
metricType?: CustomMetricType;
|
|
4769
4769
|
/**
|
|
@@ -8920,7 +8920,7 @@ declare namespace Iot {
|
|
|
8920
8920
|
*/
|
|
8921
8921
|
verificationCertificate: CertificatePem;
|
|
8922
8922
|
/**
|
|
8923
|
-
* A boolean value that specifies if the CA certificate is set to active.
|
|
8923
|
+
* A boolean value that specifies if the CA certificate is set to active. Valid values: ACTIVE | INACTIVE
|
|
8924
8924
|
*/
|
|
8925
8925
|
setAsActive?: SetAsActive;
|
|
8926
8926
|
/**
|
|
@@ -8956,11 +8956,11 @@ declare namespace Iot {
|
|
|
8956
8956
|
*/
|
|
8957
8957
|
caCertificatePem?: CertificatePem;
|
|
8958
8958
|
/**
|
|
8959
|
-
* A boolean value that specifies if the certificate is set to active.
|
|
8959
|
+
* A boolean value that specifies if the certificate is set to active. Valid values: ACTIVE | INACTIVE
|
|
8960
8960
|
*/
|
|
8961
8961
|
setAsActive?: SetAsActiveFlag;
|
|
8962
8962
|
/**
|
|
8963
|
-
* The status of the register certificate request.
|
|
8963
|
+
* The status of the register certificate request. Valid values that you can use include ACTIVE, INACTIVE, and REVOKED.
|
|
8964
8964
|
*/
|
|
8965
8965
|
status?: CertificateStatus;
|
|
8966
8966
|
}
|
|
@@ -10623,7 +10623,7 @@ declare namespace Iot {
|
|
|
10623
10623
|
*/
|
|
10624
10624
|
metricArn?: CustomMetricArn;
|
|
10625
10625
|
/**
|
|
10626
|
-
* The type of the custom metric.
|
|
10626
|
+
* The type of the custom metric. The type number only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.
|
|
10627
10627
|
*/
|
|
10628
10628
|
metricType?: CustomMetricType;
|
|
10629
10629
|
/**
|
|
@@ -10903,7 +10903,7 @@ declare namespace Iot {
|
|
|
10903
10903
|
*/
|
|
10904
10904
|
roleArn?: RoleArn;
|
|
10905
10905
|
/**
|
|
10906
|
-
* The number of seconds the credential will be valid.
|
|
10906
|
+
* The number of seconds the credential will be valid. This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.
|
|
10907
10907
|
*/
|
|
10908
10908
|
credentialDurationSeconds?: CredentialDurationSeconds;
|
|
10909
10909
|
}
|
|
@@ -20,11 +20,11 @@ declare class IotData extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
deleteThingShadow(callback?: (err: AWSError, data: IotData.Types.DeleteThingShadowResponse) => void): Request<IotData.Types.DeleteThingShadowResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Gets the details of a single retained message for the specified topic. This action returns the message payload of the retained message, which can incur messaging costs. To list only the topic names of the retained messages, call ListRetainedMessages. Requires permission to access the GetRetainedMessage action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
23
|
+
* Gets the details of a single retained message for the specified topic. This action returns the message payload of the retained message, which can incur messaging costs. To list only the topic names of the retained messages, call ListRetainedMessages. Requires permission to access the GetRetainedMessage action. For more information about messaging costs, see Amazon Web Services IoT Core pricing - Messaging.
|
|
24
24
|
*/
|
|
25
25
|
getRetainedMessage(params: IotData.Types.GetRetainedMessageRequest, callback?: (err: AWSError, data: IotData.Types.GetRetainedMessageResponse) => void): Request<IotData.Types.GetRetainedMessageResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Gets the details of a single retained message for the specified topic. This action returns the message payload of the retained message, which can incur messaging costs. To list only the topic names of the retained messages, call ListRetainedMessages. Requires permission to access the GetRetainedMessage action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
27
|
+
* Gets the details of a single retained message for the specified topic. This action returns the message payload of the retained message, which can incur messaging costs. To list only the topic names of the retained messages, call ListRetainedMessages. Requires permission to access the GetRetainedMessage action. For more information about messaging costs, see Amazon Web Services IoT Core pricing - Messaging.
|
|
28
28
|
*/
|
|
29
29
|
getRetainedMessage(callback?: (err: AWSError, data: IotData.Types.GetRetainedMessageResponse) => void): Request<IotData.Types.GetRetainedMessageResponse, AWSError>;
|
|
30
30
|
/**
|
|
@@ -44,19 +44,19 @@ declare class IotData extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
listNamedShadowsForThing(callback?: (err: AWSError, data: IotData.Types.ListNamedShadowsForThingResponse) => void): Request<IotData.Types.ListNamedShadowsForThingResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Lists summary information about the retained messages stored for the account. This action returns only the topic names of the retained messages. It doesn't return any message payloads. Although this action doesn't return a message payload, it can still incur messaging costs. To get the message payload of a retained message, call GetRetainedMessage with the topic name of the retained message. Requires permission to access the ListRetainedMessages action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
47
|
+
* Lists summary information about the retained messages stored for the account. This action returns only the topic names of the retained messages. It doesn't return any message payloads. Although this action doesn't return a message payload, it can still incur messaging costs. To get the message payload of a retained message, call GetRetainedMessage with the topic name of the retained message. Requires permission to access the ListRetainedMessages action. For more information about messaging costs, see Amazon Web Services IoT Core pricing - Messaging.
|
|
48
48
|
*/
|
|
49
49
|
listRetainedMessages(params: IotData.Types.ListRetainedMessagesRequest, callback?: (err: AWSError, data: IotData.Types.ListRetainedMessagesResponse) => void): Request<IotData.Types.ListRetainedMessagesResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Lists summary information about the retained messages stored for the account. This action returns only the topic names of the retained messages. It doesn't return any message payloads. Although this action doesn't return a message payload, it can still incur messaging costs. To get the message payload of a retained message, call GetRetainedMessage with the topic name of the retained message. Requires permission to access the ListRetainedMessages action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
51
|
+
* Lists summary information about the retained messages stored for the account. This action returns only the topic names of the retained messages. It doesn't return any message payloads. Although this action doesn't return a message payload, it can still incur messaging costs. To get the message payload of a retained message, call GetRetainedMessage with the topic name of the retained message. Requires permission to access the ListRetainedMessages action. For more information about messaging costs, see Amazon Web Services IoT Core pricing - Messaging.
|
|
52
52
|
*/
|
|
53
53
|
listRetainedMessages(callback?: (err: AWSError, data: IotData.Types.ListRetainedMessagesResponse) => void): Request<IotData.Types.ListRetainedMessagesResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Publishes an MQTT message. Requires permission to access the Publish action. For more information about MQTT messages, see MQTT Protocol in the IoT Developer Guide. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
55
|
+
* Publishes an MQTT message. Requires permission to access the Publish action. For more information about MQTT messages, see MQTT Protocol in the IoT Developer Guide. For more information about messaging costs, see Amazon Web Services IoT Core pricing - Messaging.
|
|
56
56
|
*/
|
|
57
57
|
publish(params: IotData.Types.PublishRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Publishes an MQTT message. Requires permission to access the Publish action. For more information about MQTT messages, see MQTT Protocol in the IoT Developer Guide. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
59
|
+
* Publishes an MQTT message. Requires permission to access the Publish action. For more information about MQTT messages, see MQTT Protocol in the IoT Developer Guide. For more information about messaging costs, see Amazon Web Services IoT Core pricing - Messaging.
|
|
60
60
|
*/
|
|
61
61
|
publish(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
62
62
|
/**
|
|
@@ -194,7 +194,7 @@ declare namespace IotData {
|
|
|
194
194
|
*/
|
|
195
195
|
retain?: Retain;
|
|
196
196
|
/**
|
|
197
|
-
* The message body. MQTT accepts text, binary, and empty (null) message payloads. Publishing an empty (null) payload with retain = true deletes the retained message identified by topic from IoT Core.
|
|
197
|
+
* The message body. MQTT accepts text, binary, and empty (null) message payloads. Publishing an empty (null) payload with retain = true deletes the retained message identified by topic from Amazon Web Services IoT Core.
|
|
198
198
|
*/
|
|
199
199
|
payload?: Payload;
|
|
200
200
|
}
|
|
@@ -1337,6 +1337,10 @@ one destination per packager.
|
|
|
1337
1337
|
* The log level being written to CloudWatch Logs.
|
|
1338
1338
|
*/
|
|
1339
1339
|
LogLevel?: LogLevel;
|
|
1340
|
+
/**
|
|
1341
|
+
* Maintenance settings for this channel.
|
|
1342
|
+
*/
|
|
1343
|
+
Maintenance?: MaintenanceStatus;
|
|
1340
1344
|
/**
|
|
1341
1345
|
* The name of the channel. (user-mutable)
|
|
1342
1346
|
*/
|
|
@@ -1411,6 +1415,10 @@ one destination per packager.
|
|
|
1411
1415
|
* The log level being written to CloudWatch Logs.
|
|
1412
1416
|
*/
|
|
1413
1417
|
LogLevel?: LogLevel;
|
|
1418
|
+
/**
|
|
1419
|
+
* Maintenance settings for this channel.
|
|
1420
|
+
*/
|
|
1421
|
+
Maintenance?: MaintenanceStatus;
|
|
1414
1422
|
/**
|
|
1415
1423
|
* The name of the channel. (user-mutable)
|
|
1416
1424
|
*/
|
|
@@ -1466,6 +1474,10 @@ one destination per packager.
|
|
|
1466
1474
|
* The log level to write to CloudWatch Logs.
|
|
1467
1475
|
*/
|
|
1468
1476
|
LogLevel?: LogLevel;
|
|
1477
|
+
/**
|
|
1478
|
+
* Maintenance settings for this channel.
|
|
1479
|
+
*/
|
|
1480
|
+
Maintenance?: MaintenanceCreateSettings;
|
|
1469
1481
|
/**
|
|
1470
1482
|
* Name of channel.
|
|
1471
1483
|
*/
|
|
@@ -1686,6 +1698,10 @@ one destination per packager.
|
|
|
1686
1698
|
* The log level being written to CloudWatch Logs.
|
|
1687
1699
|
*/
|
|
1688
1700
|
LogLevel?: LogLevel;
|
|
1701
|
+
/**
|
|
1702
|
+
* Maintenance settings for this channel.
|
|
1703
|
+
*/
|
|
1704
|
+
Maintenance?: MaintenanceStatus;
|
|
1689
1705
|
/**
|
|
1690
1706
|
* The name of the channel. (user-mutable)
|
|
1691
1707
|
*/
|
|
@@ -1950,6 +1966,10 @@ one destination per packager.
|
|
|
1950
1966
|
* The log level being written to CloudWatch Logs.
|
|
1951
1967
|
*/
|
|
1952
1968
|
LogLevel?: LogLevel;
|
|
1969
|
+
/**
|
|
1970
|
+
* Maintenance settings for this channel.
|
|
1971
|
+
*/
|
|
1972
|
+
Maintenance?: MaintenanceStatus;
|
|
1953
1973
|
/**
|
|
1954
1974
|
* The name of the channel. (user-mutable)
|
|
1955
1975
|
*/
|
|
@@ -2623,7 +2643,7 @@ provide the language to consider when translating the image-based source to text
|
|
|
2623
2643
|
export type Eac3SurroundMode = "DISABLED"|"ENABLED"|"NOT_INDICATED"|string;
|
|
2624
2644
|
export interface EbuTtDDestinationSettings {
|
|
2625
2645
|
/**
|
|
2626
|
-
*
|
|
2646
|
+
* Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
|
|
2627
2647
|
*/
|
|
2628
2648
|
CopyrightHolder?: __stringMax1000;
|
|
2629
2649
|
/**
|
|
@@ -4728,6 +4748,49 @@ When a segmentation style of "maintainCadence" is selected and a segment is trun
|
|
|
4728
4748
|
VideoPid?: __string;
|
|
4729
4749
|
}
|
|
4730
4750
|
export type M3u8TimedMetadataBehavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
|
|
4751
|
+
export interface MaintenanceCreateSettings {
|
|
4752
|
+
/**
|
|
4753
|
+
* Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows.
|
|
4754
|
+
*/
|
|
4755
|
+
MaintenanceDay?: MaintenanceDay;
|
|
4756
|
+
/**
|
|
4757
|
+
* Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows.
|
|
4758
|
+
*/
|
|
4759
|
+
MaintenanceStartTime?: __stringPattern010920300;
|
|
4760
|
+
}
|
|
4761
|
+
export type MaintenanceDay = "MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY"|"SUNDAY"|string;
|
|
4762
|
+
export interface MaintenanceStatus {
|
|
4763
|
+
/**
|
|
4764
|
+
* The currently selected maintenance day.
|
|
4765
|
+
*/
|
|
4766
|
+
MaintenanceDay?: MaintenanceDay;
|
|
4767
|
+
/**
|
|
4768
|
+
* Maintenance is required by the displayed date and time. Date and time is in ISO.
|
|
4769
|
+
*/
|
|
4770
|
+
MaintenanceDeadline?: __string;
|
|
4771
|
+
/**
|
|
4772
|
+
* The currently scheduled maintenance date and time. Date and time is in ISO.
|
|
4773
|
+
*/
|
|
4774
|
+
MaintenanceScheduledDate?: __string;
|
|
4775
|
+
/**
|
|
4776
|
+
* The currently selected maintenance start time. Time is in UTC.
|
|
4777
|
+
*/
|
|
4778
|
+
MaintenanceStartTime?: __string;
|
|
4779
|
+
}
|
|
4780
|
+
export interface MaintenanceUpdateSettings {
|
|
4781
|
+
/**
|
|
4782
|
+
* Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows.
|
|
4783
|
+
*/
|
|
4784
|
+
MaintenanceDay?: MaintenanceDay;
|
|
4785
|
+
/**
|
|
4786
|
+
* Choose a specific date for maintenance to occur. The chosen date is used for the next maintenance window only.
|
|
4787
|
+
*/
|
|
4788
|
+
MaintenanceScheduledDate?: __string;
|
|
4789
|
+
/**
|
|
4790
|
+
* Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows.
|
|
4791
|
+
*/
|
|
4792
|
+
MaintenanceStartTime?: __stringPattern010920300;
|
|
4793
|
+
}
|
|
4731
4794
|
export type MaxResults = number;
|
|
4732
4795
|
export interface MediaConnectFlow {
|
|
4733
4796
|
/**
|
|
@@ -5412,7 +5475,7 @@ When this field is defined, ConstantBitrate must be undefined.
|
|
|
5412
5475
|
}
|
|
5413
5476
|
export interface OutputGroup {
|
|
5414
5477
|
/**
|
|
5415
|
-
* Custom output group name optionally defined by the user.
|
|
5478
|
+
* Custom output group name optionally defined by the user.
|
|
5416
5479
|
*/
|
|
5417
5480
|
Name?: __stringMax32;
|
|
5418
5481
|
/**
|
|
@@ -6020,6 +6083,10 @@ one destination per packager.
|
|
|
6020
6083
|
* The log level being written to CloudWatch Logs.
|
|
6021
6084
|
*/
|
|
6022
6085
|
LogLevel?: LogLevel;
|
|
6086
|
+
/**
|
|
6087
|
+
* Maintenance settings for this channel.
|
|
6088
|
+
*/
|
|
6089
|
+
Maintenance?: MaintenanceStatus;
|
|
6023
6090
|
/**
|
|
6024
6091
|
* The name of the channel. (user-mutable)
|
|
6025
6092
|
*/
|
|
@@ -6209,6 +6276,10 @@ one destination per packager.
|
|
|
6209
6276
|
* The log level being written to CloudWatch Logs.
|
|
6210
6277
|
*/
|
|
6211
6278
|
LogLevel?: LogLevel;
|
|
6279
|
+
/**
|
|
6280
|
+
* Maintenance settings for this channel.
|
|
6281
|
+
*/
|
|
6282
|
+
Maintenance?: MaintenanceStatus;
|
|
6212
6283
|
/**
|
|
6213
6284
|
* The name of the channel. (user-mutable)
|
|
6214
6285
|
*/
|
|
@@ -6374,7 +6445,7 @@ one destination per packager.
|
|
|
6374
6445
|
}
|
|
6375
6446
|
export interface TtmlDestinationSettings {
|
|
6376
6447
|
/**
|
|
6377
|
-
*
|
|
6448
|
+
* This field is not currently supported and will not affect the output styling. Leave the default value.
|
|
6378
6449
|
*/
|
|
6379
6450
|
StyleControl?: TtmlDestinationStyleControl;
|
|
6380
6451
|
}
|
|
@@ -6455,6 +6526,10 @@ one destination per packager.
|
|
|
6455
6526
|
* The log level to write to CloudWatch Logs.
|
|
6456
6527
|
*/
|
|
6457
6528
|
LogLevel?: LogLevel;
|
|
6529
|
+
/**
|
|
6530
|
+
* Maintenance settings for this channel.
|
|
6531
|
+
*/
|
|
6532
|
+
Maintenance?: MaintenanceUpdateSettings;
|
|
6458
6533
|
/**
|
|
6459
6534
|
* The name of the channel.
|
|
6460
6535
|
*/
|
|
@@ -6931,6 +7006,7 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
|
|
|
6931
7006
|
export type __stringMin34Max34 = string;
|
|
6932
7007
|
export type __stringMin3Max3 = string;
|
|
6933
7008
|
export type __stringMin6Max6 = string;
|
|
7009
|
+
export type __stringPattern010920300 = string;
|
|
6934
7010
|
export type InputDeviceThumbnail = Buffer|Uint8Array|Blob|string|Readable;
|
|
6935
7011
|
export type AcceptHeader = "image/jpeg"|string;
|
|
6936
7012
|
export type ContentType = "image/jpeg"|string;
|