@aws-cdk/cloud-assembly-schema 2.0.0-rc.8 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -299,6 +299,10 @@
299
299
  "description": "The role that needs to be assumed to deploy the stack (Default - No role is assumed (current credentials are used))",
300
300
  "type": "string"
301
301
  },
302
+ "assumeRoleExternalId": {
303
+ "description": "External ID to use when assuming role for cloudformation deployments (Default - No external ID)",
304
+ "type": "string"
305
+ },
302
306
  "cloudFormationExecutionRoleArn": {
303
307
  "description": "The role that is passed to CloudFormation to execute the change set (Default - No role is passed (currently assumed role/credentials are used))",
304
308
  "type": "string"
@@ -416,6 +420,9 @@
416
420
  },
417
421
  {
418
422
  "$ref": "#/definitions/SecurityGroupContextQuery"
423
+ },
424
+ {
425
+ "$ref": "#/definitions/KeyContextQuery"
419
426
  }
420
427
  ]
421
428
  }
@@ -433,6 +440,7 @@
433
440
  "availability-zones",
434
441
  "endpoint-service-availability-zones",
435
442
  "hosted-zone",
443
+ "key-provider",
436
444
  "load-balancer",
437
445
  "load-balancer-listener",
438
446
  "security-group",
@@ -753,14 +761,48 @@
753
761
  "type": "string"
754
762
  },
755
763
  "securityGroupId": {
756
- "description": "Security group id",
764
+ "description": "Security group id (Default - None)",
765
+ "type": "string"
766
+ },
767
+ "securityGroupName": {
768
+ "description": "Security group name (Default - None)",
769
+ "type": "string"
770
+ },
771
+ "vpcId": {
772
+ "description": "VPC ID (Default - None)",
757
773
  "type": "string"
758
774
  }
759
775
  },
760
776
  "required": [
761
777
  "account",
762
- "region",
763
- "securityGroupId"
778
+ "region"
779
+ ]
780
+ },
781
+ "KeyContextQuery": {
782
+ "description": "Query input for looking up a KMS Key",
783
+ "type": "object",
784
+ "properties": {
785
+ "account": {
786
+ "description": "Query account",
787
+ "type": "string"
788
+ },
789
+ "region": {
790
+ "description": "Query region",
791
+ "type": "string"
792
+ },
793
+ "lookupRoleArn": {
794
+ "description": "The ARN of the role that should be used to look up the missing values (Default - None)",
795
+ "type": "string"
796
+ },
797
+ "aliasName": {
798
+ "description": "Alias name used to search the Key",
799
+ "type": "string"
800
+ }
801
+ },
802
+ "required": [
803
+ "account",
804
+ "aliasName",
805
+ "region"
764
806
  ]
765
807
  },
766
808
  "RuntimeInfo": {
@@ -1 +1 @@
1
- {"version":"12.0.0"}
1
+ {"version":"15.0.0"}