@awboost/cfn-resource-types 0.1.344 → 0.1.345

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.
@@ -79,6 +79,14 @@ export type CloudWatchLogsConfig = {
79
79
  Status: string;
80
80
  StreamName?: string;
81
81
  };
82
+ /**
83
+ * Type definition for `AWS::CodeBuild::Project.DockerServer`.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-dockerserver.html}
85
+ */
86
+ export type DockerServer = {
87
+ ComputeType: string;
88
+ SecurityGroupIds?: string[];
89
+ };
82
90
  /**
83
91
  * Type definition for `AWS::CodeBuild::Project.Environment`.
84
92
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html}
@@ -86,6 +94,7 @@ export type CloudWatchLogsConfig = {
86
94
  export type Environment = {
87
95
  Certificate?: string;
88
96
  ComputeType: string;
97
+ DockerServer?: DockerServer;
89
98
  EnvironmentVariables?: EnvironmentVariable[];
90
99
  Fleet?: ProjectFleet;
91
100
  Image: string;
@@ -242,6 +242,8 @@ export type KeyValue = {
242
242
  */
243
243
  export type ManagedScalingPolicy = {
244
244
  ComputeLimits?: ComputeLimits;
245
+ ScalingStrategy?: string;
246
+ UtilizationPerformanceIndex?: number;
245
247
  };
246
248
  /**
247
249
  * Type definition for `AWS::EMR::Cluster.MetricDimension`.
@@ -74,7 +74,7 @@ export type IdNamespaceIdMappingWorkflowProperties = {
74
74
  */
75
75
  export type IdNamespaceInputSource = {
76
76
  /**
77
- * @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(idnamespace/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):glue:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(table/[a-zA-Z_0-9-]{1,255}/[a-zA-Z_0-9-]{1,255})$`
77
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(matchingworkflow/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):glue:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(table/[a-zA-Z_0-9-]{1,255}/[a-zA-Z_0-9-]{1,255})$`
78
78
  */
79
79
  InputSourceARN: string;
80
80
  /**
@@ -47,6 +47,14 @@ export type ClientConfigurations = {
47
47
  Clients?: string;
48
48
  Options?: string[];
49
49
  };
50
+ /**
51
+ * Type definition for `AWS::FSx::FileSystem.DataReadCacheConfiguration`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-datareadcacheconfiguration.html}
53
+ */
54
+ export type DataReadCacheConfiguration = {
55
+ SizeGiB?: number;
56
+ SizingMode?: string;
57
+ };
50
58
  /**
51
59
  * Type definition for `AWS::FSx::FileSystem.DiskIopsConfiguration`.
52
60
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-diskiopsconfiguration.html}
@@ -65,6 +73,7 @@ export type LustreConfiguration = {
65
73
  CopyTagsToBackups?: boolean;
66
74
  DailyAutomaticBackupStartTime?: string;
67
75
  DataCompressionType?: string;
76
+ DataReadCacheConfiguration?: DataReadCacheConfiguration;
68
77
  DeploymentType?: string;
69
78
  DriveCacheType?: string;
70
79
  EfaEnabled?: boolean;
@@ -73,6 +82,7 @@ export type LustreConfiguration = {
73
82
  ImportedFileChunkSize?: number;
74
83
  MetadataConfiguration?: MetadataConfiguration;
75
84
  PerUnitStorageThroughput?: number;
85
+ ThroughputCapacity?: number;
76
86
  WeeklyMaintenanceStartTime?: string;
77
87
  };
78
88
  /**
@@ -22,7 +22,7 @@ export type IAMRoleProperties = {
22
22
  ManagedPolicyArns?: string[];
23
23
  /**
24
24
  * The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours.
25
- Anyone who assumes the role from the CLI or API can use the ``DurationSeconds`` API parameter or the ``duration-seconds`` CLI parameter to request a longer session. The ``MaxSessionDuration`` setting determines the maximum duration that can be requested using the ``DurationSeconds`` parameter. If users don't specify a value for the ``DurationSeconds`` parameter, their security credentials are valid for one hour by default. This applies when you use the ``AssumeRole*`` API operations or the ``assume-role*`` CLI operations but does not apply when you use those operations to create a console URL. For more information, see [Using IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html) in the *IAM User Guide*.
25
+ Anyone who assumes the role from the CLI or API can use the ``DurationSeconds`` API parameter or the ``duration-seconds``CLI parameter to request a longer session. The ``MaxSessionDuration`` setting determines the maximum duration that can be requested using the ``DurationSeconds`` parameter. If users don't specify a value for the ``DurationSeconds`` parameter, their security credentials are valid for one hour by default. This applies when you use the ``AssumeRole*`` API operations or the ``assume-role*``CLI operations but does not apply when you use those operations to create a console URL. For more information, see [Using IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html) in the *IAM User Guide*.
26
26
  */
27
27
  MaxSessionDuration?: number;
28
28
  /**
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type IoTThingPrincipalAttachmentProperties = {
8
8
  Principal: string;
9
9
  ThingName: string;
10
+ ThingPrincipalType?: string;
10
11
  };
11
12
  /**
12
13
  * Attribute type definition for `AWS::IoT::ThingPrincipalAttachment`.
@@ -287,6 +287,7 @@ export type Av1ColorSpaceSettings = {
287
287
  */
288
288
  export type Av1Settings = {
289
289
  AfdSignaling?: string;
290
+ Bitrate?: number;
290
291
  BufSize?: number;
291
292
  ColorSpaceSettings?: Av1ColorSpaceSettings;
292
293
  FixedAfd?: string;
@@ -301,6 +302,7 @@ export type Av1Settings = {
301
302
  ParDenominator?: number;
302
303
  ParNumerator?: number;
303
304
  QvbrQualityLevel?: number;
305
+ RateControlMode?: string;
304
306
  SceneChangeDetect?: string;
305
307
  TimecodeBurninSettings?: TimecodeBurninSettings;
306
308
  };
@@ -459,11 +461,20 @@ export type CdiInputSpecification = {
459
461
  export type ChannelEngineVersionRequest = {
460
462
  Version?: string;
461
463
  };
464
+ /**
465
+ * Type definition for `AWS::MediaLive::Channel.CmafIngestCaptionLanguageMapping`.
466
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestcaptionlanguagemapping.html}
467
+ */
468
+ export type CmafIngestCaptionLanguageMapping = {
469
+ CaptionChannel?: number;
470
+ LanguageCode?: string;
471
+ };
462
472
  /**
463
473
  * Type definition for `AWS::MediaLive::Channel.CmafIngestGroupSettings`.
464
474
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html}
465
475
  */
466
476
  export type CmafIngestGroupSettings = {
477
+ CaptionLanguageMappings?: CmafIngestCaptionLanguageMapping[];
467
478
  Destination?: OutputLocationRef;
468
479
  Id3Behavior?: string;
469
480
  Id3NameModifier?: string;
@@ -476,6 +487,9 @@ export type CmafIngestGroupSettings = {
476
487
  SegmentLength?: number;
477
488
  SegmentLengthUnits?: string;
478
489
  SendDelayMs?: number;
490
+ TimedMetadataId3Frame?: string;
491
+ TimedMetadataId3Period?: number;
492
+ TimedMetadataPassthrough?: string;
479
493
  };
480
494
  /**
481
495
  * Type definition for `AWS::MediaLive::Channel.CmafIngestOutputSettings`.
@@ -612,6 +626,8 @@ export type Eac3Settings = {
612
626
  */
613
627
  export type EbuTtDDestinationSettings = {
614
628
  CopyrightHolder?: string;
629
+ DefaultFontSize?: number;
630
+ DefaultLineHeight?: number;
615
631
  FillLineGap?: string;
616
632
  FontFamily?: string;
617
633
  StyleControl?: string;
@@ -1449,6 +1465,7 @@ export type Output = {
1449
1465
  */
1450
1466
  export type OutputDestination = {
1451
1467
  Id?: string;
1468
+ LogicalInterfaceNames?: string[];
1452
1469
  MediaPackageSettings?: MediaPackageOutputDestinationSettings[];
1453
1470
  MultiplexSettings?: MultiplexProgramChannelDestinationSettings;
1454
1471
  Settings?: OutputDestinationSettings[];
@@ -13,6 +13,8 @@ export type MediaLiveInputProperties = {
13
13
  MulticastSettings?: MulticastSettingsCreateRequest;
14
14
  Name?: string;
15
15
  RoleArn?: string;
16
+ SdiSources?: string[];
17
+ Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings;
16
18
  Sources?: InputSourceRequest[];
17
19
  SrtSettings?: SrtSettingsRequest;
18
20
  Tags?: Record<string, any>;
@@ -52,6 +54,14 @@ export type InputRequestDestinationRoute = {
52
54
  Cidr?: string;
53
55
  Gateway?: string;
54
56
  };
57
+ /**
58
+ * Type definition for `AWS::MediaLive::Input.InputSdpLocation`.
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsdplocation.html}
60
+ */
61
+ export type InputSdpLocation = {
62
+ MediaIndex?: number;
63
+ SdpUrl?: string;
64
+ };
55
65
  /**
56
66
  * Type definition for `AWS::MediaLive::Input.InputSourceRequest`.
57
67
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsourcerequest.html}
@@ -91,6 +101,29 @@ export type MulticastSourceCreateRequest = {
91
101
  SourceIp?: string;
92
102
  Url?: string;
93
103
  };
104
+ /**
105
+ * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroup`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroup.html}
107
+ */
108
+ export type Smpte2110ReceiverGroup = {
109
+ SdpSettings?: Smpte2110ReceiverGroupSdpSettings;
110
+ };
111
+ /**
112
+ * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroupSdpSettings`.
113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsdpsettings.html}
114
+ */
115
+ export type Smpte2110ReceiverGroupSdpSettings = {
116
+ AncillarySdps?: InputSdpLocation[];
117
+ AudioSdps?: InputSdpLocation[];
118
+ VideoSdp?: InputSdpLocation;
119
+ };
120
+ /**
121
+ * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroupSettings`.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsettings.html}
123
+ */
124
+ export type Smpte2110ReceiverGroupSettings = {
125
+ Smpte2110ReceiverGroups?: Smpte2110ReceiverGroup[];
126
+ };
94
127
  /**
95
128
  * Type definition for `AWS::MediaLive::Input.SrtCallerDecryptionRequest`.
96
129
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-srtcallerdecryptionrequest.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.344",
3
+ "version": "0.1.345",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },