Skip to content

Commit

Permalink
Merge branch 'main' into scottrobinson03/fix-httpatasource-props-type
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 4, 2024
2 parents 85545aa + c5bcfdc commit 3d6583f
Show file tree
Hide file tree
Showing 38 changed files with 1,175 additions and 114 deletions.
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 3d6583f

Please sign in to comment.