-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerating based on aws-cloudformation-user-guide @ 19dc52cd3f2007d…
…6d268b65b739ffb5ebf8c1e76
- Loading branch information
1 parent
25ba0f1
commit abb8a46
Showing
49 changed files
with
2,074 additions
and
443 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
910039c6da5fb0bce7349479a19966b561d06d9e | ||
d724072521012a4668b4c07b63da0251a6567458 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 44 additions & 22 deletions
66
aws-cloudformation-schema/aws-cognito-userpooldomain.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,62 @@ | ||
{ | ||
"typeName" : "AWS::Cognito::UserPoolDomain", | ||
"description" : "Resource Type definition for AWS::Cognito::UserPoolDomain", | ||
"additionalProperties" : false, | ||
"sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-rpdk.git", | ||
"tagging" : { | ||
"taggable" : false, | ||
"tagOnCreate" : false, | ||
"tagUpdatable" : false, | ||
"cloudFormationSystemTags" : false | ||
}, | ||
"definitions" : { | ||
"CustomDomainConfigType" : { | ||
"type" : "object", | ||
"properties" : { | ||
"CertificateArn" : { | ||
"type" : "string" | ||
} | ||
}, | ||
"additionalProperties" : false | ||
} | ||
}, | ||
"properties" : { | ||
"CloudFrontDistribution" : { | ||
"type" : "string" | ||
}, | ||
"UserPoolId" : { | ||
"type" : "string" | ||
}, | ||
"Id" : { | ||
"Domain" : { | ||
"type" : "string" | ||
}, | ||
"Domain" : { | ||
"CustomDomainConfig" : { | ||
"$ref" : "#/definitions/CustomDomainConfigType" | ||
}, | ||
"CloudFrontDistribution" : { | ||
"type" : "string" | ||
}, | ||
"ManagedLoginVersion" : { | ||
"type" : "integer" | ||
}, | ||
"CustomDomainConfig" : { | ||
"$ref" : "#/definitions/CustomDomainConfigType" | ||
} | ||
}, | ||
"definitions" : { | ||
"CustomDomainConfigType" : { | ||
"type" : "object", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"CertificateArn" : { | ||
"type" : "string" | ||
} | ||
} | ||
} | ||
}, | ||
"additionalProperties" : false, | ||
"required" : [ "UserPoolId", "Domain" ], | ||
"readOnlyProperties" : [ "/properties/CloudFrontDistribution" ], | ||
"primaryIdentifier" : [ "/properties/UserPoolId", "/properties/Domain" ], | ||
"createOnlyProperties" : [ "/properties/UserPoolId", "/properties/Domain" ], | ||
"primaryIdentifier" : [ "/properties/Id" ], | ||
"readOnlyProperties" : [ "/properties/Id", "/properties/CloudFrontDistribution" ] | ||
"writeOnlyProperties" : [ "/properties/ManagedLoginVersion" ], | ||
"handlers" : { | ||
"create" : { | ||
"permissions" : [ "cognito-idp:CreateUserPoolDomain", "cognito-idp:DescribeUserPoolDomain", "cloudfront:updateDistribution" ], | ||
"timeoutInMinutes" : 20 | ||
}, | ||
"read" : { | ||
"permissions" : [ "cognito-idp:DescribeUserPoolDomain" ] | ||
}, | ||
"update" : { | ||
"permissions" : [ "cognito-idp:UpdateUserPoolDomain", "cognito-idp:DescribeUserPoolDomain", "cloudfront:updateDistribution" ], | ||
"timeoutInMinutes" : 20 | ||
}, | ||
"delete" : { | ||
"permissions" : [ "cognito-idp:DeleteUserPoolDomain", "cognito-idp:DescribeUserPoolDomain" ], | ||
"timeoutInMinutes" : 25 | ||
} | ||
} | ||
} |
Oops, something went wrong.