forked from cloudtools/troposphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinspace.py
More file actions
54 lines (42 loc) · 1.61 KB
/
finspace.py
File metadata and controls
54 lines (42 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright (c) 2012-2022, Mark Peek <[email protected]>
# All rights reserved.
#
# See LICENSE file for full license.
#
# *** Do not modify - this file is autogenerated ***
from . import AWSObject, AWSProperty, PropsDictType
class FederationParameters(AWSProperty):
"""
`FederationParameters <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-finspace-environment-federationparameters.html>`__
"""
props: PropsDictType = {
"ApplicationCallBackURL": (str, False),
"AttributeMap": (dict, False),
"FederationProviderName": (str, False),
"FederationURN": (str, False),
"SamlMetadataDocument": (str, False),
"SamlMetadataURL": (str, False),
}
class SuperuserParameters(AWSProperty):
"""
`SuperuserParameters <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-finspace-environment-superuserparameters.html>`__
"""
props: PropsDictType = {
"EmailAddress": (str, False),
"FirstName": (str, False),
"LastName": (str, False),
}
class Environment(AWSObject):
"""
`Environment <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-finspace-environment.html>`__
"""
resource_type = "AWS::FinSpace::Environment"
props: PropsDictType = {
"DataBundles": ([str], False),
"Description": (str, False),
"FederationMode": (str, False),
"FederationParameters": (FederationParameters, False),
"KmsKeyId": (str, False),
"Name": (str, True),
"SuperuserParameters": (SuperuserParameters, False),
}