@awboost/cfntypes 1.0.0-beta.66 → 1.0.0-beta.68

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 (31) hide show
  1. package/lib/resources.generated/AWS-AppConfig.d.ts +11 -2
  2. package/lib/resources.generated/AWS-AppConfig.js +1 -1
  3. package/lib/resources.generated/AWS-AppRunner.d.ts +1 -0
  4. package/lib/resources.generated/AWS-AppStream.d.ts +1 -0
  5. package/lib/resources.generated/AWS-CodeBuild.d.ts +10 -2
  6. package/lib/resources.generated/AWS-DLM.d.ts +14 -0
  7. package/lib/resources.generated/AWS-EC2.d.ts +18 -7
  8. package/lib/resources.generated/AWS-EC2.js +2 -2
  9. package/lib/resources.generated/AWS-ECS.d.ts +3 -3
  10. package/lib/resources.generated/AWS-EMRServerless.d.ts +43 -4
  11. package/lib/resources.generated/AWS-EntityResolution.d.ts +1 -0
  12. package/lib/resources.generated/AWS-EntityResolution.js +1 -1
  13. package/lib/resources.generated/AWS-GameLift.d.ts +29 -0
  14. package/lib/resources.generated/AWS-IAM.d.ts +11 -11
  15. package/lib/resources.generated/AWS-IAM.js +1 -1
  16. package/lib/resources.generated/AWS-MediaLive.d.ts +163 -0
  17. package/lib/resources.generated/AWS-MediaLive.js +26 -0
  18. package/lib/resources.generated/AWS-MediaPackageV2.d.ts +13 -0
  19. package/lib/resources.generated/AWS-QuickSight.d.ts +74 -4
  20. package/lib/resources.generated/AWS-QuickSight.js +6 -0
  21. package/lib/resources.generated/AWS-RDS.d.ts +2 -0
  22. package/lib/resources.generated/AWS-Redshift.d.ts +22 -21
  23. package/lib/resources.generated/AWS-ResourceExplorer2.d.ts +9 -9
  24. package/lib/resources.generated/AWS-S3.d.ts +18 -0
  25. package/lib/resources.generated/AWS-ServiceCatalogAppRegistry.d.ts +0 -2
  26. package/lib/resources.generated/AWS-ServiceCatalogAppRegistry.js +2 -2
  27. package/lib/resources.generated/AWS-Transfer.d.ts +112 -0
  28. package/lib/resources.generated/AWS-Transfer.js +13 -0
  29. package/package.json +2 -2
  30. package/lib/resources.generated/Dev-Transfer.d.ts +0 -123
  31. package/lib/resources.generated/Dev-Transfer.js +0 -14
@@ -117,14 +117,23 @@ export interface AppConfigConfigurationProfileProps {
117
117
  Tags?: Tag[];
118
118
  Name: string;
119
119
  }
120
+ /**
121
+ * Attributes type definition for AWS::AppConfig::ConfigurationProfile
122
+ *
123
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html | AWS::AppConfig::ConfigurationProfile}
124
+ */
125
+ export interface AppConfigConfigurationProfileAttribs {
126
+ ConfigurationProfileId?: string;
127
+ KmsKeyArn?: string;
128
+ }
120
129
  /**
121
130
  * Resource class for AWS::AppConfig::ConfigurationProfile
122
131
  *
123
132
  * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html | AWS::AppConfig::ConfigurationProfile}
124
133
  */
125
- export declare class AppConfigConfigurationProfile extends ResourceBase<"AWS::AppConfig::ConfigurationProfile", AppConfigConfigurationProfileProps, Record<string, never>> {
134
+ export declare class AppConfigConfigurationProfile extends ResourceBase<"AWS::AppConfig::ConfigurationProfile", AppConfigConfigurationProfileProps, AppConfigConfigurationProfileAttribs> {
126
135
  static readonly Type = "AWS::AppConfig::ConfigurationProfile";
127
- static readonly AttributeNames: never[];
136
+ static readonly AttributeNames: readonly (keyof AppConfigConfigurationProfileAttribs)[];
128
137
  constructor(logicalId: string, properties: AppConfigConfigurationProfileProps, options?: ResourceOptions);
129
138
  }
130
139
  /**
@@ -23,7 +23,7 @@ class AppConfigConfigurationProfile extends ResourceBase {
23
23
  }
24
24
  }
25
25
  AppConfigConfigurationProfile.Type = "AWS::AppConfig::ConfigurationProfile";
26
- AppConfigConfigurationProfile.AttributeNames = [];
26
+ AppConfigConfigurationProfile.AttributeNames = ["ConfigurationProfileId", "KmsKeyArn"];
27
27
  export { AppConfigConfigurationProfile };
28
28
  /**
29
29
  * Resource class for AWS::AppConfig::Deployment
@@ -135,6 +135,7 @@ export interface AppRunnerServiceKeyValuePair {
135
135
  * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-networkconfiguration.html | AWS::AppRunner::Service.NetworkConfiguration}
136
136
  */
137
137
  export interface AppRunnerServiceNetworkConfiguration {
138
+ IpAddressType?: string;
138
139
  EgressConfiguration?: AppRunnerServiceEgressConfiguration;
139
140
  IngressConfiguration?: AppRunnerServiceIngressConfiguration;
140
141
  }
@@ -181,6 +181,7 @@ export interface AppStreamStackStreamingExperienceSettings {
181
181
  */
182
182
  export interface AppStreamStackUserSetting {
183
183
  Action: string;
184
+ MaximumLength?: number;
184
185
  Permission: string;
185
186
  }
186
187
  /**
@@ -51,13 +51,13 @@ export interface CodeBuildProjectCloudWatchLogsConfig {
51
51
  * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html | AWS::CodeBuild::Project.Environment}
52
52
  */
53
53
  export interface CodeBuildProjectEnvironment {
54
- Type: string;
54
+ Type?: string;
55
55
  EnvironmentVariables?: any[];
56
56
  PrivilegedMode?: boolean;
57
57
  ImagePullCredentialsType?: string;
58
58
  Image: string;
59
59
  RegistryCredential?: CodeBuildProjectRegistryCredential;
60
- ComputeType: string;
60
+ ComputeType?: string;
61
61
  Certificate?: string;
62
62
  }
63
63
  /**
@@ -127,6 +127,14 @@ export interface CodeBuildProjectProjectFileSystemLocation {
127
127
  MountOptions?: string;
128
128
  Location: string;
129
129
  }
130
+ /**
131
+ * Type definition for AWS::CodeBuild::Project.ProjectFleet
132
+ *
133
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfleet.html | AWS::CodeBuild::Project.ProjectFleet}
134
+ */
135
+ export interface CodeBuildProjectProjectFleet {
136
+ FleetArn?: string;
137
+ }
130
138
  /**
131
139
  * Type definition for AWS::CodeBuild::Project.ProjectSourceVersion
132
140
  *
@@ -33,6 +33,7 @@ export interface DLMLifecyclePolicyArchiveRule {
33
33
  */
34
34
  export interface DLMLifecyclePolicyCreateRule {
35
35
  IntervalUnit?: string;
36
+ Scripts?: any[];
36
37
  Times?: any[];
37
38
  CronExpression?: string;
38
39
  Interval?: number;
@@ -192,6 +193,19 @@ export interface DLMLifecyclePolicySchedule {
192
193
  Name?: string;
193
194
  CopyTags?: boolean;
194
195
  }
196
+ /**
197
+ * Type definition for AWS::DLM::LifecyclePolicy.Script
198
+ *
199
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-script.html | AWS::DLM::LifecyclePolicy.Script}
200
+ */
201
+ export interface DLMLifecyclePolicyScript {
202
+ ExecutionHandlerService?: string;
203
+ ExecutionTimeout?: number;
204
+ Stages?: any[];
205
+ ExecutionHandler?: string;
206
+ MaximumRetryCount?: number;
207
+ ExecuteOperationOnScriptFailure?: boolean;
208
+ }
195
209
  /**
196
210
  * Type definition for AWS::DLM::LifecyclePolicy.ShareRule
197
211
  *
@@ -2410,6 +2410,7 @@ export declare class EC2Host extends ResourceBase<"AWS::EC2::Host", EC2HostProps
2410
2410
  */
2411
2411
  export interface EC2IPAMProps {
2412
2412
  Description?: string;
2413
+ Tier?: string;
2413
2414
  Tags?: Tag[];
2414
2415
  OperatingRegions?: any[];
2415
2416
  }
@@ -3551,15 +3552,17 @@ export declare class EC2SpotFleet extends ResourceBase<"AWS::EC2::SpotFleet", EC
3551
3552
  * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html | AWS::EC2::Subnet}
3552
3553
  */
3553
3554
  export interface EC2SubnetProps {
3554
- AssignIpv6AddressOnCreation?: boolean;
3555
3555
  MapPublicIpOnLaunch?: boolean;
3556
3556
  EnableDns64?: boolean;
3557
- VpcId: string;
3558
3557
  AvailabilityZoneId?: string;
3559
3558
  OutpostArn?: string;
3560
- PrivateDnsNameOptionsOnLaunch?: EC2SubnetPrivateDnsNameOptionsOnLaunch;
3561
3559
  AvailabilityZone?: string;
3562
3560
  CidrBlock?: string;
3561
+ Ipv6NetmaskLength?: number;
3562
+ AssignIpv6AddressOnCreation?: boolean;
3563
+ VpcId: string;
3564
+ Ipv4NetmaskLength?: number;
3565
+ PrivateDnsNameOptionsOnLaunch?: EC2SubnetPrivateDnsNameOptionsOnLaunch;
3563
3566
  Ipv6Native?: boolean;
3564
3567
  Ipv6CidrBlock?: string;
3565
3568
  Tags?: Tag[];
@@ -4345,21 +4348,29 @@ export declare class EC2VPCEndpointServicePermissions extends ResourceBase<"AWS:
4345
4348
  /**
4346
4349
  * Type definition for AWS::EC2::VPCGatewayAttachment
4347
4350
  *
4348
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html | AWS::EC2::VPCGatewayAttachment}
4351
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
4349
4352
  */
4350
4353
  export interface EC2VPCGatewayAttachmentProps {
4351
4354
  InternetGatewayId?: string;
4352
4355
  VpcId: string;
4353
4356
  VpnGatewayId?: string;
4354
4357
  }
4358
+ /**
4359
+ * Attributes type definition for AWS::EC2::VPCGatewayAttachment
4360
+ *
4361
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
4362
+ */
4363
+ export interface EC2VPCGatewayAttachmentAttribs {
4364
+ AttachmentType?: string;
4365
+ }
4355
4366
  /**
4356
4367
  * Resource class for AWS::EC2::VPCGatewayAttachment
4357
4368
  *
4358
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html | AWS::EC2::VPCGatewayAttachment}
4369
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
4359
4370
  */
4360
- export declare class EC2VPCGatewayAttachment extends ResourceBase<"AWS::EC2::VPCGatewayAttachment", EC2VPCGatewayAttachmentProps, Record<string, never>> {
4371
+ export declare class EC2VPCGatewayAttachment extends ResourceBase<"AWS::EC2::VPCGatewayAttachment", EC2VPCGatewayAttachmentProps, EC2VPCGatewayAttachmentAttribs> {
4361
4372
  static readonly Type = "AWS::EC2::VPCGatewayAttachment";
4362
- static readonly AttributeNames: never[];
4373
+ static readonly AttributeNames: readonly (keyof EC2VPCGatewayAttachmentAttribs)[];
4363
4374
  constructor(logicalId: string, properties: EC2VPCGatewayAttachmentProps, options?: ResourceOptions);
4364
4375
  }
4365
4376
  /**
@@ -1193,7 +1193,7 @@ export { EC2VPCEndpointServicePermissions };
1193
1193
  /**
1194
1194
  * Resource class for AWS::EC2::VPCGatewayAttachment
1195
1195
  *
1196
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html | AWS::EC2::VPCGatewayAttachment}
1196
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcgatewayattachment.html | AWS::EC2::VPCGatewayAttachment}
1197
1197
  */
1198
1198
  class EC2VPCGatewayAttachment extends ResourceBase {
1199
1199
  constructor(logicalId, properties, options) {
@@ -1201,7 +1201,7 @@ class EC2VPCGatewayAttachment extends ResourceBase {
1201
1201
  }
1202
1202
  }
1203
1203
  EC2VPCGatewayAttachment.Type = "AWS::EC2::VPCGatewayAttachment";
1204
- EC2VPCGatewayAttachment.AttributeNames = [];
1204
+ EC2VPCGatewayAttachment.AttributeNames = ["AttachmentType"];
1205
1205
  export { EC2VPCGatewayAttachment };
1206
1206
  /**
1207
1207
  * Resource class for AWS::EC2::VPCPeeringConnection
@@ -725,14 +725,14 @@ export interface ECSServiceProps {
725
725
  PlatformVersion?: string;
726
726
  HealthCheckGracePeriodSeconds?: number;
727
727
  EnableECSManagedTags?: boolean;
728
+ PropagateTags?: string;
728
729
  EnableExecuteCommand?: boolean;
729
730
  PlacementConstraints?: any[];
730
- PropagateTags?: string;
731
731
  Cluster?: string;
732
732
  LoadBalancers?: any[];
733
733
  ServiceConnectConfiguration?: ECSServiceServiceConnectConfiguration;
734
- DesiredCount?: number;
735
734
  PlacementStrategies?: any[];
735
+ DesiredCount?: number;
736
736
  DeploymentController?: ECSServiceDeploymentController;
737
737
  ServiceRegistries?: any[];
738
738
  CapacityProviderStrategy?: any[];
@@ -742,8 +742,8 @@ export interface ECSServiceProps {
742
742
  TaskDefinition?: string;
743
743
  ServiceName?: string;
744
744
  NetworkConfiguration?: ECSServiceNetworkConfiguration;
745
- DeploymentConfiguration?: ECSServiceDeploymentConfiguration;
746
745
  Tags?: Tag[];
746
+ DeploymentConfiguration?: ECSServiceDeploymentConfiguration;
747
747
  }
748
748
  /**
749
749
  * Attributes type definition for AWS::ECS::Service
@@ -18,6 +18,16 @@ export interface EMRServerlessApplicationAutoStopConfiguration {
18
18
  Enabled?: boolean;
19
19
  IdleTimeoutMinutes?: number;
20
20
  }
21
+ /**
22
+ * Type definition for AWS::EMRServerless::Application.ConfigurationObject
23
+ *
24
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-configurationobject.html | AWS::EMRServerless::Application.ConfigurationObject}
25
+ */
26
+ export interface EMRServerlessApplicationConfigurationObject {
27
+ Classification: string;
28
+ Properties?: Record<string, any>;
29
+ Configurations?: any[];
30
+ }
21
31
  /**
22
32
  * Type definition for AWS::EMRServerless::Application.ImageConfigurationInput
23
33
  *
@@ -44,6 +54,15 @@ export interface EMRServerlessApplicationInitialCapacityConfigKeyValuePair {
44
54
  Value: EMRServerlessApplicationInitialCapacityConfig;
45
55
  Key: string;
46
56
  }
57
+ /**
58
+ * Type definition for AWS::EMRServerless::Application.ManagedPersistenceMonitoringConfiguration
59
+ *
60
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-managedpersistencemonitoringconfiguration.html | AWS::EMRServerless::Application.ManagedPersistenceMonitoringConfiguration}
61
+ */
62
+ export interface EMRServerlessApplicationManagedPersistenceMonitoringConfiguration {
63
+ EncryptionKeyArn?: string;
64
+ Enabled?: boolean;
65
+ }
47
66
  /**
48
67
  * Type definition for AWS::EMRServerless::Application.MaximumAllowedResources
49
68
  *
@@ -54,6 +73,15 @@ export interface EMRServerlessApplicationMaximumAllowedResources {
54
73
  Cpu: string;
55
74
  Disk?: string;
56
75
  }
76
+ /**
77
+ * Type definition for AWS::EMRServerless::Application.MonitoringConfiguration
78
+ *
79
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-monitoringconfiguration.html | AWS::EMRServerless::Application.MonitoringConfiguration}
80
+ */
81
+ export interface EMRServerlessApplicationMonitoringConfiguration {
82
+ S3MonitoringConfiguration?: EMRServerlessApplicationS3MonitoringConfiguration;
83
+ ManagedPersistenceMonitoringConfiguration?: EMRServerlessApplicationManagedPersistenceMonitoringConfiguration;
84
+ }
57
85
  /**
58
86
  * Type definition for AWS::EMRServerless::Application.NetworkConfiguration
59
87
  *
@@ -63,6 +91,15 @@ export interface EMRServerlessApplicationNetworkConfiguration {
63
91
  SubnetIds?: any[];
64
92
  SecurityGroupIds?: any[];
65
93
  }
94
+ /**
95
+ * Type definition for AWS::EMRServerless::Application.S3MonitoringConfiguration
96
+ *
97
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-s3monitoringconfiguration.html | AWS::EMRServerless::Application.S3MonitoringConfiguration}
98
+ */
99
+ export interface EMRServerlessApplicationS3MonitoringConfiguration {
100
+ LogUri?: string;
101
+ EncryptionKeyArn?: string;
102
+ }
66
103
  /**
67
104
  * Type definition for AWS::EMRServerless::Application.WorkerConfiguration
68
105
  *
@@ -88,17 +125,19 @@ export interface EMRServerlessApplicationWorkerTypeSpecificationInput {
88
125
  */
89
126
  export interface EMRServerlessApplicationProps {
90
127
  AutoStartConfiguration?: EMRServerlessApplicationAutoStartConfiguration;
91
- Type: string;
92
128
  Architecture?: string;
93
129
  WorkerTypeSpecifications?: Record<string, any>;
94
- InitialCapacity?: any[];
95
- ImageConfiguration?: EMRServerlessApplicationImageConfigurationInput;
130
+ MonitoringConfiguration?: EMRServerlessApplicationMonitoringConfiguration;
96
131
  MaximumCapacity?: EMRServerlessApplicationMaximumAllowedResources;
97
132
  AutoStopConfiguration?: EMRServerlessApplicationAutoStopConfiguration;
133
+ RuntimeConfiguration?: any[];
134
+ Name?: string;
135
+ Type: string;
136
+ InitialCapacity?: any[];
137
+ ImageConfiguration?: EMRServerlessApplicationImageConfigurationInput;
98
138
  NetworkConfiguration?: EMRServerlessApplicationNetworkConfiguration;
99
139
  ReleaseLabel: string;
100
140
  Tags?: Tag[];
101
- Name?: string;
102
141
  }
103
142
  /**
104
143
  * Attributes type definition for AWS::EMRServerless::Application
@@ -220,6 +220,7 @@ export interface EntityResolutionSchemaMappingProps {
220
220
  */
221
221
  export interface EntityResolutionSchemaMappingAttribs {
222
222
  CreatedAt?: string;
223
+ HasWorkflows?: boolean;
223
224
  UpdatedAt?: string;
224
225
  SchemaArn?: string;
225
226
  }
@@ -36,5 +36,5 @@ class EntityResolutionSchemaMapping extends ResourceBase {
36
36
  }
37
37
  }
38
38
  EntityResolutionSchemaMapping.Type = "AWS::EntityResolution::SchemaMapping";
39
- EntityResolutionSchemaMapping.AttributeNames = ["CreatedAt", "UpdatedAt", "SchemaArn"];
39
+ EntityResolutionSchemaMapping.AttributeNames = ["CreatedAt", "HasWorkflows", "UpdatedAt", "SchemaArn"];
40
40
  export { EntityResolutionSchemaMapping };
@@ -87,6 +87,25 @@ export interface GameLiftFleetRuntimeConfiguration {
87
87
  MaxConcurrentGameSessionActivations?: number;
88
88
  GameSessionActivationTimeoutSeconds?: number;
89
89
  }
90
+ /**
91
+ * Type definition for AWS::GameLift::Fleet.ScalingPolicy
92
+ *
93
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-scalingpolicy.html | AWS::GameLift::Fleet.ScalingPolicy}
94
+ */
95
+ export interface GameLiftFleetScalingPolicy {
96
+ Status?: string;
97
+ MetricName: string;
98
+ PolicyType?: string;
99
+ ComparisonOperator?: string;
100
+ TargetConfiguration?: GameLiftFleetTargetConfiguration;
101
+ UpdateStatus?: string;
102
+ ScalingAdjustment?: number;
103
+ EvaluationPeriods?: number;
104
+ Location?: string;
105
+ Name: string;
106
+ ScalingAdjustmentType?: string;
107
+ Threshold?: number;
108
+ }
90
109
  /**
91
110
  * Type definition for AWS::GameLift::Fleet.ServerProcess
92
111
  *
@@ -97,6 +116,14 @@ export interface GameLiftFleetServerProcess {
97
116
  Parameters?: string;
98
117
  LaunchPath: string;
99
118
  }
119
+ /**
120
+ * Type definition for AWS::GameLift::Fleet.TargetConfiguration
121
+ *
122
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-targetconfiguration.html | AWS::GameLift::Fleet.TargetConfiguration}
123
+ */
124
+ export interface GameLiftFleetTargetConfiguration {
125
+ TargetValue: number;
126
+ }
100
127
  /**
101
128
  * Type definition for AWS::GameLift::GameServerGroup.AutoScalingPolicy
102
129
  *
@@ -251,8 +278,10 @@ export declare class GameLiftBuild extends ResourceBase<"AWS::GameLift::Build",
251
278
  * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html | AWS::GameLift::Fleet}
252
279
  */
253
280
  export interface GameLiftFleetProps {
281
+ ScalingPolicies?: any[];
254
282
  Description?: string;
255
283
  PeerVpcId?: string;
284
+ ApplyCapacity?: string;
256
285
  FleetType?: string;
257
286
  EC2InboundPermissions?: any[];
258
287
  Locations?: any[];
@@ -25,17 +25,17 @@ export interface IAMRolePolicy {
25
25
  * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html | AWS::IAM::User.LoginProfile}
26
26
  */
27
27
  export interface IAMUserLoginProfile {
28
- Password: string;
29
28
  PasswordResetRequired?: boolean;
29
+ Password: string;
30
30
  }
31
31
  /**
32
32
  * Type definition for AWS::IAM::User.Policy
33
33
  *
34
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html | AWS::IAM::User.Policy}
34
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-policy.html | AWS::IAM::User.Policy}
35
35
  */
36
36
  export interface IAMUserPolicy {
37
- PolicyDocument: object;
38
37
  PolicyName: string;
38
+ PolicyDocument: object;
39
39
  }
40
40
  /**
41
41
  * Type definition for AWS::IAM::AccessKey
@@ -385,22 +385,22 @@ export declare class IAMServiceLinkedRole extends ResourceBase<"AWS::IAM::Servic
385
385
  /**
386
386
  * Type definition for AWS::IAM::User
387
387
  *
388
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html | AWS::IAM::User}
388
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
389
389
  */
390
390
  export interface IAMUserProps {
391
- Groups?: any[];
392
- LoginProfile?: IAMUserLoginProfile;
393
- ManagedPolicyArns?: any[];
394
391
  Path?: string;
395
- PermissionsBoundary?: string;
392
+ ManagedPolicyArns?: any[];
396
393
  Policies?: any[];
397
- Tags?: Tag[];
398
394
  UserName?: string;
395
+ Groups?: any[];
396
+ LoginProfile?: IAMUserLoginProfile;
397
+ Tags?: Tag[];
398
+ PermissionsBoundary?: string;
399
399
  }
400
400
  /**
401
401
  * Attributes type definition for AWS::IAM::User
402
402
  *
403
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html | AWS::IAM::User}
403
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
404
404
  */
405
405
  export interface IAMUserAttribs {
406
406
  Arn?: string;
@@ -408,7 +408,7 @@ export interface IAMUserAttribs {
408
408
  /**
409
409
  * Resource class for AWS::IAM::User
410
410
  *
411
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html | AWS::IAM::User}
411
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
412
412
  */
413
413
  export declare class IAMUser extends ResourceBase<"AWS::IAM::User", IAMUserProps, IAMUserAttribs> {
414
414
  static readonly Type = "AWS::IAM::User";
@@ -174,7 +174,7 @@ export { IAMServiceLinkedRole };
174
174
  /**
175
175
  * Resource class for AWS::IAM::User
176
176
  *
177
- * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html | AWS::IAM::User}
177
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html | AWS::IAM::User}
178
178
  */
179
179
  class IAMUser extends ResourceBase {
180
180
  constructor(logicalId, properties, options) {
@@ -1,5 +1,6 @@
1
1
  import { ResourceBase } from "../util.js";
2
2
  import { ResourceOptions } from "../template.js";
3
+ import { Tag } from "./core.js";
3
4
  /**
4
5
  * Type definition for AWS::MediaLive::Channel.AacSettings
5
6
  *
@@ -1855,6 +1856,110 @@ export interface MediaLiveInputMediaConnectFlowRequest {
1855
1856
  export interface MediaLiveInputSecurityGroupInputWhitelistRuleCidr {
1856
1857
  Cidr?: string;
1857
1858
  }
1859
+ /**
1860
+ * Type definition for AWS::MediaLive::Multiplex.MultiplexMediaConnectOutputDestinationSettings
1861
+ *
1862
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplex-multiplexmediaconnectoutputdestinationsettings.html | AWS::MediaLive::Multiplex.MultiplexMediaConnectOutputDestinationSettings}
1863
+ */
1864
+ export interface MediaLiveMultiplexMultiplexMediaConnectOutputDestinationSettings {
1865
+ EntitlementArn?: string;
1866
+ }
1867
+ /**
1868
+ * Type definition for AWS::MediaLive::Multiplex.MultiplexOutputDestination
1869
+ *
1870
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplex-multiplexoutputdestination.html | AWS::MediaLive::Multiplex.MultiplexOutputDestination}
1871
+ */
1872
+ export interface MediaLiveMultiplexMultiplexOutputDestination {
1873
+ MultiplexMediaConnectOutputDestinationSettings?: MediaLiveMultiplexMultiplexMediaConnectOutputDestinationSettings;
1874
+ }
1875
+ /**
1876
+ * Type definition for AWS::MediaLive::Multiplex.MultiplexSettings
1877
+ *
1878
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplex-multiplexsettings.html | AWS::MediaLive::Multiplex.MultiplexSettings}
1879
+ */
1880
+ export interface MediaLiveMultiplexMultiplexSettings {
1881
+ TransportStreamBitrate: number;
1882
+ MaximumVideoBufferDelayMilliseconds?: number;
1883
+ TransportStreamId: number;
1884
+ TransportStreamReservedBitrate?: number;
1885
+ }
1886
+ /**
1887
+ * Type definition for AWS::MediaLive::Multiplex.Tags
1888
+ *
1889
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplex-tags.html | AWS::MediaLive::Multiplex.Tags}
1890
+ */
1891
+ export interface MediaLiveMultiplexTags {
1892
+ Value?: string;
1893
+ Key?: string;
1894
+ }
1895
+ /**
1896
+ * Type definition for AWS::MediaLive::Multiplexprogram.MultiplexProgramPacketIdentifiersMap
1897
+ *
1898
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplexprogram-multiplexprogrampacketidentifiersmap.html | AWS::MediaLive::Multiplexprogram.MultiplexProgramPacketIdentifiersMap}
1899
+ */
1900
+ export interface MediaLiveMultiplexprogramMultiplexProgramPacketIdentifiersMap {
1901
+ EtvPlatformPid?: number;
1902
+ DvbTeletextPid?: number;
1903
+ KlvDataPids?: any[];
1904
+ PcrPid?: number;
1905
+ VideoPid?: number;
1906
+ PmtPid?: number;
1907
+ Scte27Pids?: any[];
1908
+ DvbSubPids?: any[];
1909
+ Scte35Pid?: number;
1910
+ EtvSignalPid?: number;
1911
+ PrivateMetadataPid?: number;
1912
+ TimedMetadataPid?: number;
1913
+ AudioPids?: any[];
1914
+ }
1915
+ /**
1916
+ * Type definition for AWS::MediaLive::Multiplexprogram.MultiplexProgramPipelineDetail
1917
+ *
1918
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplexprogram-multiplexprogrampipelinedetail.html | AWS::MediaLive::Multiplexprogram.MultiplexProgramPipelineDetail}
1919
+ */
1920
+ export interface MediaLiveMultiplexprogramMultiplexProgramPipelineDetail {
1921
+ ActiveChannelPipeline?: string;
1922
+ PipelineId?: string;
1923
+ }
1924
+ /**
1925
+ * Type definition for AWS::MediaLive::Multiplexprogram.MultiplexProgramServiceDescriptor
1926
+ *
1927
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplexprogram-multiplexprogramservicedescriptor.html | AWS::MediaLive::Multiplexprogram.MultiplexProgramServiceDescriptor}
1928
+ */
1929
+ export interface MediaLiveMultiplexprogramMultiplexProgramServiceDescriptor {
1930
+ ProviderName: string;
1931
+ ServiceName: string;
1932
+ }
1933
+ /**
1934
+ * Type definition for AWS::MediaLive::Multiplexprogram.MultiplexProgramSettings
1935
+ *
1936
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplexprogram-multiplexprogramsettings.html | AWS::MediaLive::Multiplexprogram.MultiplexProgramSettings}
1937
+ */
1938
+ export interface MediaLiveMultiplexprogramMultiplexProgramSettings {
1939
+ PreferredChannelPipeline?: string;
1940
+ ServiceDescriptor?: MediaLiveMultiplexprogramMultiplexProgramServiceDescriptor;
1941
+ VideoSettings?: MediaLiveMultiplexprogramMultiplexVideoSettings;
1942
+ ProgramNumber: number;
1943
+ }
1944
+ /**
1945
+ * Type definition for AWS::MediaLive::Multiplexprogram.MultiplexStatmuxVideoSettings
1946
+ *
1947
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplexprogram-multiplexstatmuxvideosettings.html | AWS::MediaLive::Multiplexprogram.MultiplexStatmuxVideoSettings}
1948
+ */
1949
+ export interface MediaLiveMultiplexprogramMultiplexStatmuxVideoSettings {
1950
+ Priority?: number;
1951
+ MaximumBitrate?: number;
1952
+ MinimumBitrate?: number;
1953
+ }
1954
+ /**
1955
+ * Type definition for AWS::MediaLive::Multiplexprogram.MultiplexVideoSettings
1956
+ *
1957
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-multiplexprogram-multiplexvideosettings.html | AWS::MediaLive::Multiplexprogram.MultiplexVideoSettings}
1958
+ */
1959
+ export interface MediaLiveMultiplexprogramMultiplexVideoSettings {
1960
+ StatmuxSettings?: MediaLiveMultiplexprogramMultiplexStatmuxVideoSettings;
1961
+ ConstantBitrate?: number;
1962
+ }
1858
1963
  /**
1859
1964
  * Type definition for AWS::MediaLive::Channel
1860
1965
  *
@@ -1957,3 +2062,61 @@ export declare class MediaLiveInputSecurityGroup extends ResourceBase<"AWS::Medi
1957
2062
  static readonly AttributeNames: readonly (keyof MediaLiveInputSecurityGroupAttribs)[];
1958
2063
  constructor(logicalId: string, properties: MediaLiveInputSecurityGroupProps, options?: ResourceOptions);
1959
2064
  }
2065
+ /**
2066
+ * Type definition for AWS::MediaLive::Multiplex
2067
+ *
2068
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html | AWS::MediaLive::Multiplex}
2069
+ */
2070
+ export interface MediaLiveMultiplexProps {
2071
+ MultiplexSettings: MediaLiveMultiplexMultiplexSettings;
2072
+ AvailabilityZones: any[];
2073
+ Destinations?: any[];
2074
+ Tags?: Tag[];
2075
+ Name: string;
2076
+ }
2077
+ /**
2078
+ * Attributes type definition for AWS::MediaLive::Multiplex
2079
+ *
2080
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html | AWS::MediaLive::Multiplex}
2081
+ */
2082
+ export interface MediaLiveMultiplexAttribs {
2083
+ State?: string;
2084
+ ProgramCount?: number;
2085
+ PipelinesRunningCount?: number;
2086
+ Id?: string;
2087
+ Arn?: string;
2088
+ }
2089
+ /**
2090
+ * Resource class for AWS::MediaLive::Multiplex
2091
+ *
2092
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html | AWS::MediaLive::Multiplex}
2093
+ */
2094
+ export declare class MediaLiveMultiplex extends ResourceBase<"AWS::MediaLive::Multiplex", MediaLiveMultiplexProps, MediaLiveMultiplexAttribs> {
2095
+ static readonly Type = "AWS::MediaLive::Multiplex";
2096
+ static readonly AttributeNames: readonly (keyof MediaLiveMultiplexAttribs)[];
2097
+ constructor(logicalId: string, properties: MediaLiveMultiplexProps, options?: ResourceOptions);
2098
+ }
2099
+ /**
2100
+ * Type definition for AWS::MediaLive::Multiplexprogram
2101
+ *
2102
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplexprogram.html | AWS::MediaLive::Multiplexprogram}
2103
+ */
2104
+ export interface MediaLiveMultiplexprogramProps {
2105
+ MultiplexId?: string;
2106
+ PreferredChannelPipeline?: string;
2107
+ PacketIdentifiersMap?: MediaLiveMultiplexprogramMultiplexProgramPacketIdentifiersMap;
2108
+ ChannelId?: string;
2109
+ PipelineDetails?: any[];
2110
+ MultiplexProgramSettings?: MediaLiveMultiplexprogramMultiplexProgramSettings;
2111
+ ProgramName?: string;
2112
+ }
2113
+ /**
2114
+ * Resource class for AWS::MediaLive::Multiplexprogram
2115
+ *
2116
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplexprogram.html | AWS::MediaLive::Multiplexprogram}
2117
+ */
2118
+ export declare class MediaLiveMultiplexprogram extends ResourceBase<"AWS::MediaLive::Multiplexprogram", MediaLiveMultiplexprogramProps, Record<string, never>> {
2119
+ static readonly Type = "AWS::MediaLive::Multiplexprogram";
2120
+ static readonly AttributeNames: never[];
2121
+ constructor(logicalId: string, properties: MediaLiveMultiplexprogramProps, options?: ResourceOptions);
2122
+ }
@@ -38,3 +38,29 @@ class MediaLiveInputSecurityGroup extends ResourceBase {
38
38
  MediaLiveInputSecurityGroup.Type = "AWS::MediaLive::InputSecurityGroup";
39
39
  MediaLiveInputSecurityGroup.AttributeNames = ["Arn"];
40
40
  export { MediaLiveInputSecurityGroup };
41
+ /**
42
+ * Resource class for AWS::MediaLive::Multiplex
43
+ *
44
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html | AWS::MediaLive::Multiplex}
45
+ */
46
+ class MediaLiveMultiplex extends ResourceBase {
47
+ constructor(logicalId, properties, options) {
48
+ super(MediaLiveMultiplex.Type, MediaLiveMultiplex.AttributeNames, logicalId, properties, options);
49
+ }
50
+ }
51
+ MediaLiveMultiplex.Type = "AWS::MediaLive::Multiplex";
52
+ MediaLiveMultiplex.AttributeNames = ["State", "ProgramCount", "PipelinesRunningCount", "Id", "Arn"];
53
+ export { MediaLiveMultiplex };
54
+ /**
55
+ * Resource class for AWS::MediaLive::Multiplexprogram
56
+ *
57
+ * @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplexprogram.html | AWS::MediaLive::Multiplexprogram}
58
+ */
59
+ class MediaLiveMultiplexprogram extends ResourceBase {
60
+ constructor(logicalId, properties, options) {
61
+ super(MediaLiveMultiplexprogram.Type, MediaLiveMultiplexprogram.AttributeNames, logicalId, properties, options);
62
+ }
63
+ }
64
+ MediaLiveMultiplexprogram.Type = "AWS::MediaLive::Multiplexprogram";
65
+ MediaLiveMultiplexprogram.AttributeNames = [];
66
+ export { MediaLiveMultiplexprogram };