CfnTermsProps
- class aws_cdk.aws_cognito.CfnTermsProps(*, enforcement, links, terms_name, terms_source, user_pool_id, client_id=None)
Bases:
objectProperties for defining a
CfnTerms.- Parameters:
enforcement (
str)links (
Union[Mapping[str,str],IResolvable])terms_name (
str)terms_source (
str)user_pool_id (
str)client_id (
Optional[str])
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_cognito as cognito cfn_terms_props = cognito.CfnTermsProps( enforcement="enforcement", links={ "links_key": "links" }, terms_name="termsName", terms_source="termsSource", user_pool_id="userPoolId", # the properties below are optional client_id="clientId" )
Attributes
- client_id
-
- Type:
see
- enforcement
-
- Type:
see
- links
-
- Type:
see
- terms_name
-
- Type:
see
- terms_source
-
- Type:
see