# coding=utf8
# Copyright 2018 JDCLOUD.COM
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: This class is auto generated by the jdcloud code generator program.
[docs]class ListRoleInfo(object):
def __init__(self, roleName=None, type=None, assumeRolePolicyDocument=None, description=None, createTime=None):
"""
:param roleName: (Optional) 角色名称
:param type: (Optional) 角色类型,2-服务相关角色,3-服务角色,4-用户角色
:param assumeRolePolicyDocument: (Optional) 角色信任关系策略
:param description: (Optional) 描述,0~1000个字符
:param createTime: (Optional) 创建角色的时间
"""
self.roleName = roleName
self.type = type
self.assumeRolePolicyDocument = assumeRolePolicyDocument
self.description = description
self.createTime = createTime