AwsAccessRole.fromJson constructor
AwsAccessRole.fromJson(
- Map json_
Implementation
AwsAccessRole.fromJson(core.Map json_)
: this(
iamRoleId: json_.containsKey('iamRoleId')
? json_['iamRoleId'] as core.String
: null,
identity: json_.containsKey('identity')
? json_['identity'] as core.String
: null,
);