@awboost/cfn-resource-types
Advanced tools
Comparing version 0.1.279 to 0.1.280
@@ -9,3 +9,14 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource"; | ||
/** | ||
* The private key from your external identity provider | ||
* @minLength `1` | ||
* @maxLength `16384` | ||
* @pattern `[\u0009\u000A\u000D\u0020-\u00FF]+` | ||
*/ | ||
AddPrivateKey?: string; | ||
/** | ||
* The encryption setting for the SAML provider | ||
*/ | ||
AssertionEncryptionMode?: "Allowed" | "Required"; | ||
/** | ||
* @minLength `1` | ||
* @maxLength `128` | ||
@@ -16,6 +27,17 @@ * @pattern `[\w._-]+` | ||
/** | ||
* @maxLength `2` | ||
*/ | ||
PrivateKeyList?: SAMLPrivateKey[]; | ||
/** | ||
* The Key ID of the private key to remove | ||
* @minLength `22` | ||
* @maxLength `64` | ||
* @pattern `[A-Z0-9]+` | ||
*/ | ||
RemovePrivateKey?: string; | ||
/** | ||
* @minLength `1000` | ||
* @maxLength `10000000` | ||
*/ | ||
SamlMetadataDocument: string; | ||
SamlMetadataDocument?: string; | ||
Tags?: Tag[]; | ||
@@ -34,4 +56,29 @@ }; | ||
Arn: string; | ||
/** | ||
* The unique identifier assigned to the SAML provider | ||
* @minLength `22` | ||
* @maxLength `64` | ||
* @pattern `[A-Z0-9]+` | ||
*/ | ||
SamlProviderUUID: string; | ||
}; | ||
/** | ||
* Type definition for `AWS::IAM::SAMLProvider.SAMLPrivateKey`. | ||
* The private key metadata for the SAML provider | ||
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-samlprovider-samlprivatekey.html} | ||
*/ | ||
export type SAMLPrivateKey = { | ||
/** | ||
* The unique identifier for the SAML private key. | ||
* @minLength `22` | ||
* @maxLength `64` | ||
* @pattern `[A-Z0-9]+` | ||
*/ | ||
KeyId: string; | ||
/** | ||
* The date and time, in <a href=\"http://www.iso.org/iso/iso8601\">ISO 8601 date-time </a> format, when the private key was uploaded. | ||
*/ | ||
Timestamp: string; | ||
}; | ||
/** | ||
* Type definition for `AWS::IAM::SAMLProvider.Tag`. | ||
@@ -38,0 +85,0 @@ * A key-value pair to associate with a resource. |
@@ -126,3 +126,3 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource"; | ||
If you set this value to ``advanced``, you must also set the ``PerformanceInsightsEnabled`` parameter to ``true`` and the ``PerformanceInsightsRetentionPeriod`` parameter to 465. | ||
Valid for Cluster Type: Aurora DB clusters only | ||
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters | ||
*/ | ||
@@ -129,0 +129,0 @@ DatabaseInsightsMode?: string; |
{ | ||
"name": "@awboost/cfn-resource-types", | ||
"version": "0.1.279", | ||
"version": "0.1.280", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
Sorry, the diff of this file is too big to display
9934935
2776
223936