Skip to content

Commit

Permalink
Merge branch 'main' into limitless
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 5, 2024
2 parents fae32f8 + b30c823 commit b5e52a3
Show file tree
Hide file tree
Showing 738 changed files with 232,744 additions and 128 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@
"@aws-cdk/aws-cognito/punycode/**",
"@aws-cdk/aws-ecr-assets/minimatch",
"@aws-cdk/aws-ecr-assets/minimatch/**",
"@aws-cdk/aws-eks/semver",
"@aws-cdk/aws-eks/semver/**",
"@aws-cdk/aws-eks/yaml",
"@aws-cdk/aws-eks/yaml/**",
"@aws-cdk/aws-eks-v2-alpha/semver",
"@aws-cdk/aws-eks-v2-alpha/semver/**",
"@aws-cdk/aws-eks-v2-alpha/yaml",
"@aws-cdk/aws-eks-v2-alpha/yaml/**",
"@aws-cdk/aws-events-targets/aws-sdk",
"@aws-cdk/aws-events-targets/aws-sdk/**",
"@aws-cdk/aws-iot-actions-alpha/case",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"ALLOW_ADMIN_USER_PASSWORD_AUTH",
"ALLOW_CUSTOM_AUTH",
"ALLOW_USER_SRP_AUTH",
"ALLOW_USER_AUTH",
"ALLOW_REFRESH_TOKEN_AUTH"
],
"GenerateSecret": true,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const client = userpool.addClient('myuserpoolclient', {
custom: true,
userPassword: true,
userSrp: true,
user: true,
},
generateSecret: true,
oAuth: {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{
"Resources": {
"DisableSuppressionList6B7ABFBF": {
"Type": "AWS::SES::ConfigurationSet",
"Properties": {
"SuppressionOptions": {
"SuppressedReasons": []
}
}
},
"OverrideSuppressionReasonsToBouncesOnly1280FADA": {
"Type": "AWS::SES::ConfigurationSet",
"Properties": {
"SuppressionOptions": {
"SuppressedReasons": [
"BOUNCE"
]
}
}
},
"OverrideSuppressionReasonsToComplaintsOnly8F770ED6": {
"Type": "AWS::SES::ConfigurationSet",
"Properties": {
"SuppressionOptions": {
"SuppressedReasons": [
"COMPLAINT"
]
}
}
},
"OverrideSuppressionReasonsToBouncesAndComplaints27254E32": {
"Type": "AWS::SES::ConfigurationSet",
"Properties": {
"SuppressionOptions": {
"SuppressedReasons": [
"BOUNCE",
"COMPLAINT"
]
}
}
}
},
"Parameters": {
"BootstrapVersion": {
"Type": "AWS::SSM::Parameter::Value<String>",
"Default": "/cdk-bootstrap/hnb659fds/version",
"Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
}
},
"Rules": {
"CheckBootstrapVersion": {
"Assertions": [
{
"Assert": {
"Fn::Not": [
{
"Fn::Contains": [
[
"1",
"2",
"3",
"4",
"5"
],
{
"Ref": "BootstrapVersion"
}
]
}
]
},
"AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
}
]
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b5e52a3

Please sign in to comment.