@cdktn/provider-generator 0.24.0-pre.3 → 0.24.0-pre.30
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/.spec.swcrc +22 -0
- package/build/get/__tests__/generator/import-style.test.d.ts +2 -0
- package/build/get/__tests__/generator/import-style.test.js +101 -0
- package/build/get/__tests__/generator/module-generator.test.js +12 -12
- package/build/get/constructs-maker.d.ts +5 -1
- package/build/get/constructs-maker.js +5 -2
- package/build/get/generator/emitter/struct-emitter.d.ts +2 -1
- package/build/get/generator/emitter/struct-emitter.js +14 -11
- package/build/get/generator/module-generator.js +3 -3
- package/build/get/generator/provider-generator.d.ts +9 -1
- package/build/get/generator/provider-generator.js +9 -6
- package/eslint.config.mjs +13 -0
- package/jest.config.js +16 -9
- package/package.json +8 -9
- package/src/__tests__/__snapshots__/edge-provider-schema.test.ts.snap +8 -8
- package/src/__tests__/__snapshots__/provider.test.ts.snap +2951 -2951
- package/src/get/__tests__/generator/__snapshots__/complex-computed-types.test.ts.snap +5 -5
- package/src/get/__tests__/generator/__snapshots__/export-sharding.test.ts.snap +3310 -3310
- package/src/get/__tests__/generator/__snapshots__/module-generator.test.ts.snap +355 -355
- package/src/get/__tests__/generator/__snapshots__/nested-types.test.ts.snap +8 -8
- package/src/get/__tests__/generator/__snapshots__/provider.test.ts.snap +8 -8
- package/src/get/__tests__/generator/__snapshots__/resource-types.test.ts.snap +126 -126
- package/src/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap +17 -17
- package/src/get/__tests__/generator/__snapshots__/types.test.ts.snap +65 -65
|
@@ -2153,7 +2153,7 @@ export interface VpcConfig extends TerraformModuleUserConfig {
|
|
|
2153
2153
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/modules/terraform-aws-modules/vpc/aws/2.78.0 terraform-aws-modules/vpc/aws}
|
|
2154
2154
|
*/
|
|
2155
2155
|
export class Vpc extends TerraformModule {
|
|
2156
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
2156
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
2157
2157
|
public constructor(scope: Construct, id: string, config: VpcConfig = {}) {
|
|
2158
2158
|
super(scope, id, {
|
|
2159
2159
|
...config,
|
|
@@ -5452,907 +5452,907 @@ export class Vpc extends TerraformModule {
|
|
|
5452
5452
|
this.inputs['workspaces_endpoint_subnet_ids'] = value;
|
|
5453
5453
|
}
|
|
5454
5454
|
public get azsOutput() {
|
|
5455
|
-
return this.getString('azs')
|
|
5455
|
+
return this.getString('azs');
|
|
5456
5456
|
}
|
|
5457
5457
|
public get cgwArnsOutput() {
|
|
5458
|
-
return this.getString('cgw_arns')
|
|
5458
|
+
return this.getString('cgw_arns');
|
|
5459
5459
|
}
|
|
5460
5460
|
public get cgwIdsOutput() {
|
|
5461
|
-
return this.getString('cgw_ids')
|
|
5461
|
+
return this.getString('cgw_ids');
|
|
5462
5462
|
}
|
|
5463
5463
|
public get databaseInternetGatewayRouteIdOutput() {
|
|
5464
|
-
return this.getString('database_internet_gateway_route_id')
|
|
5464
|
+
return this.getString('database_internet_gateway_route_id');
|
|
5465
5465
|
}
|
|
5466
5466
|
public get databaseIpv6EgressRouteIdOutput() {
|
|
5467
|
-
return this.getString('database_ipv6_egress_route_id')
|
|
5467
|
+
return this.getString('database_ipv6_egress_route_id');
|
|
5468
5468
|
}
|
|
5469
5469
|
public get databaseNatGatewayRouteIdsOutput() {
|
|
5470
|
-
return this.getString('database_nat_gateway_route_ids')
|
|
5470
|
+
return this.getString('database_nat_gateway_route_ids');
|
|
5471
5471
|
}
|
|
5472
5472
|
public get databaseNetworkAclArnOutput() {
|
|
5473
|
-
return this.getString('database_network_acl_arn')
|
|
5473
|
+
return this.getString('database_network_acl_arn');
|
|
5474
5474
|
}
|
|
5475
5475
|
public get databaseNetworkAclIdOutput() {
|
|
5476
|
-
return this.getString('database_network_acl_id')
|
|
5476
|
+
return this.getString('database_network_acl_id');
|
|
5477
5477
|
}
|
|
5478
5478
|
public get databaseRouteTableAssociationIdsOutput() {
|
|
5479
|
-
return this.getString('database_route_table_association_ids')
|
|
5479
|
+
return this.getString('database_route_table_association_ids');
|
|
5480
5480
|
}
|
|
5481
5481
|
public get databaseRouteTableIdsOutput() {
|
|
5482
|
-
return this.getString('database_route_table_ids')
|
|
5482
|
+
return this.getString('database_route_table_ids');
|
|
5483
5483
|
}
|
|
5484
5484
|
public get databaseSubnetArnsOutput() {
|
|
5485
|
-
return this.getString('database_subnet_arns')
|
|
5485
|
+
return this.getString('database_subnet_arns');
|
|
5486
5486
|
}
|
|
5487
5487
|
public get databaseSubnetGroupOutput() {
|
|
5488
|
-
return this.getString('database_subnet_group')
|
|
5488
|
+
return this.getString('database_subnet_group');
|
|
5489
5489
|
}
|
|
5490
5490
|
public get databaseSubnetGroupNameOutput() {
|
|
5491
|
-
return this.getString('database_subnet_group_name')
|
|
5491
|
+
return this.getString('database_subnet_group_name');
|
|
5492
5492
|
}
|
|
5493
5493
|
public get databaseSubnetsOutput() {
|
|
5494
|
-
return this.getString('database_subnets')
|
|
5494
|
+
return this.getString('database_subnets');
|
|
5495
5495
|
}
|
|
5496
5496
|
public get databaseSubnetsCidrBlocksOutput() {
|
|
5497
|
-
return this.getString('database_subnets_cidr_blocks')
|
|
5497
|
+
return this.getString('database_subnets_cidr_blocks');
|
|
5498
5498
|
}
|
|
5499
5499
|
public get databaseSubnetsIpv6CidrBlocksOutput() {
|
|
5500
|
-
return this.getString('database_subnets_ipv6_cidr_blocks')
|
|
5500
|
+
return this.getString('database_subnets_ipv6_cidr_blocks');
|
|
5501
5501
|
}
|
|
5502
5502
|
public get defaultNetworkAclIdOutput() {
|
|
5503
|
-
return this.getString('default_network_acl_id')
|
|
5503
|
+
return this.getString('default_network_acl_id');
|
|
5504
5504
|
}
|
|
5505
5505
|
public get defaultRouteTableIdOutput() {
|
|
5506
|
-
return this.getString('default_route_table_id')
|
|
5506
|
+
return this.getString('default_route_table_id');
|
|
5507
5507
|
}
|
|
5508
5508
|
public get defaultSecurityGroupIdOutput() {
|
|
5509
|
-
return this.getString('default_security_group_id')
|
|
5509
|
+
return this.getString('default_security_group_id');
|
|
5510
5510
|
}
|
|
5511
5511
|
public get defaultVpcArnOutput() {
|
|
5512
|
-
return this.getString('default_vpc_arn')
|
|
5512
|
+
return this.getString('default_vpc_arn');
|
|
5513
5513
|
}
|
|
5514
5514
|
public get defaultVpcCidrBlockOutput() {
|
|
5515
|
-
return this.getString('default_vpc_cidr_block')
|
|
5515
|
+
return this.getString('default_vpc_cidr_block');
|
|
5516
5516
|
}
|
|
5517
5517
|
public get defaultVpcDefaultNetworkAclIdOutput() {
|
|
5518
|
-
return this.getString('default_vpc_default_network_acl_id')
|
|
5518
|
+
return this.getString('default_vpc_default_network_acl_id');
|
|
5519
5519
|
}
|
|
5520
5520
|
public get defaultVpcDefaultRouteTableIdOutput() {
|
|
5521
|
-
return this.getString('default_vpc_default_route_table_id')
|
|
5521
|
+
return this.getString('default_vpc_default_route_table_id');
|
|
5522
5522
|
}
|
|
5523
5523
|
public get defaultVpcDefaultSecurityGroupIdOutput() {
|
|
5524
|
-
return this.getString('default_vpc_default_security_group_id')
|
|
5524
|
+
return this.getString('default_vpc_default_security_group_id');
|
|
5525
5525
|
}
|
|
5526
5526
|
public get defaultVpcEnableDnsHostnamesOutput() {
|
|
5527
|
-
return this.getString('default_vpc_enable_dns_hostnames')
|
|
5527
|
+
return this.getString('default_vpc_enable_dns_hostnames');
|
|
5528
5528
|
}
|
|
5529
5529
|
public get defaultVpcEnableDnsSupportOutput() {
|
|
5530
|
-
return this.getString('default_vpc_enable_dns_support')
|
|
5530
|
+
return this.getString('default_vpc_enable_dns_support');
|
|
5531
5531
|
}
|
|
5532
5532
|
public get defaultVpcIdOutput() {
|
|
5533
|
-
return this.getString('default_vpc_id')
|
|
5533
|
+
return this.getString('default_vpc_id');
|
|
5534
5534
|
}
|
|
5535
5535
|
public get defaultVpcInstanceTenancyOutput() {
|
|
5536
|
-
return this.getString('default_vpc_instance_tenancy')
|
|
5536
|
+
return this.getString('default_vpc_instance_tenancy');
|
|
5537
5537
|
}
|
|
5538
5538
|
public get defaultVpcMainRouteTableIdOutput() {
|
|
5539
|
-
return this.getString('default_vpc_main_route_table_id')
|
|
5539
|
+
return this.getString('default_vpc_main_route_table_id');
|
|
5540
5540
|
}
|
|
5541
5541
|
public get egressOnlyInternetGatewayIdOutput() {
|
|
5542
|
-
return this.getString('egress_only_internet_gateway_id')
|
|
5542
|
+
return this.getString('egress_only_internet_gateway_id');
|
|
5543
5543
|
}
|
|
5544
5544
|
public get elasticacheNetworkAclArnOutput() {
|
|
5545
|
-
return this.getString('elasticache_network_acl_arn')
|
|
5545
|
+
return this.getString('elasticache_network_acl_arn');
|
|
5546
5546
|
}
|
|
5547
5547
|
public get elasticacheNetworkAclIdOutput() {
|
|
5548
|
-
return this.getString('elasticache_network_acl_id')
|
|
5548
|
+
return this.getString('elasticache_network_acl_id');
|
|
5549
5549
|
}
|
|
5550
5550
|
public get elasticacheRouteTableAssociationIdsOutput() {
|
|
5551
|
-
return this.getString('elasticache_route_table_association_ids')
|
|
5551
|
+
return this.getString('elasticache_route_table_association_ids');
|
|
5552
5552
|
}
|
|
5553
5553
|
public get elasticacheRouteTableIdsOutput() {
|
|
5554
|
-
return this.getString('elasticache_route_table_ids')
|
|
5554
|
+
return this.getString('elasticache_route_table_ids');
|
|
5555
5555
|
}
|
|
5556
5556
|
public get elasticacheSubnetArnsOutput() {
|
|
5557
|
-
return this.getString('elasticache_subnet_arns')
|
|
5557
|
+
return this.getString('elasticache_subnet_arns');
|
|
5558
5558
|
}
|
|
5559
5559
|
public get elasticacheSubnetGroupOutput() {
|
|
5560
|
-
return this.getString('elasticache_subnet_group')
|
|
5560
|
+
return this.getString('elasticache_subnet_group');
|
|
5561
5561
|
}
|
|
5562
5562
|
public get elasticacheSubnetGroupNameOutput() {
|
|
5563
|
-
return this.getString('elasticache_subnet_group_name')
|
|
5563
|
+
return this.getString('elasticache_subnet_group_name');
|
|
5564
5564
|
}
|
|
5565
5565
|
public get elasticacheSubnetsOutput() {
|
|
5566
|
-
return this.getString('elasticache_subnets')
|
|
5566
|
+
return this.getString('elasticache_subnets');
|
|
5567
5567
|
}
|
|
5568
5568
|
public get elasticacheSubnetsCidrBlocksOutput() {
|
|
5569
|
-
return this.getString('elasticache_subnets_cidr_blocks')
|
|
5569
|
+
return this.getString('elasticache_subnets_cidr_blocks');
|
|
5570
5570
|
}
|
|
5571
5571
|
public get elasticacheSubnetsIpv6CidrBlocksOutput() {
|
|
5572
|
-
return this.getString('elasticache_subnets_ipv6_cidr_blocks')
|
|
5572
|
+
return this.getString('elasticache_subnets_ipv6_cidr_blocks');
|
|
5573
5573
|
}
|
|
5574
5574
|
public get igwArnOutput() {
|
|
5575
|
-
return this.getString('igw_arn')
|
|
5575
|
+
return this.getString('igw_arn');
|
|
5576
5576
|
}
|
|
5577
5577
|
public get igwIdOutput() {
|
|
5578
|
-
return this.getString('igw_id')
|
|
5578
|
+
return this.getString('igw_id');
|
|
5579
5579
|
}
|
|
5580
5580
|
public get intraNetworkAclArnOutput() {
|
|
5581
|
-
return this.getString('intra_network_acl_arn')
|
|
5581
|
+
return this.getString('intra_network_acl_arn');
|
|
5582
5582
|
}
|
|
5583
5583
|
public get intraNetworkAclIdOutput() {
|
|
5584
|
-
return this.getString('intra_network_acl_id')
|
|
5584
|
+
return this.getString('intra_network_acl_id');
|
|
5585
5585
|
}
|
|
5586
5586
|
public get intraRouteTableAssociationIdsOutput() {
|
|
5587
|
-
return this.getString('intra_route_table_association_ids')
|
|
5587
|
+
return this.getString('intra_route_table_association_ids');
|
|
5588
5588
|
}
|
|
5589
5589
|
public get intraRouteTableIdsOutput() {
|
|
5590
|
-
return this.getString('intra_route_table_ids')
|
|
5590
|
+
return this.getString('intra_route_table_ids');
|
|
5591
5591
|
}
|
|
5592
5592
|
public get intraSubnetArnsOutput() {
|
|
5593
|
-
return this.getString('intra_subnet_arns')
|
|
5593
|
+
return this.getString('intra_subnet_arns');
|
|
5594
5594
|
}
|
|
5595
5595
|
public get intraSubnetsOutput() {
|
|
5596
|
-
return this.getString('intra_subnets')
|
|
5596
|
+
return this.getString('intra_subnets');
|
|
5597
5597
|
}
|
|
5598
5598
|
public get intraSubnetsCidrBlocksOutput() {
|
|
5599
|
-
return this.getString('intra_subnets_cidr_blocks')
|
|
5599
|
+
return this.getString('intra_subnets_cidr_blocks');
|
|
5600
5600
|
}
|
|
5601
5601
|
public get intraSubnetsIpv6CidrBlocksOutput() {
|
|
5602
|
-
return this.getString('intra_subnets_ipv6_cidr_blocks')
|
|
5602
|
+
return this.getString('intra_subnets_ipv6_cidr_blocks');
|
|
5603
5603
|
}
|
|
5604
5604
|
public get nameOutput() {
|
|
5605
|
-
return this.getString('name')
|
|
5605
|
+
return this.getString('name');
|
|
5606
5606
|
}
|
|
5607
5607
|
public get natIdsOutput() {
|
|
5608
|
-
return this.getString('nat_ids')
|
|
5608
|
+
return this.getString('nat_ids');
|
|
5609
5609
|
}
|
|
5610
5610
|
public get natPublicIpsOutput() {
|
|
5611
|
-
return this.getString('nat_public_ips')
|
|
5611
|
+
return this.getString('nat_public_ips');
|
|
5612
5612
|
}
|
|
5613
5613
|
public get natgwIdsOutput() {
|
|
5614
|
-
return this.getString('natgw_ids')
|
|
5614
|
+
return this.getString('natgw_ids');
|
|
5615
5615
|
}
|
|
5616
5616
|
public get outpostNetworkAclArnOutput() {
|
|
5617
|
-
return this.getString('outpost_network_acl_arn')
|
|
5617
|
+
return this.getString('outpost_network_acl_arn');
|
|
5618
5618
|
}
|
|
5619
5619
|
public get outpostNetworkAclIdOutput() {
|
|
5620
|
-
return this.getString('outpost_network_acl_id')
|
|
5620
|
+
return this.getString('outpost_network_acl_id');
|
|
5621
5621
|
}
|
|
5622
5622
|
public get outpostSubnetArnsOutput() {
|
|
5623
|
-
return this.getString('outpost_subnet_arns')
|
|
5623
|
+
return this.getString('outpost_subnet_arns');
|
|
5624
5624
|
}
|
|
5625
5625
|
public get outpostSubnetsOutput() {
|
|
5626
|
-
return this.getString('outpost_subnets')
|
|
5626
|
+
return this.getString('outpost_subnets');
|
|
5627
5627
|
}
|
|
5628
5628
|
public get outpostSubnetsCidrBlocksOutput() {
|
|
5629
|
-
return this.getString('outpost_subnets_cidr_blocks')
|
|
5629
|
+
return this.getString('outpost_subnets_cidr_blocks');
|
|
5630
5630
|
}
|
|
5631
5631
|
public get outpostSubnetsIpv6CidrBlocksOutput() {
|
|
5632
|
-
return this.getString('outpost_subnets_ipv6_cidr_blocks')
|
|
5632
|
+
return this.getString('outpost_subnets_ipv6_cidr_blocks');
|
|
5633
5633
|
}
|
|
5634
5634
|
public get privateIpv6EgressRouteIdsOutput() {
|
|
5635
|
-
return this.getString('private_ipv6_egress_route_ids')
|
|
5635
|
+
return this.getString('private_ipv6_egress_route_ids');
|
|
5636
5636
|
}
|
|
5637
5637
|
public get privateNatGatewayRouteIdsOutput() {
|
|
5638
|
-
return this.getString('private_nat_gateway_route_ids')
|
|
5638
|
+
return this.getString('private_nat_gateway_route_ids');
|
|
5639
5639
|
}
|
|
5640
5640
|
public get privateNetworkAclArnOutput() {
|
|
5641
|
-
return this.getString('private_network_acl_arn')
|
|
5641
|
+
return this.getString('private_network_acl_arn');
|
|
5642
5642
|
}
|
|
5643
5643
|
public get privateNetworkAclIdOutput() {
|
|
5644
|
-
return this.getString('private_network_acl_id')
|
|
5644
|
+
return this.getString('private_network_acl_id');
|
|
5645
5645
|
}
|
|
5646
5646
|
public get privateRouteTableAssociationIdsOutput() {
|
|
5647
|
-
return this.getString('private_route_table_association_ids')
|
|
5647
|
+
return this.getString('private_route_table_association_ids');
|
|
5648
5648
|
}
|
|
5649
5649
|
public get privateRouteTableIdsOutput() {
|
|
5650
|
-
return this.getString('private_route_table_ids')
|
|
5650
|
+
return this.getString('private_route_table_ids');
|
|
5651
5651
|
}
|
|
5652
5652
|
public get privateSubnetArnsOutput() {
|
|
5653
|
-
return this.getString('private_subnet_arns')
|
|
5653
|
+
return this.getString('private_subnet_arns');
|
|
5654
5654
|
}
|
|
5655
5655
|
public get privateSubnetsOutput() {
|
|
5656
|
-
return this.getString('private_subnets')
|
|
5656
|
+
return this.getString('private_subnets');
|
|
5657
5657
|
}
|
|
5658
5658
|
public get privateSubnetsCidrBlocksOutput() {
|
|
5659
|
-
return this.getString('private_subnets_cidr_blocks')
|
|
5659
|
+
return this.getString('private_subnets_cidr_blocks');
|
|
5660
5660
|
}
|
|
5661
5661
|
public get privateSubnetsIpv6CidrBlocksOutput() {
|
|
5662
|
-
return this.getString('private_subnets_ipv6_cidr_blocks')
|
|
5662
|
+
return this.getString('private_subnets_ipv6_cidr_blocks');
|
|
5663
5663
|
}
|
|
5664
5664
|
public get publicInternetGatewayIpv6RouteIdOutput() {
|
|
5665
|
-
return this.getString('public_internet_gateway_ipv6_route_id')
|
|
5665
|
+
return this.getString('public_internet_gateway_ipv6_route_id');
|
|
5666
5666
|
}
|
|
5667
5667
|
public get publicInternetGatewayRouteIdOutput() {
|
|
5668
|
-
return this.getString('public_internet_gateway_route_id')
|
|
5668
|
+
return this.getString('public_internet_gateway_route_id');
|
|
5669
5669
|
}
|
|
5670
5670
|
public get publicNetworkAclArnOutput() {
|
|
5671
|
-
return this.getString('public_network_acl_arn')
|
|
5671
|
+
return this.getString('public_network_acl_arn');
|
|
5672
5672
|
}
|
|
5673
5673
|
public get publicNetworkAclIdOutput() {
|
|
5674
|
-
return this.getString('public_network_acl_id')
|
|
5674
|
+
return this.getString('public_network_acl_id');
|
|
5675
5675
|
}
|
|
5676
5676
|
public get publicRouteTableAssociationIdsOutput() {
|
|
5677
|
-
return this.getString('public_route_table_association_ids')
|
|
5677
|
+
return this.getString('public_route_table_association_ids');
|
|
5678
5678
|
}
|
|
5679
5679
|
public get publicRouteTableIdsOutput() {
|
|
5680
|
-
return this.getString('public_route_table_ids')
|
|
5680
|
+
return this.getString('public_route_table_ids');
|
|
5681
5681
|
}
|
|
5682
5682
|
public get publicSubnetArnsOutput() {
|
|
5683
|
-
return this.getString('public_subnet_arns')
|
|
5683
|
+
return this.getString('public_subnet_arns');
|
|
5684
5684
|
}
|
|
5685
5685
|
public get publicSubnetsOutput() {
|
|
5686
|
-
return this.getString('public_subnets')
|
|
5686
|
+
return this.getString('public_subnets');
|
|
5687
5687
|
}
|
|
5688
5688
|
public get publicSubnetsCidrBlocksOutput() {
|
|
5689
|
-
return this.getString('public_subnets_cidr_blocks')
|
|
5689
|
+
return this.getString('public_subnets_cidr_blocks');
|
|
5690
5690
|
}
|
|
5691
5691
|
public get publicSubnetsIpv6CidrBlocksOutput() {
|
|
5692
|
-
return this.getString('public_subnets_ipv6_cidr_blocks')
|
|
5692
|
+
return this.getString('public_subnets_ipv6_cidr_blocks');
|
|
5693
5693
|
}
|
|
5694
5694
|
public get redshiftNetworkAclArnOutput() {
|
|
5695
|
-
return this.getString('redshift_network_acl_arn')
|
|
5695
|
+
return this.getString('redshift_network_acl_arn');
|
|
5696
5696
|
}
|
|
5697
5697
|
public get redshiftNetworkAclIdOutput() {
|
|
5698
|
-
return this.getString('redshift_network_acl_id')
|
|
5698
|
+
return this.getString('redshift_network_acl_id');
|
|
5699
5699
|
}
|
|
5700
5700
|
public get redshiftPublicRouteTableAssociationIdsOutput() {
|
|
5701
|
-
return this.getString('redshift_public_route_table_association_ids')
|
|
5701
|
+
return this.getString('redshift_public_route_table_association_ids');
|
|
5702
5702
|
}
|
|
5703
5703
|
public get redshiftRouteTableAssociationIdsOutput() {
|
|
5704
|
-
return this.getString('redshift_route_table_association_ids')
|
|
5704
|
+
return this.getString('redshift_route_table_association_ids');
|
|
5705
5705
|
}
|
|
5706
5706
|
public get redshiftRouteTableIdsOutput() {
|
|
5707
|
-
return this.getString('redshift_route_table_ids')
|
|
5707
|
+
return this.getString('redshift_route_table_ids');
|
|
5708
5708
|
}
|
|
5709
5709
|
public get redshiftSubnetArnsOutput() {
|
|
5710
|
-
return this.getString('redshift_subnet_arns')
|
|
5710
|
+
return this.getString('redshift_subnet_arns');
|
|
5711
5711
|
}
|
|
5712
5712
|
public get redshiftSubnetGroupOutput() {
|
|
5713
|
-
return this.getString('redshift_subnet_group')
|
|
5713
|
+
return this.getString('redshift_subnet_group');
|
|
5714
5714
|
}
|
|
5715
5715
|
public get redshiftSubnetsOutput() {
|
|
5716
|
-
return this.getString('redshift_subnets')
|
|
5716
|
+
return this.getString('redshift_subnets');
|
|
5717
5717
|
}
|
|
5718
5718
|
public get redshiftSubnetsCidrBlocksOutput() {
|
|
5719
|
-
return this.getString('redshift_subnets_cidr_blocks')
|
|
5719
|
+
return this.getString('redshift_subnets_cidr_blocks');
|
|
5720
5720
|
}
|
|
5721
5721
|
public get redshiftSubnetsIpv6CidrBlocksOutput() {
|
|
5722
|
-
return this.getString('redshift_subnets_ipv6_cidr_blocks')
|
|
5722
|
+
return this.getString('redshift_subnets_ipv6_cidr_blocks');
|
|
5723
5723
|
}
|
|
5724
5724
|
public get thisCustomerGatewayOutput() {
|
|
5725
|
-
return this.getString('this_customer_gateway')
|
|
5725
|
+
return this.getString('this_customer_gateway');
|
|
5726
5726
|
}
|
|
5727
5727
|
public get vgwArnOutput() {
|
|
5728
|
-
return this.getString('vgw_arn')
|
|
5728
|
+
return this.getString('vgw_arn');
|
|
5729
5729
|
}
|
|
5730
5730
|
public get vgwIdOutput() {
|
|
5731
|
-
return this.getString('vgw_id')
|
|
5731
|
+
return this.getString('vgw_id');
|
|
5732
5732
|
}
|
|
5733
5733
|
public get vpcArnOutput() {
|
|
5734
|
-
return this.getString('vpc_arn')
|
|
5734
|
+
return this.getString('vpc_arn');
|
|
5735
5735
|
}
|
|
5736
5736
|
public get vpcCidrBlockOutput() {
|
|
5737
|
-
return this.getString('vpc_cidr_block')
|
|
5737
|
+
return this.getString('vpc_cidr_block');
|
|
5738
5738
|
}
|
|
5739
5739
|
public get vpcEnableDnsHostnamesOutput() {
|
|
5740
|
-
return this.getString('vpc_enable_dns_hostnames')
|
|
5740
|
+
return this.getString('vpc_enable_dns_hostnames');
|
|
5741
5741
|
}
|
|
5742
5742
|
public get vpcEnableDnsSupportOutput() {
|
|
5743
|
-
return this.getString('vpc_enable_dns_support')
|
|
5743
|
+
return this.getString('vpc_enable_dns_support');
|
|
5744
5744
|
}
|
|
5745
5745
|
public get vpcEndpointAccessAnalyzerDnsEntryOutput() {
|
|
5746
|
-
return this.getString('vpc_endpoint_access_analyzer_dns_entry')
|
|
5746
|
+
return this.getString('vpc_endpoint_access_analyzer_dns_entry');
|
|
5747
5747
|
}
|
|
5748
5748
|
public get vpcEndpointAccessAnalyzerIdOutput() {
|
|
5749
|
-
return this.getString('vpc_endpoint_access_analyzer_id')
|
|
5749
|
+
return this.getString('vpc_endpoint_access_analyzer_id');
|
|
5750
5750
|
}
|
|
5751
5751
|
public get vpcEndpointAccessAnalyzerNetworkInterfaceIdsOutput() {
|
|
5752
|
-
return this.getString('vpc_endpoint_access_analyzer_network_interface_ids')
|
|
5752
|
+
return this.getString('vpc_endpoint_access_analyzer_network_interface_ids');
|
|
5753
5753
|
}
|
|
5754
5754
|
public get vpcEndpointAcmPcaDnsEntryOutput() {
|
|
5755
|
-
return this.getString('vpc_endpoint_acm_pca_dns_entry')
|
|
5755
|
+
return this.getString('vpc_endpoint_acm_pca_dns_entry');
|
|
5756
5756
|
}
|
|
5757
5757
|
public get vpcEndpointAcmPcaIdOutput() {
|
|
5758
|
-
return this.getString('vpc_endpoint_acm_pca_id')
|
|
5758
|
+
return this.getString('vpc_endpoint_acm_pca_id');
|
|
5759
5759
|
}
|
|
5760
5760
|
public get vpcEndpointAcmPcaNetworkInterfaceIdsOutput() {
|
|
5761
|
-
return this.getString('vpc_endpoint_acm_pca_network_interface_ids')
|
|
5761
|
+
return this.getString('vpc_endpoint_acm_pca_network_interface_ids');
|
|
5762
5762
|
}
|
|
5763
5763
|
public get vpcEndpointApigwDnsEntryOutput() {
|
|
5764
|
-
return this.getString('vpc_endpoint_apigw_dns_entry')
|
|
5764
|
+
return this.getString('vpc_endpoint_apigw_dns_entry');
|
|
5765
5765
|
}
|
|
5766
5766
|
public get vpcEndpointApigwIdOutput() {
|
|
5767
|
-
return this.getString('vpc_endpoint_apigw_id')
|
|
5767
|
+
return this.getString('vpc_endpoint_apigw_id');
|
|
5768
5768
|
}
|
|
5769
5769
|
public get vpcEndpointApigwNetworkInterfaceIdsOutput() {
|
|
5770
|
-
return this.getString('vpc_endpoint_apigw_network_interface_ids')
|
|
5770
|
+
return this.getString('vpc_endpoint_apigw_network_interface_ids');
|
|
5771
5771
|
}
|
|
5772
5772
|
public get vpcEndpointAppmeshEnvoyManagementDnsEntryOutput() {
|
|
5773
|
-
return this.getString('vpc_endpoint_appmesh_envoy_management_dns_entry')
|
|
5773
|
+
return this.getString('vpc_endpoint_appmesh_envoy_management_dns_entry');
|
|
5774
5774
|
}
|
|
5775
5775
|
public get vpcEndpointAppmeshEnvoyManagementIdOutput() {
|
|
5776
|
-
return this.getString('vpc_endpoint_appmesh_envoy_management_id')
|
|
5776
|
+
return this.getString('vpc_endpoint_appmesh_envoy_management_id');
|
|
5777
5777
|
}
|
|
5778
5778
|
public get vpcEndpointAppmeshEnvoyManagementNetworkInterfaceIdsOutput() {
|
|
5779
|
-
return this.getString('vpc_endpoint_appmesh_envoy_management_network_interface_ids')
|
|
5779
|
+
return this.getString('vpc_endpoint_appmesh_envoy_management_network_interface_ids');
|
|
5780
5780
|
}
|
|
5781
5781
|
public get vpcEndpointAppstreamApiDnsEntryOutput() {
|
|
5782
|
-
return this.getString('vpc_endpoint_appstream_api_dns_entry')
|
|
5782
|
+
return this.getString('vpc_endpoint_appstream_api_dns_entry');
|
|
5783
5783
|
}
|
|
5784
5784
|
public get vpcEndpointAppstreamApiIdOutput() {
|
|
5785
|
-
return this.getString('vpc_endpoint_appstream_api_id')
|
|
5785
|
+
return this.getString('vpc_endpoint_appstream_api_id');
|
|
5786
5786
|
}
|
|
5787
5787
|
public get vpcEndpointAppstreamApiNetworkInterfaceIdsOutput() {
|
|
5788
|
-
return this.getString('vpc_endpoint_appstream_api_network_interface_ids')
|
|
5788
|
+
return this.getString('vpc_endpoint_appstream_api_network_interface_ids');
|
|
5789
5789
|
}
|
|
5790
5790
|
public get vpcEndpointAppstreamStreamingDnsEntryOutput() {
|
|
5791
|
-
return this.getString('vpc_endpoint_appstream_streaming_dns_entry')
|
|
5791
|
+
return this.getString('vpc_endpoint_appstream_streaming_dns_entry');
|
|
5792
5792
|
}
|
|
5793
5793
|
public get vpcEndpointAppstreamStreamingIdOutput() {
|
|
5794
|
-
return this.getString('vpc_endpoint_appstream_streaming_id')
|
|
5794
|
+
return this.getString('vpc_endpoint_appstream_streaming_id');
|
|
5795
5795
|
}
|
|
5796
5796
|
public get vpcEndpointAppstreamStreamingNetworkInterfaceIdsOutput() {
|
|
5797
|
-
return this.getString('vpc_endpoint_appstream_streaming_network_interface_ids')
|
|
5797
|
+
return this.getString('vpc_endpoint_appstream_streaming_network_interface_ids');
|
|
5798
5798
|
}
|
|
5799
5799
|
public get vpcEndpointAthenaDnsEntryOutput() {
|
|
5800
|
-
return this.getString('vpc_endpoint_athena_dns_entry')
|
|
5800
|
+
return this.getString('vpc_endpoint_athena_dns_entry');
|
|
5801
5801
|
}
|
|
5802
5802
|
public get vpcEndpointAthenaIdOutput() {
|
|
5803
|
-
return this.getString('vpc_endpoint_athena_id')
|
|
5803
|
+
return this.getString('vpc_endpoint_athena_id');
|
|
5804
5804
|
}
|
|
5805
5805
|
public get vpcEndpointAthenaNetworkInterfaceIdsOutput() {
|
|
5806
|
-
return this.getString('vpc_endpoint_athena_network_interface_ids')
|
|
5806
|
+
return this.getString('vpc_endpoint_athena_network_interface_ids');
|
|
5807
5807
|
}
|
|
5808
5808
|
public get vpcEndpointAutoScalingPlansDnsEntryOutput() {
|
|
5809
|
-
return this.getString('vpc_endpoint_auto_scaling_plans_dns_entry')
|
|
5809
|
+
return this.getString('vpc_endpoint_auto_scaling_plans_dns_entry');
|
|
5810
5810
|
}
|
|
5811
5811
|
public get vpcEndpointAutoScalingPlansIdOutput() {
|
|
5812
|
-
return this.getString('vpc_endpoint_auto_scaling_plans_id')
|
|
5812
|
+
return this.getString('vpc_endpoint_auto_scaling_plans_id');
|
|
5813
5813
|
}
|
|
5814
5814
|
public get vpcEndpointAutoScalingPlansNetworkInterfaceIdsOutput() {
|
|
5815
|
-
return this.getString('vpc_endpoint_auto_scaling_plans_network_interface_ids')
|
|
5815
|
+
return this.getString('vpc_endpoint_auto_scaling_plans_network_interface_ids');
|
|
5816
5816
|
}
|
|
5817
5817
|
public get vpcEndpointCloudDirectoryDnsEntryOutput() {
|
|
5818
|
-
return this.getString('vpc_endpoint_cloud_directory_dns_entry')
|
|
5818
|
+
return this.getString('vpc_endpoint_cloud_directory_dns_entry');
|
|
5819
5819
|
}
|
|
5820
5820
|
public get vpcEndpointCloudDirectoryIdOutput() {
|
|
5821
|
-
return this.getString('vpc_endpoint_cloud_directory_id')
|
|
5821
|
+
return this.getString('vpc_endpoint_cloud_directory_id');
|
|
5822
5822
|
}
|
|
5823
5823
|
public get vpcEndpointCloudDirectoryNetworkInterfaceIdsOutput() {
|
|
5824
|
-
return this.getString('vpc_endpoint_cloud_directory_network_interface_ids')
|
|
5824
|
+
return this.getString('vpc_endpoint_cloud_directory_network_interface_ids');
|
|
5825
5825
|
}
|
|
5826
5826
|
public get vpcEndpointCloudformationDnsEntryOutput() {
|
|
5827
|
-
return this.getString('vpc_endpoint_cloudformation_dns_entry')
|
|
5827
|
+
return this.getString('vpc_endpoint_cloudformation_dns_entry');
|
|
5828
5828
|
}
|
|
5829
5829
|
public get vpcEndpointCloudformationIdOutput() {
|
|
5830
|
-
return this.getString('vpc_endpoint_cloudformation_id')
|
|
5830
|
+
return this.getString('vpc_endpoint_cloudformation_id');
|
|
5831
5831
|
}
|
|
5832
5832
|
public get vpcEndpointCloudformationNetworkInterfaceIdsOutput() {
|
|
5833
|
-
return this.getString('vpc_endpoint_cloudformation_network_interface_ids')
|
|
5833
|
+
return this.getString('vpc_endpoint_cloudformation_network_interface_ids');
|
|
5834
5834
|
}
|
|
5835
5835
|
public get vpcEndpointCloudtrailDnsEntryOutput() {
|
|
5836
|
-
return this.getString('vpc_endpoint_cloudtrail_dns_entry')
|
|
5836
|
+
return this.getString('vpc_endpoint_cloudtrail_dns_entry');
|
|
5837
5837
|
}
|
|
5838
5838
|
public get vpcEndpointCloudtrailIdOutput() {
|
|
5839
|
-
return this.getString('vpc_endpoint_cloudtrail_id')
|
|
5839
|
+
return this.getString('vpc_endpoint_cloudtrail_id');
|
|
5840
5840
|
}
|
|
5841
5841
|
public get vpcEndpointCloudtrailNetworkInterfaceIdsOutput() {
|
|
5842
|
-
return this.getString('vpc_endpoint_cloudtrail_network_interface_ids')
|
|
5842
|
+
return this.getString('vpc_endpoint_cloudtrail_network_interface_ids');
|
|
5843
5843
|
}
|
|
5844
5844
|
public get vpcEndpointCodeartifactApiDnsEntryOutput() {
|
|
5845
|
-
return this.getString('vpc_endpoint_codeartifact_api_dns_entry')
|
|
5845
|
+
return this.getString('vpc_endpoint_codeartifact_api_dns_entry');
|
|
5846
5846
|
}
|
|
5847
5847
|
public get vpcEndpointCodeartifactApiIdOutput() {
|
|
5848
|
-
return this.getString('vpc_endpoint_codeartifact_api_id')
|
|
5848
|
+
return this.getString('vpc_endpoint_codeartifact_api_id');
|
|
5849
5849
|
}
|
|
5850
5850
|
public get vpcEndpointCodeartifactApiNetworkInterfaceIdsOutput() {
|
|
5851
|
-
return this.getString('vpc_endpoint_codeartifact_api_network_interface_ids')
|
|
5851
|
+
return this.getString('vpc_endpoint_codeartifact_api_network_interface_ids');
|
|
5852
5852
|
}
|
|
5853
5853
|
public get vpcEndpointCodeartifactRepositoriesDnsEntryOutput() {
|
|
5854
|
-
return this.getString('vpc_endpoint_codeartifact_repositories_dns_entry')
|
|
5854
|
+
return this.getString('vpc_endpoint_codeartifact_repositories_dns_entry');
|
|
5855
5855
|
}
|
|
5856
5856
|
public get vpcEndpointCodeartifactRepositoriesIdOutput() {
|
|
5857
|
-
return this.getString('vpc_endpoint_codeartifact_repositories_id')
|
|
5857
|
+
return this.getString('vpc_endpoint_codeartifact_repositories_id');
|
|
5858
5858
|
}
|
|
5859
5859
|
public get vpcEndpointCodeartifactRepositoriesNetworkInterfaceIdsOutput() {
|
|
5860
|
-
return this.getString('vpc_endpoint_codeartifact_repositories_network_interface_ids')
|
|
5860
|
+
return this.getString('vpc_endpoint_codeartifact_repositories_network_interface_ids');
|
|
5861
5861
|
}
|
|
5862
5862
|
public get vpcEndpointCodebuildDnsEntryOutput() {
|
|
5863
|
-
return this.getString('vpc_endpoint_codebuild_dns_entry')
|
|
5863
|
+
return this.getString('vpc_endpoint_codebuild_dns_entry');
|
|
5864
5864
|
}
|
|
5865
5865
|
public get vpcEndpointCodebuildIdOutput() {
|
|
5866
|
-
return this.getString('vpc_endpoint_codebuild_id')
|
|
5866
|
+
return this.getString('vpc_endpoint_codebuild_id');
|
|
5867
5867
|
}
|
|
5868
5868
|
public get vpcEndpointCodebuildNetworkInterfaceIdsOutput() {
|
|
5869
|
-
return this.getString('vpc_endpoint_codebuild_network_interface_ids')
|
|
5869
|
+
return this.getString('vpc_endpoint_codebuild_network_interface_ids');
|
|
5870
5870
|
}
|
|
5871
5871
|
public get vpcEndpointCodecommitDnsEntryOutput() {
|
|
5872
|
-
return this.getString('vpc_endpoint_codecommit_dns_entry')
|
|
5872
|
+
return this.getString('vpc_endpoint_codecommit_dns_entry');
|
|
5873
5873
|
}
|
|
5874
5874
|
public get vpcEndpointCodecommitIdOutput() {
|
|
5875
|
-
return this.getString('vpc_endpoint_codecommit_id')
|
|
5875
|
+
return this.getString('vpc_endpoint_codecommit_id');
|
|
5876
5876
|
}
|
|
5877
5877
|
public get vpcEndpointCodecommitNetworkInterfaceIdsOutput() {
|
|
5878
|
-
return this.getString('vpc_endpoint_codecommit_network_interface_ids')
|
|
5878
|
+
return this.getString('vpc_endpoint_codecommit_network_interface_ids');
|
|
5879
5879
|
}
|
|
5880
5880
|
public get vpcEndpointCodepipelineDnsEntryOutput() {
|
|
5881
|
-
return this.getString('vpc_endpoint_codepipeline_dns_entry')
|
|
5881
|
+
return this.getString('vpc_endpoint_codepipeline_dns_entry');
|
|
5882
5882
|
}
|
|
5883
5883
|
public get vpcEndpointCodepipelineIdOutput() {
|
|
5884
|
-
return this.getString('vpc_endpoint_codepipeline_id')
|
|
5884
|
+
return this.getString('vpc_endpoint_codepipeline_id');
|
|
5885
5885
|
}
|
|
5886
5886
|
public get vpcEndpointCodepipelineNetworkInterfaceIdsOutput() {
|
|
5887
|
-
return this.getString('vpc_endpoint_codepipeline_network_interface_ids')
|
|
5887
|
+
return this.getString('vpc_endpoint_codepipeline_network_interface_ids');
|
|
5888
5888
|
}
|
|
5889
5889
|
public get vpcEndpointConfigDnsEntryOutput() {
|
|
5890
|
-
return this.getString('vpc_endpoint_config_dns_entry')
|
|
5890
|
+
return this.getString('vpc_endpoint_config_dns_entry');
|
|
5891
5891
|
}
|
|
5892
5892
|
public get vpcEndpointConfigIdOutput() {
|
|
5893
|
-
return this.getString('vpc_endpoint_config_id')
|
|
5893
|
+
return this.getString('vpc_endpoint_config_id');
|
|
5894
5894
|
}
|
|
5895
5895
|
public get vpcEndpointConfigNetworkInterfaceIdsOutput() {
|
|
5896
|
-
return this.getString('vpc_endpoint_config_network_interface_ids')
|
|
5896
|
+
return this.getString('vpc_endpoint_config_network_interface_ids');
|
|
5897
5897
|
}
|
|
5898
5898
|
public get vpcEndpointDatasyncDnsEntryOutput() {
|
|
5899
|
-
return this.getString('vpc_endpoint_datasync_dns_entry')
|
|
5899
|
+
return this.getString('vpc_endpoint_datasync_dns_entry');
|
|
5900
5900
|
}
|
|
5901
5901
|
public get vpcEndpointDatasyncIdOutput() {
|
|
5902
|
-
return this.getString('vpc_endpoint_datasync_id')
|
|
5902
|
+
return this.getString('vpc_endpoint_datasync_id');
|
|
5903
5903
|
}
|
|
5904
5904
|
public get vpcEndpointDatasyncNetworkInterfaceIdsOutput() {
|
|
5905
|
-
return this.getString('vpc_endpoint_datasync_network_interface_ids')
|
|
5905
|
+
return this.getString('vpc_endpoint_datasync_network_interface_ids');
|
|
5906
5906
|
}
|
|
5907
5907
|
public get vpcEndpointDmsDnsEntryOutput() {
|
|
5908
|
-
return this.getString('vpc_endpoint_dms_dns_entry')
|
|
5908
|
+
return this.getString('vpc_endpoint_dms_dns_entry');
|
|
5909
5909
|
}
|
|
5910
5910
|
public get vpcEndpointDmsIdOutput() {
|
|
5911
|
-
return this.getString('vpc_endpoint_dms_id')
|
|
5911
|
+
return this.getString('vpc_endpoint_dms_id');
|
|
5912
5912
|
}
|
|
5913
5913
|
public get vpcEndpointDmsNetworkInterfaceIdsOutput() {
|
|
5914
|
-
return this.getString('vpc_endpoint_dms_network_interface_ids')
|
|
5914
|
+
return this.getString('vpc_endpoint_dms_network_interface_ids');
|
|
5915
5915
|
}
|
|
5916
5916
|
public get vpcEndpointDynamodbIdOutput() {
|
|
5917
|
-
return this.getString('vpc_endpoint_dynamodb_id')
|
|
5917
|
+
return this.getString('vpc_endpoint_dynamodb_id');
|
|
5918
5918
|
}
|
|
5919
5919
|
public get vpcEndpointDynamodbPlIdOutput() {
|
|
5920
|
-
return this.getString('vpc_endpoint_dynamodb_pl_id')
|
|
5920
|
+
return this.getString('vpc_endpoint_dynamodb_pl_id');
|
|
5921
5921
|
}
|
|
5922
5922
|
public get vpcEndpointEbsDnsEntryOutput() {
|
|
5923
|
-
return this.getString('vpc_endpoint_ebs_dns_entry')
|
|
5923
|
+
return this.getString('vpc_endpoint_ebs_dns_entry');
|
|
5924
5924
|
}
|
|
5925
5925
|
public get vpcEndpointEbsIdOutput() {
|
|
5926
|
-
return this.getString('vpc_endpoint_ebs_id')
|
|
5926
|
+
return this.getString('vpc_endpoint_ebs_id');
|
|
5927
5927
|
}
|
|
5928
5928
|
public get vpcEndpointEbsNetworkInterfaceIdsOutput() {
|
|
5929
|
-
return this.getString('vpc_endpoint_ebs_network_interface_ids')
|
|
5929
|
+
return this.getString('vpc_endpoint_ebs_network_interface_ids');
|
|
5930
5930
|
}
|
|
5931
5931
|
public get vpcEndpointEc2AutoscalingDnsEntryOutput() {
|
|
5932
|
-
return this.getString('vpc_endpoint_ec2_autoscaling_dns_entry')
|
|
5932
|
+
return this.getString('vpc_endpoint_ec2_autoscaling_dns_entry');
|
|
5933
5933
|
}
|
|
5934
5934
|
public get vpcEndpointEc2AutoscalingIdOutput() {
|
|
5935
|
-
return this.getString('vpc_endpoint_ec2_autoscaling_id')
|
|
5935
|
+
return this.getString('vpc_endpoint_ec2_autoscaling_id');
|
|
5936
5936
|
}
|
|
5937
5937
|
public get vpcEndpointEc2AutoscalingNetworkInterfaceIdsOutput() {
|
|
5938
|
-
return this.getString('vpc_endpoint_ec2_autoscaling_network_interface_ids')
|
|
5938
|
+
return this.getString('vpc_endpoint_ec2_autoscaling_network_interface_ids');
|
|
5939
5939
|
}
|
|
5940
5940
|
public get vpcEndpointEc2DnsEntryOutput() {
|
|
5941
|
-
return this.getString('vpc_endpoint_ec2_dns_entry')
|
|
5941
|
+
return this.getString('vpc_endpoint_ec2_dns_entry');
|
|
5942
5942
|
}
|
|
5943
5943
|
public get vpcEndpointEc2IdOutput() {
|
|
5944
|
-
return this.getString('vpc_endpoint_ec2_id')
|
|
5944
|
+
return this.getString('vpc_endpoint_ec2_id');
|
|
5945
5945
|
}
|
|
5946
5946
|
public get vpcEndpointEc2NetworkInterfaceIdsOutput() {
|
|
5947
|
-
return this.getString('vpc_endpoint_ec2_network_interface_ids')
|
|
5947
|
+
return this.getString('vpc_endpoint_ec2_network_interface_ids');
|
|
5948
5948
|
}
|
|
5949
5949
|
public get vpcEndpointEc2MessagesDnsEntryOutput() {
|
|
5950
|
-
return this.getString('vpc_endpoint_ec2messages_dns_entry')
|
|
5950
|
+
return this.getString('vpc_endpoint_ec2messages_dns_entry');
|
|
5951
5951
|
}
|
|
5952
5952
|
public get vpcEndpointEc2MessagesIdOutput() {
|
|
5953
|
-
return this.getString('vpc_endpoint_ec2messages_id')
|
|
5953
|
+
return this.getString('vpc_endpoint_ec2messages_id');
|
|
5954
5954
|
}
|
|
5955
5955
|
public get vpcEndpointEc2MessagesNetworkInterfaceIdsOutput() {
|
|
5956
|
-
return this.getString('vpc_endpoint_ec2messages_network_interface_ids')
|
|
5956
|
+
return this.getString('vpc_endpoint_ec2messages_network_interface_ids');
|
|
5957
5957
|
}
|
|
5958
5958
|
public get vpcEndpointEcrApiDnsEntryOutput() {
|
|
5959
|
-
return this.getString('vpc_endpoint_ecr_api_dns_entry')
|
|
5959
|
+
return this.getString('vpc_endpoint_ecr_api_dns_entry');
|
|
5960
5960
|
}
|
|
5961
5961
|
public get vpcEndpointEcrApiIdOutput() {
|
|
5962
|
-
return this.getString('vpc_endpoint_ecr_api_id')
|
|
5962
|
+
return this.getString('vpc_endpoint_ecr_api_id');
|
|
5963
5963
|
}
|
|
5964
5964
|
public get vpcEndpointEcrApiNetworkInterfaceIdsOutput() {
|
|
5965
|
-
return this.getString('vpc_endpoint_ecr_api_network_interface_ids')
|
|
5965
|
+
return this.getString('vpc_endpoint_ecr_api_network_interface_ids');
|
|
5966
5966
|
}
|
|
5967
5967
|
public get vpcEndpointEcrDkrDnsEntryOutput() {
|
|
5968
|
-
return this.getString('vpc_endpoint_ecr_dkr_dns_entry')
|
|
5968
|
+
return this.getString('vpc_endpoint_ecr_dkr_dns_entry');
|
|
5969
5969
|
}
|
|
5970
5970
|
public get vpcEndpointEcrDkrIdOutput() {
|
|
5971
|
-
return this.getString('vpc_endpoint_ecr_dkr_id')
|
|
5971
|
+
return this.getString('vpc_endpoint_ecr_dkr_id');
|
|
5972
5972
|
}
|
|
5973
5973
|
public get vpcEndpointEcrDkrNetworkInterfaceIdsOutput() {
|
|
5974
|
-
return this.getString('vpc_endpoint_ecr_dkr_network_interface_ids')
|
|
5974
|
+
return this.getString('vpc_endpoint_ecr_dkr_network_interface_ids');
|
|
5975
5975
|
}
|
|
5976
5976
|
public get vpcEndpointEcsAgentDnsEntryOutput() {
|
|
5977
|
-
return this.getString('vpc_endpoint_ecs_agent_dns_entry')
|
|
5977
|
+
return this.getString('vpc_endpoint_ecs_agent_dns_entry');
|
|
5978
5978
|
}
|
|
5979
5979
|
public get vpcEndpointEcsAgentIdOutput() {
|
|
5980
|
-
return this.getString('vpc_endpoint_ecs_agent_id')
|
|
5980
|
+
return this.getString('vpc_endpoint_ecs_agent_id');
|
|
5981
5981
|
}
|
|
5982
5982
|
public get vpcEndpointEcsAgentNetworkInterfaceIdsOutput() {
|
|
5983
|
-
return this.getString('vpc_endpoint_ecs_agent_network_interface_ids')
|
|
5983
|
+
return this.getString('vpc_endpoint_ecs_agent_network_interface_ids');
|
|
5984
5984
|
}
|
|
5985
5985
|
public get vpcEndpointEcsDnsEntryOutput() {
|
|
5986
|
-
return this.getString('vpc_endpoint_ecs_dns_entry')
|
|
5986
|
+
return this.getString('vpc_endpoint_ecs_dns_entry');
|
|
5987
5987
|
}
|
|
5988
5988
|
public get vpcEndpointEcsIdOutput() {
|
|
5989
|
-
return this.getString('vpc_endpoint_ecs_id')
|
|
5989
|
+
return this.getString('vpc_endpoint_ecs_id');
|
|
5990
5990
|
}
|
|
5991
5991
|
public get vpcEndpointEcsNetworkInterfaceIdsOutput() {
|
|
5992
|
-
return this.getString('vpc_endpoint_ecs_network_interface_ids')
|
|
5992
|
+
return this.getString('vpc_endpoint_ecs_network_interface_ids');
|
|
5993
5993
|
}
|
|
5994
5994
|
public get vpcEndpointEcsTelemetryDnsEntryOutput() {
|
|
5995
|
-
return this.getString('vpc_endpoint_ecs_telemetry_dns_entry')
|
|
5995
|
+
return this.getString('vpc_endpoint_ecs_telemetry_dns_entry');
|
|
5996
5996
|
}
|
|
5997
5997
|
public get vpcEndpointEcsTelemetryIdOutput() {
|
|
5998
|
-
return this.getString('vpc_endpoint_ecs_telemetry_id')
|
|
5998
|
+
return this.getString('vpc_endpoint_ecs_telemetry_id');
|
|
5999
5999
|
}
|
|
6000
6000
|
public get vpcEndpointEcsTelemetryNetworkInterfaceIdsOutput() {
|
|
6001
|
-
return this.getString('vpc_endpoint_ecs_telemetry_network_interface_ids')
|
|
6001
|
+
return this.getString('vpc_endpoint_ecs_telemetry_network_interface_ids');
|
|
6002
6002
|
}
|
|
6003
6003
|
public get vpcEndpointEfsDnsEntryOutput() {
|
|
6004
|
-
return this.getString('vpc_endpoint_efs_dns_entry')
|
|
6004
|
+
return this.getString('vpc_endpoint_efs_dns_entry');
|
|
6005
6005
|
}
|
|
6006
6006
|
public get vpcEndpointEfsIdOutput() {
|
|
6007
|
-
return this.getString('vpc_endpoint_efs_id')
|
|
6007
|
+
return this.getString('vpc_endpoint_efs_id');
|
|
6008
6008
|
}
|
|
6009
6009
|
public get vpcEndpointEfsNetworkInterfaceIdsOutput() {
|
|
6010
|
-
return this.getString('vpc_endpoint_efs_network_interface_ids')
|
|
6010
|
+
return this.getString('vpc_endpoint_efs_network_interface_ids');
|
|
6011
6011
|
}
|
|
6012
6012
|
public get vpcEndpointElasticInferenceRuntimeDnsEntryOutput() {
|
|
6013
|
-
return this.getString('vpc_endpoint_elastic_inference_runtime_dns_entry')
|
|
6013
|
+
return this.getString('vpc_endpoint_elastic_inference_runtime_dns_entry');
|
|
6014
6014
|
}
|
|
6015
6015
|
public get vpcEndpointElasticInferenceRuntimeIdOutput() {
|
|
6016
|
-
return this.getString('vpc_endpoint_elastic_inference_runtime_id')
|
|
6016
|
+
return this.getString('vpc_endpoint_elastic_inference_runtime_id');
|
|
6017
6017
|
}
|
|
6018
6018
|
public get vpcEndpointElasticInferenceRuntimeNetworkInterfaceIdsOutput() {
|
|
6019
|
-
return this.getString('vpc_endpoint_elastic_inference_runtime_network_interface_ids')
|
|
6019
|
+
return this.getString('vpc_endpoint_elastic_inference_runtime_network_interface_ids');
|
|
6020
6020
|
}
|
|
6021
6021
|
public get vpcEndpointElasticbeanstalkDnsEntryOutput() {
|
|
6022
|
-
return this.getString('vpc_endpoint_elasticbeanstalk_dns_entry')
|
|
6022
|
+
return this.getString('vpc_endpoint_elasticbeanstalk_dns_entry');
|
|
6023
6023
|
}
|
|
6024
6024
|
public get vpcEndpointElasticbeanstalkHealthDnsEntryOutput() {
|
|
6025
|
-
return this.getString('vpc_endpoint_elasticbeanstalk_health_dns_entry')
|
|
6025
|
+
return this.getString('vpc_endpoint_elasticbeanstalk_health_dns_entry');
|
|
6026
6026
|
}
|
|
6027
6027
|
public get vpcEndpointElasticbeanstalkHealthIdOutput() {
|
|
6028
|
-
return this.getString('vpc_endpoint_elasticbeanstalk_health_id')
|
|
6028
|
+
return this.getString('vpc_endpoint_elasticbeanstalk_health_id');
|
|
6029
6029
|
}
|
|
6030
6030
|
public get vpcEndpointElasticbeanstalkHealthNetworkInterfaceIdsOutput() {
|
|
6031
|
-
return this.getString('vpc_endpoint_elasticbeanstalk_health_network_interface_ids')
|
|
6031
|
+
return this.getString('vpc_endpoint_elasticbeanstalk_health_network_interface_ids');
|
|
6032
6032
|
}
|
|
6033
6033
|
public get vpcEndpointElasticbeanstalkIdOutput() {
|
|
6034
|
-
return this.getString('vpc_endpoint_elasticbeanstalk_id')
|
|
6034
|
+
return this.getString('vpc_endpoint_elasticbeanstalk_id');
|
|
6035
6035
|
}
|
|
6036
6036
|
public get vpcEndpointElasticbeanstalkNetworkInterfaceIdsOutput() {
|
|
6037
|
-
return this.getString('vpc_endpoint_elasticbeanstalk_network_interface_ids')
|
|
6037
|
+
return this.getString('vpc_endpoint_elasticbeanstalk_network_interface_ids');
|
|
6038
6038
|
}
|
|
6039
6039
|
public get vpcEndpointElasticloadbalancingDnsEntryOutput() {
|
|
6040
|
-
return this.getString('vpc_endpoint_elasticloadbalancing_dns_entry')
|
|
6040
|
+
return this.getString('vpc_endpoint_elasticloadbalancing_dns_entry');
|
|
6041
6041
|
}
|
|
6042
6042
|
public get vpcEndpointElasticloadbalancingIdOutput() {
|
|
6043
|
-
return this.getString('vpc_endpoint_elasticloadbalancing_id')
|
|
6043
|
+
return this.getString('vpc_endpoint_elasticloadbalancing_id');
|
|
6044
6044
|
}
|
|
6045
6045
|
public get vpcEndpointElasticloadbalancingNetworkInterfaceIdsOutput() {
|
|
6046
|
-
return this.getString('vpc_endpoint_elasticloadbalancing_network_interface_ids')
|
|
6046
|
+
return this.getString('vpc_endpoint_elasticloadbalancing_network_interface_ids');
|
|
6047
6047
|
}
|
|
6048
6048
|
public get vpcEndpointElasticmapreduceDnsEntryOutput() {
|
|
6049
|
-
return this.getString('vpc_endpoint_elasticmapreduce_dns_entry')
|
|
6049
|
+
return this.getString('vpc_endpoint_elasticmapreduce_dns_entry');
|
|
6050
6050
|
}
|
|
6051
6051
|
public get vpcEndpointElasticmapreduceIdOutput() {
|
|
6052
|
-
return this.getString('vpc_endpoint_elasticmapreduce_id')
|
|
6052
|
+
return this.getString('vpc_endpoint_elasticmapreduce_id');
|
|
6053
6053
|
}
|
|
6054
6054
|
public get vpcEndpointElasticmapreduceNetworkInterfaceIdsOutput() {
|
|
6055
|
-
return this.getString('vpc_endpoint_elasticmapreduce_network_interface_ids')
|
|
6055
|
+
return this.getString('vpc_endpoint_elasticmapreduce_network_interface_ids');
|
|
6056
6056
|
}
|
|
6057
6057
|
public get vpcEndpointEventsDnsEntryOutput() {
|
|
6058
|
-
return this.getString('vpc_endpoint_events_dns_entry')
|
|
6058
|
+
return this.getString('vpc_endpoint_events_dns_entry');
|
|
6059
6059
|
}
|
|
6060
6060
|
public get vpcEndpointEventsIdOutput() {
|
|
6061
|
-
return this.getString('vpc_endpoint_events_id')
|
|
6061
|
+
return this.getString('vpc_endpoint_events_id');
|
|
6062
6062
|
}
|
|
6063
6063
|
public get vpcEndpointEventsNetworkInterfaceIdsOutput() {
|
|
6064
|
-
return this.getString('vpc_endpoint_events_network_interface_ids')
|
|
6064
|
+
return this.getString('vpc_endpoint_events_network_interface_ids');
|
|
6065
6065
|
}
|
|
6066
6066
|
public get vpcEndpointGitCodecommitDnsEntryOutput() {
|
|
6067
|
-
return this.getString('vpc_endpoint_git_codecommit_dns_entry')
|
|
6067
|
+
return this.getString('vpc_endpoint_git_codecommit_dns_entry');
|
|
6068
6068
|
}
|
|
6069
6069
|
public get vpcEndpointGitCodecommitIdOutput() {
|
|
6070
|
-
return this.getString('vpc_endpoint_git_codecommit_id')
|
|
6070
|
+
return this.getString('vpc_endpoint_git_codecommit_id');
|
|
6071
6071
|
}
|
|
6072
6072
|
public get vpcEndpointGitCodecommitNetworkInterfaceIdsOutput() {
|
|
6073
|
-
return this.getString('vpc_endpoint_git_codecommit_network_interface_ids')
|
|
6073
|
+
return this.getString('vpc_endpoint_git_codecommit_network_interface_ids');
|
|
6074
6074
|
}
|
|
6075
6075
|
public get vpcEndpointGlueDnsEntryOutput() {
|
|
6076
|
-
return this.getString('vpc_endpoint_glue_dns_entry')
|
|
6076
|
+
return this.getString('vpc_endpoint_glue_dns_entry');
|
|
6077
6077
|
}
|
|
6078
6078
|
public get vpcEndpointGlueIdOutput() {
|
|
6079
|
-
return this.getString('vpc_endpoint_glue_id')
|
|
6079
|
+
return this.getString('vpc_endpoint_glue_id');
|
|
6080
6080
|
}
|
|
6081
6081
|
public get vpcEndpointGlueNetworkInterfaceIdsOutput() {
|
|
6082
|
-
return this.getString('vpc_endpoint_glue_network_interface_ids')
|
|
6082
|
+
return this.getString('vpc_endpoint_glue_network_interface_ids');
|
|
6083
6083
|
}
|
|
6084
6084
|
public get vpcEndpointKinesisFirehoseDnsEntryOutput() {
|
|
6085
|
-
return this.getString('vpc_endpoint_kinesis_firehose_dns_entry')
|
|
6085
|
+
return this.getString('vpc_endpoint_kinesis_firehose_dns_entry');
|
|
6086
6086
|
}
|
|
6087
6087
|
public get vpcEndpointKinesisFirehoseIdOutput() {
|
|
6088
|
-
return this.getString('vpc_endpoint_kinesis_firehose_id')
|
|
6088
|
+
return this.getString('vpc_endpoint_kinesis_firehose_id');
|
|
6089
6089
|
}
|
|
6090
6090
|
public get vpcEndpointKinesisFirehoseNetworkInterfaceIdsOutput() {
|
|
6091
|
-
return this.getString('vpc_endpoint_kinesis_firehose_network_interface_ids')
|
|
6091
|
+
return this.getString('vpc_endpoint_kinesis_firehose_network_interface_ids');
|
|
6092
6092
|
}
|
|
6093
6093
|
public get vpcEndpointKinesisStreamsDnsEntryOutput() {
|
|
6094
|
-
return this.getString('vpc_endpoint_kinesis_streams_dns_entry')
|
|
6094
|
+
return this.getString('vpc_endpoint_kinesis_streams_dns_entry');
|
|
6095
6095
|
}
|
|
6096
6096
|
public get vpcEndpointKinesisStreamsIdOutput() {
|
|
6097
|
-
return this.getString('vpc_endpoint_kinesis_streams_id')
|
|
6097
|
+
return this.getString('vpc_endpoint_kinesis_streams_id');
|
|
6098
6098
|
}
|
|
6099
6099
|
public get vpcEndpointKinesisStreamsNetworkInterfaceIdsOutput() {
|
|
6100
|
-
return this.getString('vpc_endpoint_kinesis_streams_network_interface_ids')
|
|
6100
|
+
return this.getString('vpc_endpoint_kinesis_streams_network_interface_ids');
|
|
6101
6101
|
}
|
|
6102
6102
|
public get vpcEndpointKmsDnsEntryOutput() {
|
|
6103
|
-
return this.getString('vpc_endpoint_kms_dns_entry')
|
|
6103
|
+
return this.getString('vpc_endpoint_kms_dns_entry');
|
|
6104
6104
|
}
|
|
6105
6105
|
public get vpcEndpointKmsIdOutput() {
|
|
6106
|
-
return this.getString('vpc_endpoint_kms_id')
|
|
6106
|
+
return this.getString('vpc_endpoint_kms_id');
|
|
6107
6107
|
}
|
|
6108
6108
|
public get vpcEndpointKmsNetworkInterfaceIdsOutput() {
|
|
6109
|
-
return this.getString('vpc_endpoint_kms_network_interface_ids')
|
|
6109
|
+
return this.getString('vpc_endpoint_kms_network_interface_ids');
|
|
6110
6110
|
}
|
|
6111
6111
|
public get vpcEndpointLambdaDnsEntryOutput() {
|
|
6112
|
-
return this.getString('vpc_endpoint_lambda_dns_entry')
|
|
6112
|
+
return this.getString('vpc_endpoint_lambda_dns_entry');
|
|
6113
6113
|
}
|
|
6114
6114
|
public get vpcEndpointLambdaIdOutput() {
|
|
6115
|
-
return this.getString('vpc_endpoint_lambda_id')
|
|
6115
|
+
return this.getString('vpc_endpoint_lambda_id');
|
|
6116
6116
|
}
|
|
6117
6117
|
public get vpcEndpointLambdaNetworkInterfaceIdsOutput() {
|
|
6118
|
-
return this.getString('vpc_endpoint_lambda_network_interface_ids')
|
|
6118
|
+
return this.getString('vpc_endpoint_lambda_network_interface_ids');
|
|
6119
6119
|
}
|
|
6120
6120
|
public get vpcEndpointLogsDnsEntryOutput() {
|
|
6121
|
-
return this.getString('vpc_endpoint_logs_dns_entry')
|
|
6121
|
+
return this.getString('vpc_endpoint_logs_dns_entry');
|
|
6122
6122
|
}
|
|
6123
6123
|
public get vpcEndpointLogsIdOutput() {
|
|
6124
|
-
return this.getString('vpc_endpoint_logs_id')
|
|
6124
|
+
return this.getString('vpc_endpoint_logs_id');
|
|
6125
6125
|
}
|
|
6126
6126
|
public get vpcEndpointLogsNetworkInterfaceIdsOutput() {
|
|
6127
|
-
return this.getString('vpc_endpoint_logs_network_interface_ids')
|
|
6127
|
+
return this.getString('vpc_endpoint_logs_network_interface_ids');
|
|
6128
6128
|
}
|
|
6129
6129
|
public get vpcEndpointMonitoringDnsEntryOutput() {
|
|
6130
|
-
return this.getString('vpc_endpoint_monitoring_dns_entry')
|
|
6130
|
+
return this.getString('vpc_endpoint_monitoring_dns_entry');
|
|
6131
6131
|
}
|
|
6132
6132
|
public get vpcEndpointMonitoringIdOutput() {
|
|
6133
|
-
return this.getString('vpc_endpoint_monitoring_id')
|
|
6133
|
+
return this.getString('vpc_endpoint_monitoring_id');
|
|
6134
6134
|
}
|
|
6135
6135
|
public get vpcEndpointMonitoringNetworkInterfaceIdsOutput() {
|
|
6136
|
-
return this.getString('vpc_endpoint_monitoring_network_interface_ids')
|
|
6136
|
+
return this.getString('vpc_endpoint_monitoring_network_interface_ids');
|
|
6137
6137
|
}
|
|
6138
6138
|
public get vpcEndpointQldbSessionDnsEntryOutput() {
|
|
6139
|
-
return this.getString('vpc_endpoint_qldb_session_dns_entry')
|
|
6139
|
+
return this.getString('vpc_endpoint_qldb_session_dns_entry');
|
|
6140
6140
|
}
|
|
6141
6141
|
public get vpcEndpointQldbSessionIdOutput() {
|
|
6142
|
-
return this.getString('vpc_endpoint_qldb_session_id')
|
|
6142
|
+
return this.getString('vpc_endpoint_qldb_session_id');
|
|
6143
6143
|
}
|
|
6144
6144
|
public get vpcEndpointQldbSessionNetworkInterfaceIdsOutput() {
|
|
6145
|
-
return this.getString('vpc_endpoint_qldb_session_network_interface_ids')
|
|
6145
|
+
return this.getString('vpc_endpoint_qldb_session_network_interface_ids');
|
|
6146
6146
|
}
|
|
6147
6147
|
public get vpcEndpointRdsDnsEntryOutput() {
|
|
6148
|
-
return this.getString('vpc_endpoint_rds_dns_entry')
|
|
6148
|
+
return this.getString('vpc_endpoint_rds_dns_entry');
|
|
6149
6149
|
}
|
|
6150
6150
|
public get vpcEndpointRdsIdOutput() {
|
|
6151
|
-
return this.getString('vpc_endpoint_rds_id')
|
|
6151
|
+
return this.getString('vpc_endpoint_rds_id');
|
|
6152
6152
|
}
|
|
6153
6153
|
public get vpcEndpointRdsNetworkInterfaceIdsOutput() {
|
|
6154
|
-
return this.getString('vpc_endpoint_rds_network_interface_ids')
|
|
6154
|
+
return this.getString('vpc_endpoint_rds_network_interface_ids');
|
|
6155
6155
|
}
|
|
6156
6156
|
public get vpcEndpointRekognitionDnsEntryOutput() {
|
|
6157
|
-
return this.getString('vpc_endpoint_rekognition_dns_entry')
|
|
6157
|
+
return this.getString('vpc_endpoint_rekognition_dns_entry');
|
|
6158
6158
|
}
|
|
6159
6159
|
public get vpcEndpointRekognitionIdOutput() {
|
|
6160
|
-
return this.getString('vpc_endpoint_rekognition_id')
|
|
6160
|
+
return this.getString('vpc_endpoint_rekognition_id');
|
|
6161
6161
|
}
|
|
6162
6162
|
public get vpcEndpointRekognitionNetworkInterfaceIdsOutput() {
|
|
6163
|
-
return this.getString('vpc_endpoint_rekognition_network_interface_ids')
|
|
6163
|
+
return this.getString('vpc_endpoint_rekognition_network_interface_ids');
|
|
6164
6164
|
}
|
|
6165
6165
|
public get vpcEndpointS3IdOutput() {
|
|
6166
|
-
return this.getString('vpc_endpoint_s3_id')
|
|
6166
|
+
return this.getString('vpc_endpoint_s3_id');
|
|
6167
6167
|
}
|
|
6168
6168
|
public get vpcEndpointS3PlIdOutput() {
|
|
6169
|
-
return this.getString('vpc_endpoint_s3_pl_id')
|
|
6169
|
+
return this.getString('vpc_endpoint_s3_pl_id');
|
|
6170
6170
|
}
|
|
6171
6171
|
public get vpcEndpointSagemakerApiDnsEntryOutput() {
|
|
6172
|
-
return this.getString('vpc_endpoint_sagemaker_api_dns_entry')
|
|
6172
|
+
return this.getString('vpc_endpoint_sagemaker_api_dns_entry');
|
|
6173
6173
|
}
|
|
6174
6174
|
public get vpcEndpointSagemakerApiIdOutput() {
|
|
6175
|
-
return this.getString('vpc_endpoint_sagemaker_api_id')
|
|
6175
|
+
return this.getString('vpc_endpoint_sagemaker_api_id');
|
|
6176
6176
|
}
|
|
6177
6177
|
public get vpcEndpointSagemakerApiNetworkInterfaceIdsOutput() {
|
|
6178
|
-
return this.getString('vpc_endpoint_sagemaker_api_network_interface_ids')
|
|
6178
|
+
return this.getString('vpc_endpoint_sagemaker_api_network_interface_ids');
|
|
6179
6179
|
}
|
|
6180
6180
|
public get vpcEndpointSagemakerRuntimeDnsEntryOutput() {
|
|
6181
|
-
return this.getString('vpc_endpoint_sagemaker_runtime_dns_entry')
|
|
6181
|
+
return this.getString('vpc_endpoint_sagemaker_runtime_dns_entry');
|
|
6182
6182
|
}
|
|
6183
6183
|
public get vpcEndpointSagemakerRuntimeIdOutput() {
|
|
6184
|
-
return this.getString('vpc_endpoint_sagemaker_runtime_id')
|
|
6184
|
+
return this.getString('vpc_endpoint_sagemaker_runtime_id');
|
|
6185
6185
|
}
|
|
6186
6186
|
public get vpcEndpointSagemakerRuntimeNetworkInterfaceIdsOutput() {
|
|
6187
|
-
return this.getString('vpc_endpoint_sagemaker_runtime_network_interface_ids')
|
|
6187
|
+
return this.getString('vpc_endpoint_sagemaker_runtime_network_interface_ids');
|
|
6188
6188
|
}
|
|
6189
6189
|
public get vpcEndpointSecretsmanagerDnsEntryOutput() {
|
|
6190
|
-
return this.getString('vpc_endpoint_secretsmanager_dns_entry')
|
|
6190
|
+
return this.getString('vpc_endpoint_secretsmanager_dns_entry');
|
|
6191
6191
|
}
|
|
6192
6192
|
public get vpcEndpointSecretsmanagerIdOutput() {
|
|
6193
|
-
return this.getString('vpc_endpoint_secretsmanager_id')
|
|
6193
|
+
return this.getString('vpc_endpoint_secretsmanager_id');
|
|
6194
6194
|
}
|
|
6195
6195
|
public get vpcEndpointSecretsmanagerNetworkInterfaceIdsOutput() {
|
|
6196
|
-
return this.getString('vpc_endpoint_secretsmanager_network_interface_ids')
|
|
6196
|
+
return this.getString('vpc_endpoint_secretsmanager_network_interface_ids');
|
|
6197
6197
|
}
|
|
6198
6198
|
public get vpcEndpointServicecatalogDnsEntryOutput() {
|
|
6199
|
-
return this.getString('vpc_endpoint_servicecatalog_dns_entry')
|
|
6199
|
+
return this.getString('vpc_endpoint_servicecatalog_dns_entry');
|
|
6200
6200
|
}
|
|
6201
6201
|
public get vpcEndpointServicecatalogIdOutput() {
|
|
6202
|
-
return this.getString('vpc_endpoint_servicecatalog_id')
|
|
6202
|
+
return this.getString('vpc_endpoint_servicecatalog_id');
|
|
6203
6203
|
}
|
|
6204
6204
|
public get vpcEndpointServicecatalogNetworkInterfaceIdsOutput() {
|
|
6205
|
-
return this.getString('vpc_endpoint_servicecatalog_network_interface_ids')
|
|
6205
|
+
return this.getString('vpc_endpoint_servicecatalog_network_interface_ids');
|
|
6206
6206
|
}
|
|
6207
6207
|
public get vpcEndpointSesDnsEntryOutput() {
|
|
6208
|
-
return this.getString('vpc_endpoint_ses_dns_entry')
|
|
6208
|
+
return this.getString('vpc_endpoint_ses_dns_entry');
|
|
6209
6209
|
}
|
|
6210
6210
|
public get vpcEndpointSesIdOutput() {
|
|
6211
|
-
return this.getString('vpc_endpoint_ses_id')
|
|
6211
|
+
return this.getString('vpc_endpoint_ses_id');
|
|
6212
6212
|
}
|
|
6213
6213
|
public get vpcEndpointSesNetworkInterfaceIdsOutput() {
|
|
6214
|
-
return this.getString('vpc_endpoint_ses_network_interface_ids')
|
|
6214
|
+
return this.getString('vpc_endpoint_ses_network_interface_ids');
|
|
6215
6215
|
}
|
|
6216
6216
|
public get vpcEndpointSmsDnsEntryOutput() {
|
|
6217
|
-
return this.getString('vpc_endpoint_sms_dns_entry')
|
|
6217
|
+
return this.getString('vpc_endpoint_sms_dns_entry');
|
|
6218
6218
|
}
|
|
6219
6219
|
public get vpcEndpointSmsIdOutput() {
|
|
6220
|
-
return this.getString('vpc_endpoint_sms_id')
|
|
6220
|
+
return this.getString('vpc_endpoint_sms_id');
|
|
6221
6221
|
}
|
|
6222
6222
|
public get vpcEndpointSmsNetworkInterfaceIdsOutput() {
|
|
6223
|
-
return this.getString('vpc_endpoint_sms_network_interface_ids')
|
|
6223
|
+
return this.getString('vpc_endpoint_sms_network_interface_ids');
|
|
6224
6224
|
}
|
|
6225
6225
|
public get vpcEndpointSnsDnsEntryOutput() {
|
|
6226
|
-
return this.getString('vpc_endpoint_sns_dns_entry')
|
|
6226
|
+
return this.getString('vpc_endpoint_sns_dns_entry');
|
|
6227
6227
|
}
|
|
6228
6228
|
public get vpcEndpointSnsIdOutput() {
|
|
6229
|
-
return this.getString('vpc_endpoint_sns_id')
|
|
6229
|
+
return this.getString('vpc_endpoint_sns_id');
|
|
6230
6230
|
}
|
|
6231
6231
|
public get vpcEndpointSnsNetworkInterfaceIdsOutput() {
|
|
6232
|
-
return this.getString('vpc_endpoint_sns_network_interface_ids')
|
|
6232
|
+
return this.getString('vpc_endpoint_sns_network_interface_ids');
|
|
6233
6233
|
}
|
|
6234
6234
|
public get vpcEndpointSqsDnsEntryOutput() {
|
|
6235
|
-
return this.getString('vpc_endpoint_sqs_dns_entry')
|
|
6235
|
+
return this.getString('vpc_endpoint_sqs_dns_entry');
|
|
6236
6236
|
}
|
|
6237
6237
|
public get vpcEndpointSqsIdOutput() {
|
|
6238
|
-
return this.getString('vpc_endpoint_sqs_id')
|
|
6238
|
+
return this.getString('vpc_endpoint_sqs_id');
|
|
6239
6239
|
}
|
|
6240
6240
|
public get vpcEndpointSqsNetworkInterfaceIdsOutput() {
|
|
6241
|
-
return this.getString('vpc_endpoint_sqs_network_interface_ids')
|
|
6241
|
+
return this.getString('vpc_endpoint_sqs_network_interface_ids');
|
|
6242
6242
|
}
|
|
6243
6243
|
public get vpcEndpointSsmDnsEntryOutput() {
|
|
6244
|
-
return this.getString('vpc_endpoint_ssm_dns_entry')
|
|
6244
|
+
return this.getString('vpc_endpoint_ssm_dns_entry');
|
|
6245
6245
|
}
|
|
6246
6246
|
public get vpcEndpointSsmIdOutput() {
|
|
6247
|
-
return this.getString('vpc_endpoint_ssm_id')
|
|
6247
|
+
return this.getString('vpc_endpoint_ssm_id');
|
|
6248
6248
|
}
|
|
6249
6249
|
public get vpcEndpointSsmNetworkInterfaceIdsOutput() {
|
|
6250
|
-
return this.getString('vpc_endpoint_ssm_network_interface_ids')
|
|
6250
|
+
return this.getString('vpc_endpoint_ssm_network_interface_ids');
|
|
6251
6251
|
}
|
|
6252
6252
|
public get vpcEndpointSsmmessagesDnsEntryOutput() {
|
|
6253
|
-
return this.getString('vpc_endpoint_ssmmessages_dns_entry')
|
|
6253
|
+
return this.getString('vpc_endpoint_ssmmessages_dns_entry');
|
|
6254
6254
|
}
|
|
6255
6255
|
public get vpcEndpointSsmmessagesIdOutput() {
|
|
6256
|
-
return this.getString('vpc_endpoint_ssmmessages_id')
|
|
6256
|
+
return this.getString('vpc_endpoint_ssmmessages_id');
|
|
6257
6257
|
}
|
|
6258
6258
|
public get vpcEndpointSsmmessagesNetworkInterfaceIdsOutput() {
|
|
6259
|
-
return this.getString('vpc_endpoint_ssmmessages_network_interface_ids')
|
|
6259
|
+
return this.getString('vpc_endpoint_ssmmessages_network_interface_ids');
|
|
6260
6260
|
}
|
|
6261
6261
|
public get vpcEndpointStatesDnsEntryOutput() {
|
|
6262
|
-
return this.getString('vpc_endpoint_states_dns_entry')
|
|
6262
|
+
return this.getString('vpc_endpoint_states_dns_entry');
|
|
6263
6263
|
}
|
|
6264
6264
|
public get vpcEndpointStatesIdOutput() {
|
|
6265
|
-
return this.getString('vpc_endpoint_states_id')
|
|
6265
|
+
return this.getString('vpc_endpoint_states_id');
|
|
6266
6266
|
}
|
|
6267
6267
|
public get vpcEndpointStatesNetworkInterfaceIdsOutput() {
|
|
6268
|
-
return this.getString('vpc_endpoint_states_network_interface_ids')
|
|
6268
|
+
return this.getString('vpc_endpoint_states_network_interface_ids');
|
|
6269
6269
|
}
|
|
6270
6270
|
public get vpcEndpointStoragegatewayDnsEntryOutput() {
|
|
6271
|
-
return this.getString('vpc_endpoint_storagegateway_dns_entry')
|
|
6271
|
+
return this.getString('vpc_endpoint_storagegateway_dns_entry');
|
|
6272
6272
|
}
|
|
6273
6273
|
public get vpcEndpointStoragegatewayIdOutput() {
|
|
6274
|
-
return this.getString('vpc_endpoint_storagegateway_id')
|
|
6274
|
+
return this.getString('vpc_endpoint_storagegateway_id');
|
|
6275
6275
|
}
|
|
6276
6276
|
public get vpcEndpointStoragegatewayNetworkInterfaceIdsOutput() {
|
|
6277
|
-
return this.getString('vpc_endpoint_storagegateway_network_interface_ids')
|
|
6277
|
+
return this.getString('vpc_endpoint_storagegateway_network_interface_ids');
|
|
6278
6278
|
}
|
|
6279
6279
|
public get vpcEndpointStsDnsEntryOutput() {
|
|
6280
|
-
return this.getString('vpc_endpoint_sts_dns_entry')
|
|
6280
|
+
return this.getString('vpc_endpoint_sts_dns_entry');
|
|
6281
6281
|
}
|
|
6282
6282
|
public get vpcEndpointStsIdOutput() {
|
|
6283
|
-
return this.getString('vpc_endpoint_sts_id')
|
|
6283
|
+
return this.getString('vpc_endpoint_sts_id');
|
|
6284
6284
|
}
|
|
6285
6285
|
public get vpcEndpointStsNetworkInterfaceIdsOutput() {
|
|
6286
|
-
return this.getString('vpc_endpoint_sts_network_interface_ids')
|
|
6286
|
+
return this.getString('vpc_endpoint_sts_network_interface_ids');
|
|
6287
6287
|
}
|
|
6288
6288
|
public get vpcEndpointTextractDnsEntryOutput() {
|
|
6289
|
-
return this.getString('vpc_endpoint_textract_dns_entry')
|
|
6289
|
+
return this.getString('vpc_endpoint_textract_dns_entry');
|
|
6290
6290
|
}
|
|
6291
6291
|
public get vpcEndpointTextractIdOutput() {
|
|
6292
|
-
return this.getString('vpc_endpoint_textract_id')
|
|
6292
|
+
return this.getString('vpc_endpoint_textract_id');
|
|
6293
6293
|
}
|
|
6294
6294
|
public get vpcEndpointTextractNetworkInterfaceIdsOutput() {
|
|
6295
|
-
return this.getString('vpc_endpoint_textract_network_interface_ids')
|
|
6295
|
+
return this.getString('vpc_endpoint_textract_network_interface_ids');
|
|
6296
6296
|
}
|
|
6297
6297
|
public get vpcEndpointTransferDnsEntryOutput() {
|
|
6298
|
-
return this.getString('vpc_endpoint_transfer_dns_entry')
|
|
6298
|
+
return this.getString('vpc_endpoint_transfer_dns_entry');
|
|
6299
6299
|
}
|
|
6300
6300
|
public get vpcEndpointTransferIdOutput() {
|
|
6301
|
-
return this.getString('vpc_endpoint_transfer_id')
|
|
6301
|
+
return this.getString('vpc_endpoint_transfer_id');
|
|
6302
6302
|
}
|
|
6303
6303
|
public get vpcEndpointTransferNetworkInterfaceIdsOutput() {
|
|
6304
|
-
return this.getString('vpc_endpoint_transfer_network_interface_ids')
|
|
6304
|
+
return this.getString('vpc_endpoint_transfer_network_interface_ids');
|
|
6305
6305
|
}
|
|
6306
6306
|
public get vpcEndpointTransferserverDnsEntryOutput() {
|
|
6307
|
-
return this.getString('vpc_endpoint_transferserver_dns_entry')
|
|
6307
|
+
return this.getString('vpc_endpoint_transferserver_dns_entry');
|
|
6308
6308
|
}
|
|
6309
6309
|
public get vpcEndpointTransferserverIdOutput() {
|
|
6310
|
-
return this.getString('vpc_endpoint_transferserver_id')
|
|
6310
|
+
return this.getString('vpc_endpoint_transferserver_id');
|
|
6311
6311
|
}
|
|
6312
6312
|
public get vpcEndpointTransferserverNetworkInterfaceIdsOutput() {
|
|
6313
|
-
return this.getString('vpc_endpoint_transferserver_network_interface_ids')
|
|
6313
|
+
return this.getString('vpc_endpoint_transferserver_network_interface_ids');
|
|
6314
6314
|
}
|
|
6315
6315
|
public get vpcEndpointWorkspacesDnsEntryOutput() {
|
|
6316
|
-
return this.getString('vpc_endpoint_workspaces_dns_entry')
|
|
6316
|
+
return this.getString('vpc_endpoint_workspaces_dns_entry');
|
|
6317
6317
|
}
|
|
6318
6318
|
public get vpcEndpointWorkspacesIdOutput() {
|
|
6319
|
-
return this.getString('vpc_endpoint_workspaces_id')
|
|
6319
|
+
return this.getString('vpc_endpoint_workspaces_id');
|
|
6320
6320
|
}
|
|
6321
6321
|
public get vpcEndpointWorkspacesNetworkInterfaceIdsOutput() {
|
|
6322
|
-
return this.getString('vpc_endpoint_workspaces_network_interface_ids')
|
|
6322
|
+
return this.getString('vpc_endpoint_workspaces_network_interface_ids');
|
|
6323
6323
|
}
|
|
6324
6324
|
public get vpcFlowLogCloudwatchIamRoleArnOutput() {
|
|
6325
|
-
return this.getString('vpc_flow_log_cloudwatch_iam_role_arn')
|
|
6325
|
+
return this.getString('vpc_flow_log_cloudwatch_iam_role_arn');
|
|
6326
6326
|
}
|
|
6327
6327
|
public get vpcFlowLogDestinationArnOutput() {
|
|
6328
|
-
return this.getString('vpc_flow_log_destination_arn')
|
|
6328
|
+
return this.getString('vpc_flow_log_destination_arn');
|
|
6329
6329
|
}
|
|
6330
6330
|
public get vpcFlowLogDestinationTypeOutput() {
|
|
6331
|
-
return this.getString('vpc_flow_log_destination_type')
|
|
6331
|
+
return this.getString('vpc_flow_log_destination_type');
|
|
6332
6332
|
}
|
|
6333
6333
|
public get vpcFlowLogIdOutput() {
|
|
6334
|
-
return this.getString('vpc_flow_log_id')
|
|
6334
|
+
return this.getString('vpc_flow_log_id');
|
|
6335
6335
|
}
|
|
6336
6336
|
public get vpcIdOutput() {
|
|
6337
|
-
return this.getString('vpc_id')
|
|
6337
|
+
return this.getString('vpc_id');
|
|
6338
6338
|
}
|
|
6339
6339
|
public get vpcInstanceTenancyOutput() {
|
|
6340
|
-
return this.getString('vpc_instance_tenancy')
|
|
6340
|
+
return this.getString('vpc_instance_tenancy');
|
|
6341
6341
|
}
|
|
6342
6342
|
public get vpcIpv6AssociationIdOutput() {
|
|
6343
|
-
return this.getString('vpc_ipv6_association_id')
|
|
6343
|
+
return this.getString('vpc_ipv6_association_id');
|
|
6344
6344
|
}
|
|
6345
6345
|
public get vpcIpv6CidrBlockOutput() {
|
|
6346
|
-
return this.getString('vpc_ipv6_cidr_block')
|
|
6346
|
+
return this.getString('vpc_ipv6_cidr_block');
|
|
6347
6347
|
}
|
|
6348
6348
|
public get vpcMainRouteTableIdOutput() {
|
|
6349
|
-
return this.getString('vpc_main_route_table_id')
|
|
6349
|
+
return this.getString('vpc_main_route_table_id');
|
|
6350
6350
|
}
|
|
6351
6351
|
public get vpcOwnerIdOutput() {
|
|
6352
|
-
return this.getString('vpc_owner_id')
|
|
6352
|
+
return this.getString('vpc_owner_id');
|
|
6353
6353
|
}
|
|
6354
6354
|
public get vpcSecondaryCidrBlocksOutput() {
|
|
6355
|
-
return this.getString('vpc_secondary_cidr_blocks')
|
|
6355
|
+
return this.getString('vpc_secondary_cidr_blocks');
|
|
6356
6356
|
}
|
|
6357
6357
|
protected synthesizeAttributes() {
|
|
6358
6358
|
return this.inputs;
|
|
@@ -6722,7 +6722,7 @@ export interface RdsAuroraConfig extends TerraformModuleUserConfig {
|
|
|
6722
6722
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/modules/terraform-aws-modules/rds-aurora/aws/4.1.0 terraform-aws-modules/rds-aurora/aws}
|
|
6723
6723
|
*/
|
|
6724
6724
|
export class RdsAurora extends TerraformModule {
|
|
6725
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
6725
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
6726
6726
|
public constructor(scope: Construct, id: string, config: RdsAuroraConfig = {}) {
|
|
6727
6727
|
super(scope, id, {
|
|
6728
6728
|
...config,
|
|
@@ -7249,55 +7249,55 @@ export class RdsAurora extends TerraformModule {
|
|
|
7249
7249
|
this.inputs['vpc_security_group_ids'] = value;
|
|
7250
7250
|
}
|
|
7251
7251
|
public get thisEnhancedMonitoringIamRoleArnOutput() {
|
|
7252
|
-
return this.getString('this_enhanced_monitoring_iam_role_arn')
|
|
7252
|
+
return this.getString('this_enhanced_monitoring_iam_role_arn');
|
|
7253
7253
|
}
|
|
7254
7254
|
public get thisEnhancedMonitoringIamRoleNameOutput() {
|
|
7255
|
-
return this.getString('this_enhanced_monitoring_iam_role_name')
|
|
7255
|
+
return this.getString('this_enhanced_monitoring_iam_role_name');
|
|
7256
7256
|
}
|
|
7257
7257
|
public get thisEnhancedMonitoringIamRoleUniqueIdOutput() {
|
|
7258
|
-
return this.getString('this_enhanced_monitoring_iam_role_unique_id')
|
|
7258
|
+
return this.getString('this_enhanced_monitoring_iam_role_unique_id');
|
|
7259
7259
|
}
|
|
7260
7260
|
public get thisRdsClusterArnOutput() {
|
|
7261
|
-
return this.getString('this_rds_cluster_arn')
|
|
7261
|
+
return this.getString('this_rds_cluster_arn');
|
|
7262
7262
|
}
|
|
7263
7263
|
public get thisRdsClusterDatabaseNameOutput() {
|
|
7264
|
-
return this.getString('this_rds_cluster_database_name')
|
|
7264
|
+
return this.getString('this_rds_cluster_database_name');
|
|
7265
7265
|
}
|
|
7266
7266
|
public get thisRdsClusterEndpointOutput() {
|
|
7267
|
-
return this.getString('this_rds_cluster_endpoint')
|
|
7267
|
+
return this.getString('this_rds_cluster_endpoint');
|
|
7268
7268
|
}
|
|
7269
7269
|
public get thisRdsClusterEngineVersionOutput() {
|
|
7270
|
-
return this.getString('this_rds_cluster_engine_version')
|
|
7270
|
+
return this.getString('this_rds_cluster_engine_version');
|
|
7271
7271
|
}
|
|
7272
7272
|
public get thisRdsClusterHostedZoneIdOutput() {
|
|
7273
|
-
return this.getString('this_rds_cluster_hosted_zone_id')
|
|
7273
|
+
return this.getString('this_rds_cluster_hosted_zone_id');
|
|
7274
7274
|
}
|
|
7275
7275
|
public get thisRdsClusterIdOutput() {
|
|
7276
|
-
return this.getString('this_rds_cluster_id')
|
|
7276
|
+
return this.getString('this_rds_cluster_id');
|
|
7277
7277
|
}
|
|
7278
7278
|
public get thisRdsClusterInstanceEndpointsOutput() {
|
|
7279
|
-
return this.getString('this_rds_cluster_instance_endpoints')
|
|
7279
|
+
return this.getString('this_rds_cluster_instance_endpoints');
|
|
7280
7280
|
}
|
|
7281
7281
|
public get thisRdsClusterInstanceIdsOutput() {
|
|
7282
|
-
return this.getString('this_rds_cluster_instance_ids')
|
|
7282
|
+
return this.getString('this_rds_cluster_instance_ids');
|
|
7283
7283
|
}
|
|
7284
7284
|
public get thisRdsClusterMasterPasswordOutput() {
|
|
7285
|
-
return this.getString('this_rds_cluster_master_password')
|
|
7285
|
+
return this.getString('this_rds_cluster_master_password');
|
|
7286
7286
|
}
|
|
7287
7287
|
public get thisRdsClusterMasterUsernameOutput() {
|
|
7288
|
-
return this.getString('this_rds_cluster_master_username')
|
|
7288
|
+
return this.getString('this_rds_cluster_master_username');
|
|
7289
7289
|
}
|
|
7290
7290
|
public get thisRdsClusterPortOutput() {
|
|
7291
|
-
return this.getString('this_rds_cluster_port')
|
|
7291
|
+
return this.getString('this_rds_cluster_port');
|
|
7292
7292
|
}
|
|
7293
7293
|
public get thisRdsClusterReaderEndpointOutput() {
|
|
7294
|
-
return this.getString('this_rds_cluster_reader_endpoint')
|
|
7294
|
+
return this.getString('this_rds_cluster_reader_endpoint');
|
|
7295
7295
|
}
|
|
7296
7296
|
public get thisRdsClusterResourceIdOutput() {
|
|
7297
|
-
return this.getString('this_rds_cluster_resource_id')
|
|
7297
|
+
return this.getString('this_rds_cluster_resource_id');
|
|
7298
7298
|
}
|
|
7299
7299
|
public get thisSecurityGroupIdOutput() {
|
|
7300
|
-
return this.getString('this_security_group_id')
|
|
7300
|
+
return this.getString('this_security_group_id');
|
|
7301
7301
|
}
|
|
7302
7302
|
protected synthesizeAttributes() {
|
|
7303
7303
|
return this.inputs;
|
|
@@ -7367,7 +7367,7 @@ export interface VpcEndpointsConfig extends TerraformModuleUserConfig {
|
|
|
7367
7367
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/modules/terraform-aws-modules/vpc/aws/3.19.0/submodules/vpc-endpoints terraform-aws-modules/vpc/aws//modules/vpc-endpoints}
|
|
7368
7368
|
*/
|
|
7369
7369
|
export class VpcEndpoints extends TerraformModule {
|
|
7370
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
7370
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
7371
7371
|
public constructor(scope: Construct, id: string, config: VpcEndpointsConfig = {}) {
|
|
7372
7372
|
super(scope, id, {
|
|
7373
7373
|
...config,
|
|
@@ -7425,7 +7425,7 @@ export class VpcEndpoints extends TerraformModule {
|
|
|
7425
7425
|
this.inputs['vpc_id'] = value;
|
|
7426
7426
|
}
|
|
7427
7427
|
public get endpointsOutput() {
|
|
7428
|
-
return this.getString('endpoints')
|
|
7428
|
+
return this.getString('endpoints');
|
|
7429
7429
|
}
|
|
7430
7430
|
protected synthesizeAttributes() {
|
|
7431
7431
|
return this.inputs;
|
|
@@ -7693,7 +7693,7 @@ export interface EksConfig extends TerraformModuleUserConfig {
|
|
|
7693
7693
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/modules/terraform-aws-modules/eks/aws/7.0.1 terraform-aws-modules/eks/aws}
|
|
7694
7694
|
*/
|
|
7695
7695
|
export class Eks extends TerraformModule {
|
|
7696
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
7696
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
7697
7697
|
public constructor(scope: Construct, id: string, config: EksConfig) {
|
|
7698
7698
|
super(scope, id, {
|
|
7699
7699
|
...config,
|
|
@@ -8045,85 +8045,85 @@ export class Eks extends TerraformModule {
|
|
|
8045
8045
|
this.inputs['write_kubeconfig'] = value;
|
|
8046
8046
|
}
|
|
8047
8047
|
public get cloudwatchLogGroupNameOutput() {
|
|
8048
|
-
return this.getString('cloudwatch_log_group_name')
|
|
8048
|
+
return this.getString('cloudwatch_log_group_name');
|
|
8049
8049
|
}
|
|
8050
8050
|
public get clusterArnOutput() {
|
|
8051
|
-
return this.getString('cluster_arn')
|
|
8051
|
+
return this.getString('cluster_arn');
|
|
8052
8052
|
}
|
|
8053
8053
|
public get clusterCertificateAuthorityDataOutput() {
|
|
8054
|
-
return this.getString('cluster_certificate_authority_data')
|
|
8054
|
+
return this.getString('cluster_certificate_authority_data');
|
|
8055
8055
|
}
|
|
8056
8056
|
public get clusterEndpointOutput() {
|
|
8057
|
-
return this.getString('cluster_endpoint')
|
|
8057
|
+
return this.getString('cluster_endpoint');
|
|
8058
8058
|
}
|
|
8059
8059
|
public get clusterIamRoleArnOutput() {
|
|
8060
|
-
return this.getString('cluster_iam_role_arn')
|
|
8060
|
+
return this.getString('cluster_iam_role_arn');
|
|
8061
8061
|
}
|
|
8062
8062
|
public get clusterIamRoleNameOutput() {
|
|
8063
|
-
return this.getString('cluster_iam_role_name')
|
|
8063
|
+
return this.getString('cluster_iam_role_name');
|
|
8064
8064
|
}
|
|
8065
8065
|
public get clusterIdOutput() {
|
|
8066
|
-
return this.getString('cluster_id')
|
|
8066
|
+
return this.getString('cluster_id');
|
|
8067
8067
|
}
|
|
8068
8068
|
public get clusterOidcIssuerUrlOutput() {
|
|
8069
|
-
return this.getString('cluster_oidc_issuer_url')
|
|
8069
|
+
return this.getString('cluster_oidc_issuer_url');
|
|
8070
8070
|
}
|
|
8071
8071
|
public get clusterSecurityGroupIdOutput() {
|
|
8072
|
-
return this.getString('cluster_security_group_id')
|
|
8072
|
+
return this.getString('cluster_security_group_id');
|
|
8073
8073
|
}
|
|
8074
8074
|
public get clusterVersionOutput() {
|
|
8075
|
-
return this.getString('cluster_version')
|
|
8075
|
+
return this.getString('cluster_version');
|
|
8076
8076
|
}
|
|
8077
8077
|
public get configMapAwsAuthOutput() {
|
|
8078
|
-
return this.getString('config_map_aws_auth')
|
|
8078
|
+
return this.getString('config_map_aws_auth');
|
|
8079
8079
|
}
|
|
8080
8080
|
public get kubeconfigOutput() {
|
|
8081
|
-
return this.getString('kubeconfig')
|
|
8081
|
+
return this.getString('kubeconfig');
|
|
8082
8082
|
}
|
|
8083
8083
|
public get kubeconfigFilenameOutput() {
|
|
8084
|
-
return this.getString('kubeconfig_filename')
|
|
8084
|
+
return this.getString('kubeconfig_filename');
|
|
8085
8085
|
}
|
|
8086
8086
|
public get workerAutoscalingPolicyArnOutput() {
|
|
8087
|
-
return this.getString('worker_autoscaling_policy_arn')
|
|
8087
|
+
return this.getString('worker_autoscaling_policy_arn');
|
|
8088
8088
|
}
|
|
8089
8089
|
public get workerAutoscalingPolicyNameOutput() {
|
|
8090
|
-
return this.getString('worker_autoscaling_policy_name')
|
|
8090
|
+
return this.getString('worker_autoscaling_policy_name');
|
|
8091
8091
|
}
|
|
8092
8092
|
public get workerIamInstanceProfileArnsOutput() {
|
|
8093
|
-
return this.getString('worker_iam_instance_profile_arns')
|
|
8093
|
+
return this.getString('worker_iam_instance_profile_arns');
|
|
8094
8094
|
}
|
|
8095
8095
|
public get workerIamInstanceProfileNamesOutput() {
|
|
8096
|
-
return this.getString('worker_iam_instance_profile_names')
|
|
8096
|
+
return this.getString('worker_iam_instance_profile_names');
|
|
8097
8097
|
}
|
|
8098
8098
|
public get workerIamRoleArnOutput() {
|
|
8099
|
-
return this.getString('worker_iam_role_arn')
|
|
8099
|
+
return this.getString('worker_iam_role_arn');
|
|
8100
8100
|
}
|
|
8101
8101
|
public get workerIamRoleNameOutput() {
|
|
8102
|
-
return this.getString('worker_iam_role_name')
|
|
8102
|
+
return this.getString('worker_iam_role_name');
|
|
8103
8103
|
}
|
|
8104
8104
|
public get workerSecurityGroupIdOutput() {
|
|
8105
|
-
return this.getString('worker_security_group_id')
|
|
8105
|
+
return this.getString('worker_security_group_id');
|
|
8106
8106
|
}
|
|
8107
8107
|
public get workersAsgArnsOutput() {
|
|
8108
|
-
return this.getString('workers_asg_arns')
|
|
8108
|
+
return this.getString('workers_asg_arns');
|
|
8109
8109
|
}
|
|
8110
8110
|
public get workersAsgNamesOutput() {
|
|
8111
|
-
return this.getString('workers_asg_names')
|
|
8111
|
+
return this.getString('workers_asg_names');
|
|
8112
8112
|
}
|
|
8113
8113
|
public get workersDefaultAmiIdOutput() {
|
|
8114
|
-
return this.getString('workers_default_ami_id')
|
|
8114
|
+
return this.getString('workers_default_ami_id');
|
|
8115
8115
|
}
|
|
8116
8116
|
public get workersLaunchTemplateArnsOutput() {
|
|
8117
|
-
return this.getString('workers_launch_template_arns')
|
|
8117
|
+
return this.getString('workers_launch_template_arns');
|
|
8118
8118
|
}
|
|
8119
8119
|
public get workersLaunchTemplateIdsOutput() {
|
|
8120
|
-
return this.getString('workers_launch_template_ids')
|
|
8120
|
+
return this.getString('workers_launch_template_ids');
|
|
8121
8121
|
}
|
|
8122
8122
|
public get workersLaunchTemplateLatestVersionsOutput() {
|
|
8123
|
-
return this.getString('workers_launch_template_latest_versions')
|
|
8123
|
+
return this.getString('workers_launch_template_latest_versions');
|
|
8124
8124
|
}
|
|
8125
8125
|
public get workersUserDataOutput() {
|
|
8126
|
-
return this.getString('workers_user_data')
|
|
8126
|
+
return this.getString('workers_user_data');
|
|
8127
8127
|
}
|
|
8128
8128
|
protected synthesizeAttributes() {
|
|
8129
8129
|
return this.inputs;
|
|
@@ -8171,7 +8171,7 @@ export interface ModuleConfig extends TerraformModuleUserConfig {
|
|
|
8171
8171
|
* Source at ./module
|
|
8172
8172
|
*/
|
|
8173
8173
|
export class Module extends TerraformModule {
|
|
8174
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
8174
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
8175
8175
|
public constructor(scope: Construct, id: string, config: ModuleConfig = {}) {
|
|
8176
8176
|
super(scope, id, {
|
|
8177
8177
|
...config,
|
|
@@ -8234,7 +8234,7 @@ export interface ModuleConfig extends TerraformModuleUserConfig {
|
|
|
8234
8234
|
* Source at ./module
|
|
8235
8235
|
*/
|
|
8236
8236
|
export class Module extends TerraformModule {
|
|
8237
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
8237
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
8238
8238
|
public constructor(scope: Construct, id: string, config: ModuleConfig = {}) {
|
|
8239
8239
|
super(scope, id, {
|
|
8240
8240
|
...config,
|
|
@@ -8288,7 +8288,7 @@ export interface ModuleConfig extends TerraformModuleUserConfig {
|
|
|
8288
8288
|
* Source at ./module
|
|
8289
8289
|
*/
|
|
8290
8290
|
export class Module extends TerraformModule {
|
|
8291
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
8291
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
8292
8292
|
public constructor(scope: Construct, id: string, config: ModuleConfig = {}) {
|
|
8293
8293
|
super(scope, id, {
|
|
8294
8294
|
...config,
|
|
@@ -8337,7 +8337,7 @@ export interface ModuleConfig extends TerraformModuleUserConfig {
|
|
|
8337
8337
|
* Source at ./module
|
|
8338
8338
|
*/
|
|
8339
8339
|
export class Module extends TerraformModule {
|
|
8340
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
8340
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
8341
8341
|
public constructor(scope: Construct, id: string, config: ModuleConfig = {}) {
|
|
8342
8342
|
super(scope, id, {
|
|
8343
8343
|
...config,
|
|
@@ -8388,7 +8388,7 @@ export interface ModuleConfig extends TerraformModuleUserConfig {
|
|
|
8388
8388
|
* Source at ./module
|
|
8389
8389
|
*/
|
|
8390
8390
|
export class Module extends TerraformModule {
|
|
8391
|
-
private readonly inputs: { [name: string]: any } = { }
|
|
8391
|
+
private readonly inputs: { [name: string]: any } = { };
|
|
8392
8392
|
public constructor(scope: Construct, id: string, config: ModuleConfig) {
|
|
8393
8393
|
super(scope, id, {
|
|
8394
8394
|
...config,
|