AwsAccessRole.fromJson constructor

AwsAccessRole.fromJson(
  1. 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,
      );