0

Aws cognito console screenaws cloudformation template을 사용하여 aws cognito 사용자 풀에서 필수 속성을 설정하는 방법은 무엇입니까?

구름 형성 템플릿을 사용하여 사용자 풀을 생성하는 동안 첨부 된 이미지 링크에 표시된 다음 속성을 추가하고 싶습니다. AWS 설명서에서 도움이되는 내용을 찾지 못했습니다.

aws cloudformation cognito documentation에서 설명한대로 별칭 속성을 설정할 수 있습니다.

누군가이 문제를 시도 했습니까?

"myApiUserPool": { 
    "Type": "AWS::Cognito::UserPool", 
    "Properties": { 
    "AdminCreateUserConfig": { 
     "AllowAdminCreateUserOnly": true 
    }, 
    "Schema": [ 
     { 
     "Mutable": false, 
     "Name": "email", 
     "Required": true 
     }, 
     { 
     "Mutable": false, 
     "Name": "family_name", 
     "Required": true 
     }, 
     { 
     "Mutable": false, 
     "Name": "name", 
     "Required": true 
     } 
    ], 
    "AutoVerifiedAttributes": [ 
     "email" 
    ], 
    "UserPoolName": { 
     "Fn::Sub": "myApiUserPool${envParameter}" 
    } 
    } 
} 
:

답변

0

나는 그것이 AWS :: cognito :: UserPool의 스키마 속성을 사용하여 수행 얻을 관리
관련 문제